#cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #0b0b0b;
    border-top: 1px solid #2b2b2b;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
}

.cookie-consent-inner {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-consent-text {
    color: #d8d8d8;
}

.cookie-consent-text strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 15px;
}

.cookie-consent-text p {
    margin: 0 0 8px;
    line-height: 1.5;
    font-size: 14px;
}

.cookie-consent-text a {
    color: #ffd400;
    text-decoration: none;
    font-size: 14px;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent-button {
    min-width: 110px;
    padding: 12px 16px;
    border: 1px solid #444444;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.cookie-reject-button {
    background: transparent;
    color: #ffffff;
}

.cookie-reject-button:hover {
    border-color: #ffffff;
}

.cookie-accept-button {
    background: #ffd400;
    color: #000000;
    border-color: #ffd400;
}

.cookie-accept-button:hover {
    filter: brightness(0.95);
}

@media (max-width: 700px) {

    .cookie-consent-inner {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cookie-consent-button {
        flex: 1;
    }
}