::selection { background: #ffffff; color: #000000; }
::-moz-selection { background: #ffffff; color: #000000; }

#cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: calc(100% - 48px);
    max-width: 650px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 16px;
    z-index: 999999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    opacity: 0;
    pointer-events: none;
    font-family: 'Inter', system-ui, sans-serif;
    color: #fff;
}

#cookie-consent-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

#cookie-consent-banner h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

#cookie-consent-banner p {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #888;
    font-weight: 300;
}

#cookie-consent-banner .buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

#cookie-consent-banner .btn-necessary,
#cookie-consent-banner .btn-all {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    outline: none;
}

#cookie-consent-banner .btn-necessary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

#cookie-consent-banner .btn-necessary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

#cookie-consent-banner .btn-all {
    background: #fff;
    color: #000;
}

#cookie-consent-banner .btn-all:hover {
    background: #e5e5e5;
    transform: translateY(-1px);
}

#cookie-consent-banner .btn-all:active {
    transform: translateY(0);
}

@media (max-width: 640px) {
    #cookie-consent-banner {
        bottom: 16px;
        width: calc(100% - 32px);
        padding: 20px;
    }
    
    #cookie-consent-banner .buttons {
        flex-direction: column;
    }
    
    #cookie-consent-banner .btn-necessary,
    #cookie-consent-banner .btn-all {
        width: 100%;
        text-align: center;
    }
}
