/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 14, 23, 0.98);
    border-top: 1px solid rgba(79, 195, 247, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: cookieSlideUp 0.4s ease;
}

.cookie-banner-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    color: #4fc3f7;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-text p {
    color: #9ca3af;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.3rem;
}

.cookie-text a {
    color: #4fc3f7;
    font-size: 0.8rem;
    text-decoration: none;
}

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

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #4fc3f7;
    color: #0a0e17;
}

.cookie-btn-accept:hover {
    background: #29b6f6;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: #6b7280;
    border: 1px solid #374151;
}

.cookie-btn-decline:hover {
    border-color: #f87171;
    color: #f87171;
}

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

@media (prefers-reduced-motion: reduce) {
    .cookie-banner {
        animation: none;
    }
}

@media (max-width: 640px) {
    .cookie-banner {
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
    }

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

    .cookie-btn {
        width: 100%;
        min-height: 48px;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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