 .compliance-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    z-index: 8888;
    padding: 12px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    display: block;
}

.compliance-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 20px;
}

.warning-icon {
    font-size: 24px;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.disclaimer-text {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.disclaimer-text strong {
    color: #fef2f2;
    font-weight: 800;
}

.acknowledge-btn {
    background: white;
    color: #dc2626;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.acknowledge-btn:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.acknowledge-btn:active {
    transform: translateY(0);
}

/* Stato quando disclaimer è accettato */
body.compliance-acknowledged .compliance-banner {
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
}

/* Compensazione spazio per il banner */
body:not(.compliance-acknowledged) {
    padding-top: 70px;
}
body:not(.compliance-acknowledged) header {
    margin-top: 70px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .compliance-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .disclaimer-text {
        font-size: 13px;
    }
    
    .acknowledge-btn {
        width: 100%;
        max-width: 200px;
    }
    
    body:not(.compliance-acknowledged) {
        padding-top: 110px;
    }
    
    body:not(.compliance-acknowledged) header {
        margin-top: 110px;
    }
}

@media (max-width: 480px) {
    .disclaimer-text {
        font-size: 12px;
    }
    
    body:not(.compliance-acknowledged) {
        padding-top: 130px;
    }
    
    body:not(.compliance-acknowledged) header {
        margin-top: 130px;
    }
}

/* Cookie Banner */
        .cookie-banner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 14, 19, 0.98);
            border-bottom: 2px solid #3b82f6;
            padding: 15px 20px;
            z-index: 9999;
            backdrop-filter: blur(15px);
        }

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

        .cookie-text p {
            color: #e0e6ed;
            margin: 0;
            font-size: 0.95rem;
        }

        .cookie-text a {
            color: #3b82f6;
            text-decoration: none;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cookie-btn.accept {
            background: #10b981;
            color: white;
        }

        .cookie-btn.reject {
            background: #ef4444;
            color: white;
        }

        

        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }

