#cookieConsent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 28px;
    z-index: 99999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(192, 192, 192, 0.15);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 16px;
    display: none;
    animation: slideUpFade 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUpFade {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDownFade {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(20px);
        opacity: 0;
    }
}

.cookie-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    flex: 1;
    min-width: 0;
}

.cookie-text h4 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-icon {
    font-size: 18px;
    color: #C0C0C0;
    flex-shrink: 0;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: #C0C0C0;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 600;
    border-bottom: 1px solid rgba(192, 192, 192, 0.3);
}

.cookie-text a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

/* Button Styles - Matching Website Buttons */
.cookie-btn {
    border-radius: 980px;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 40px;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
}

.cookieConsentOK {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.cookieConsentOK:hover {
    background: #D8D8D8;
    border-color: #D8D8D8;
    color: #000000;
    transform: translateY(-1px);
}

.cookieConsentOK:active {
    transform: translateY(0);
}

#closeCookieConsent {
    background: transparent;
    border: 1px solid rgba(192, 192, 192, 0.3);
    color: #C0C0C0;
}

#closeCookieConsent:hover {
    background: #D8D8D8;
    border-color: #D8D8D8;
    color: #000000;
    transform: translateY(-1px);
}

#closeCookieConsent:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 991px) {
    #cookieConsent {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 18px 22px;
    }

    .cookie-content {
        gap: 20px;
    }

    .cookie-text h4 {
        font-size: 14px;
    }

    .cookie-text p {
        font-size: 12.5px;
    }

    .cookie-btn {
        padding: 14px 26px;
        font-size: 14px;
        min-height: 44px;
    }
}

@media (max-width: 768px) {
    #cookieConsent {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 18px 20px;
        border-radius: 14px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .cookie-text {
        text-align: center;
    }

    .cookie-text h4 {
        font-size: 14px;
        justify-content: center;
    }

    .cookie-text p {
        font-size: 12px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: row;
        gap: 10px;
    }

    .cookie-btn {
        flex: 1;
        padding: 13px 20px;
        font-size: 13px;
        min-height: 42px;
    }
}

@media (max-width: 480px) {
    #cookieConsent {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 16px 18px;
        border-radius: 12px;
    }

    .cookie-content {
        gap: 14px;
    }

    .cookie-text h4 {
        font-size: 13px;
    }

    .cookie-icon {
        font-size: 16px;
    }

    .cookie-text p {
        font-size: 11.5px;
        line-height: 1.4;
    }

    .cookie-btn {
        padding: 12px 18px;
        font-size: 12.5px;
        min-height: 40px;
    }
}

/* Dark Theme Optimization */
@media (prefers-color-scheme: dark) {
    #cookieConsent {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    #cookieConsent {
        animation: none;
    }

    .cookie-btn {
        transition: none;
    }

    .cookieConsentOK:hover,
    #closeCookieConsent:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    #cookieConsent {
        border: 2px solid rgba(192, 192, 192, 0.5);
    }

    .cookie-btn {
        border-width: 2px;
    }
}
