/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 320px;
    max-width: 95vw;
    background: rgba(30, 30, 40, 0.92);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 2px 8px rgba(220,38,38,0.10);
    z-index: 10000;
    padding: 28px 32px 24px 32px;
    border: 1.5px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px) saturate(1.2);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    opacity: 0.98;
}

.cookie-consent-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    min-width: 260px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 220px;
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.cookie-consent-text h3 {
    color: #ffe066;
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.cookie-consent-text p {
    margin: 0;
    opacity: 0.93;
}

.cookie-consent-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(220,38,38,0.10);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #ff3c3c 0%, #dc2626 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.18);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #ffe066 0%, #ff3c3c 100%);
    color: #222;
    box-shadow: 0 6px 20px rgba(255, 224, 102, 0.18);
    transform: scale(1.04) translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #666;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffe066;
    color: #ffe066;
    transform: scale(1.04) translateY(-2px);
}

.cookie-btn-settings {
    background: transparent;
    color: #cccccc;
    border: 1px solid #555;
    font-size: 13px;
    padding: 10px 20px;
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffe066;
    border-color: #ffe066;
}

.cookie-icon {
    display: inline-block;
    margin-right: 8px;
    animation: cookieBounce 2s infinite;
}

@keyframes cookieBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 18px 8px 16px 8px;
        min-width: 0;
        max-width: 99vw;
    }
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }
    .cookie-consent-text {
        min-width: auto;
        font-size: 14px;
    }
    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .cookie-btn {
        width: 100%;
        padding: 14px 0;
    }
    .cookie-btn-settings {
        order: 3;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 10px 2px 10px 2px;
    }
    .cookie-consent-text h3 {
        font-size: 16px;
    }
    .cookie-consent-text {
        font-size: 12px;
    }
}

@media (prefers-color-scheme: dark) {
    .cookie-consent-banner {
        background: linear-gradient(135deg, #18181f 0%, #23232b 100%);
    }
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 0.98;
    }
}

.cookie-consent-banner.animate-in {
    animation: slideUp 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
} 