/* Futuristic Cookie Banner */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600&display=swap');

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    transform: none;
    width: auto;
    max-width: 380px;
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    z-index: 10000;
    display: none;
    /* Controlled by JS */
    font-family: 'Exo 2', sans-serif;
    color: #e0e0e0;
    padding: 24px;
    animation: slideUpFade 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    overflow: hidden;
}

/* Subtle glowing accent line at top */
#cookie-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.5), transparent);
}

#cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

#cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

/* Accept Button - Neon Glow */
.cookie-btn-accept {
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.4);
    color: #00f2ff;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
}

.cookie-btn-accept::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.cookie-btn-accept:hover {
    background: rgba(0, 242, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3), 0 0 40px rgba(0, 242, 255, 0.1);
    transform: translateY(-1px);
    text-shadow: 0 0 8px rgba(0, 242, 255, 0.6);
}

/* Decline Button - Ghost Style */
.cookie-btn-decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translate(0, 40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    #cookie-banner {
        width: 95%;
        bottom: 15px;
        padding: 20px;
    }

    #cookie-banner-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}