/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a2942 0%, #0a1628 100%);
    border-top: 3px solid #00d4ff;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transition: bottom 0.3s ease-out;
    backdrop-filter: blur(10px);
}

#cookie-consent-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    color: #a8b2d1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Heebo', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    color: #0a1628;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.5);
}

.cookie-decline {
    background: transparent;
    color: #a8b2d1;
    border: 2px solid rgba(168, 178, 209, 0.3);
}

.cookie-decline:hover {
    border-color: #a8b2d1;
    background: rgba(168, 178, 209, 0.05);
}

.cookie-link {
    color: #ffd700;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .cookie-text p {
        text-align: center;
        font-size: 0.9rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .cookie-link {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 15px;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-btn {
        font-size: 0.9rem;
    }
}