        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: #f8fafc; /* Light gray-blue invece di dark */
            min-height: 100vh;
        }
        
        .page-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e0e7ff 0%, #fce7f3 50%, #fef3c7 100%); /* Pastelli chiari */
            opacity: 0.3; /* Aumentata opacità per vedere meglio i colori */
            z-index: 0;
        }
        
        .page-content {
            position: relative;
            z-index: 1;
        }
        
        /* Hero Section */
        .support-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Stesso di casinos-compare */
            padding: 100px 20px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .support-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100px); }
        }
        
        .support-hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .support-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .support-hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.95);
            font-weight: 400;
            line-height: 1.6;
        }
        
        /* Search Box */
        .search-container {
            max-width: 700px;
            margin: -40px auto 60px;
            position: relative;
            z-index: 10;
            padding: 0 20px;
        }
        
        .search-box {
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            padding: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .search-icon {
            font-size: 1.5rem;
            padding: 0 12px;
            color: #94a3b8;
        }
        
        .search-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1.1rem;
            font-family: 'Poppins', sans-serif;
            padding: 12px 0;
            color: #1e293b;
        }
        
        .search-input::placeholder {
            color: #94a3b8;
        }
        
        /* Quick Links */
        .quick-links {
            max-width: 1200px;
            margin: 0 auto 80px;
            padding: 0 20px;
        }
        
        .quick-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .quick-link-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            border: 2px solid transparent;
        }
        
        .quick-link-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
            border-color: var(--color);
        }
        
        .quick-link-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            display: block;
        }
        
        .quick-link-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
        }
        
        .quick-link-desc {
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.5;
        }
        
        /* FAQ Categories */
        .faq-container {
            max-width: 1000px;
            margin: 40px auto;
            padding: 60px 40px 80px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .faq-category {
            margin-bottom: 60px;
        }
        
        .category-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #e2e8f0;
        }
        
        .category-icon {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #a5b4fc, #c4b5fd); /* Pastello chiaro */
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
        }
        
        .category-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e293b; /* Cambio da white a dark per leggibilità */
        }
        
        /* FAQ Item */
        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: all 0.3s;
        }
        
        .faq-item:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            user-select: none;
            transition: background 0.2s;
        }
        
        .faq-question:hover {
            background: #f8fafc;
        }
        
        .faq-question-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
            flex: 1;
        }
        
        .faq-toggle {
            font-size: 1.5rem;
            color: #667eea;
            transition: transform 0.3s;
            flex-shrink: 0;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s;
            padding: 0 25px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 25px 25px;
        }
        
        .faq-answer-text {
            font-size: 1rem;
            color: #475569;
            line-height: 1.8;
            padding-top: 5px;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #bfdbfe 0%, #ddd6fe 100%); /* Blue-purple pastello */
            padding: 60px 20px;
            text-align: center;
            margin-top: 40px;
        }
        
        .contact-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .contact-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e293b; /* Scuro per contrasto */
            margin-bottom: 20px;
        }
        
        .contact-text {
            font-size: 1.2rem;
            color: #475569; /* Grigio scuro invece di bianco */
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .contact-btn {
            background: white;
            color: #667eea;
            padding: 15px 30px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
        }
        
        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }
        
        /* No Results */
        .no-results {
            text-align: center;
            padding: 60px 20px;
            display: none;
        }
        
        .no-results.show {
            display: block;
        }
        
        .no-results-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }
        
        .no-results-text {
            font-size: 1.3rem;
            color: #94a3b8;
            font-weight: 500;
        }
        
        /* Mobile */
        @media (max-width: 768px) {
            .support-hero h1 {
                font-size: 2rem;
            }
            
            .support-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .quick-links-grid {
                grid-template-columns: 1fr;
            }
            
            .category-header {
                flex-direction: column;
                text-align: center;
            }
            
            .category-title {
                font-size: 1.5rem;
            }
            
            .faq-question-text {
                font-size: 1rem;
            }
            
            .contact-title {
                font-size: 1.8rem;
            }
            
            .contact-methods {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
