/* Cookie Consent Banner Styles */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(10,10,30,0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,228,77,0.3);
    padding: 1.5rem;
    z-index: 999;
    display: none;
    box-shadow: 0 -2px 20px rgba(255,228,77,0.1);
    animation: slideUp 0.3s ease-in-out;
}

.cookie-consent-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-consent-text {
    flex: 1;
    min-width: 200px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: #FFE44D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-consent-text a:hover {
    color: #00f5ff;
    text-decoration: underline;
}

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

.cookie-consent-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent-btn.accept {
    background: linear-gradient(45deg, #00f5ff, #4169e1);
    color: white;
}

.cookie-consent-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 245, 255, 0.4);
}

.cookie-consent-btn.reject {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-consent-btn.reject:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

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

    .cookie-consent-buttons {
        justify-content: stretch;
    }

    .cookie-consent-btn {
        flex: 1;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}
