/* Cookie Consent Popup */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #0f172a;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #38bdf8;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.cookie-btn-accept {
    background: #2563eb;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #1d4ed8;
}

.cookie-btn-settings {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #334155;
}

.cookie-btn-settings:hover {
    color: #fff;
    border-color: #475569;
}

@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        padding: 2rem;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
    }
}
