/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 2px solid rgba(139, 69, 190, 0.4);
    padding: 1.5rem;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
    color: white;
}

.cookie-consent-text h3 {
    color: #ff6b9d;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cookie-consent-text p {
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #8b45be;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #ff6b9d;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #ff6b9d, #8b45be);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 69, 190, 0.3);
}

.cookie-btn-decline {
    background: rgba(139, 69, 190, 0.2);
    color: white;
    border: 2px solid rgba(139, 69, 190, 0.4);
}

.cookie-btn-decline:hover {
    background: rgba(139, 69, 190, 0.3);
    border-color: #ff6b9d;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-consent-text h3 {
        font-size: 1rem;
    }

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