/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(17, 17, 24, 0.98) 0%, rgba(26, 26, 36, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-banner.visible {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text {
    flex: 1;
    color: #e5e7eb;
}

.cookie-consent-text p {
    margin: 0;
    line-height: 1.6;
}

.cookie-consent-text p:first-child {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-consent-text p:last-child {
    font-size: 0.95rem;
    color: #9ca3af;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 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-btn-accept {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-link {
    color: #6366f1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.cookie-link:hover {
    color: #818cf8;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-consent-text p:first-child {
        font-size: 1rem;
    }

    .cookie-consent-text p:last-child {
        font-size: 0.85rem;
    }

    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.875rem 1rem;
    }

    .cookie-link {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 0.75rem;
    }

    .cookie-consent-text p:first-child {
        font-size: 0.95rem;
    }

    .cookie-consent-text p:last-child {
        font-size: 0.8rem;
    }

    .cookie-btn {
        font-size: 0.9rem;
        padding: 0.75rem 0.875rem;
    }
}

/* Animation for mobile slide-up */
@media (max-width: 768px) {
    .cookie-consent-banner {
        border-radius: 16px 16px 0 0;
    }
}
