 
        /* ===== RESET & FONDAMENTI ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Palette Colori - Stile Slotuna */
            --primary-dark: #0A1628;
            --primary-blue: #1A2B4A;
            --accent-red: #FF4757;
            --accent-red-dark: #E91E63;
            --accent-green: #26DE81;
            --accent-green-dark: #00D563;
            --accent-gold: #FFD700;
            --accent-yellow: #FFC107;
            --text-white: #FFFFFF;
            --text-gray: #E8E8E8;
            --text-light-gray: #B8B8B8;

            /* Tipografia */
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        body {
            font-family: var(--font-body);
            background: linear-gradient(135deg, var(--primary-dark) 0%, #000000 100%);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Motivo di sfondo */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 50px,
                    rgba(255, 255, 255, 0.02) 50px,
                    rgba(255, 255, 255, 0.02) 51px
                );
            pointer-events: none;
            z-index: -1;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 800;
            line-height: 1.2;
        }

        h1 { font-size: clamp(32px, 5vw, 56px); }
        h2 { font-size: clamp(28px, 4vw, 42px); }
        h3 { font-size: clamp(22px, 3vw, 32px); }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .container-wide {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== NAVIGAZIONE FISSA ===== */
        .sticky-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(255, 71, 87, 0.3);
            transition: all 0.3s ease;
        }

        .sticky-nav.scrolled {
            padding: 10px 0;
            box-shadow: 0 2px 30px rgba(255, 71, 87, 0.5);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-menu a {
            color: var(--text-white);
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-red);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 71, 87, 0.6);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-white);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* ===== STILI PULSANTE CTA ===== */
        .cta-button {
            display: inline-block;
            padding: 16px 40px;
            background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
            color: var(--text-white);
            font-weight: 700;
            font-size: 16px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 71, 87, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 30px rgba(255, 71, 87, 0.7);
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid var(--accent-green);
            color: var(--accent-green);
            box-shadow: 0 4px 20px rgba(38, 222, 129, 0.3);
        }

        .cta-button.secondary:hover {
            background: var(--accent-green);
            color: var(--primary-dark);
            box-shadow: 0 6px 30px rgba(38, 222, 129, 0.5);
        }

        .cta-button i {
            margin-left: 8px;
        }

        /* ===== SEZIONE HERO ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0 60px;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 71, 87, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(38, 222, 129, 0.1) 0%, transparent 50%);
            position: relative;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text .subheadline {
            font-size: 20px;
            color: var(--text-gray);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .trust-badges {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            align-items: center;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }

        .trust-badge i {
            color: var(--accent-gold);
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-placeholder {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, rgba(255, 71, 87, 0.2) 0%, rgba(38, 222, 129, 0.2) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .hero-image-placeholder::before {
            content: '🎰 🎲 ⚽ 🏆';
            font-size: 80px;
            opacity: 0.3;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* ===== STILI SEZIONI ===== */
        section {
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            color: var(--text-light-gray);
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }

        /* ===== CARD BONUS ===== */
        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .bonus-card {
            background: linear-gradient(135deg, rgba(26, 43, 74, 0.6) 0%, rgba(10, 22, 40, 0.6) 100%);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .bonus-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-gold) 100%);
        }

        .bonus-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 71, 87, 0.3);
            border-color: var(--accent-red);
        }

        .bonus-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .bonus-card h3 {
            margin-bottom: 20px;
            color: var(--accent-gold);
        }

        .bonus-card ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .bonus-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .bonus-card ul li i {
            color: var(--accent-green);
        }

        /* ===== VANTAGGI ===== */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .advantage-item {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .advantage-item:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-5px);
            border-color: var(--accent-gold);
        }

        .advantage-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: inline-block;
        }

        .advantage-item h3 {
            color: var(--accent-gold);
            margin-bottom: 15px;
            font-size: 22px;
        }

        .advantage-item p {
            color: var(--text-gray);
            font-size: 15px;
            line-height: 1.6;
        }

        /* ===== GRIGLIA SLOT ===== */
        .slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .slot-card {
            background: rgba(26, 43, 74, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .slot-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-gold);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .slot-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, rgba(255, 71, 87, 0.3) 0%, rgba(38, 222, 129, 0.3) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            position: relative;
            overflow: hidden;
        }

        .slot-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .slot-card:hover .slot-image::after {
            transform: translateX(100%);
        }

        .slot-info {
            padding: 20px;
        }

        .slot-info h3 {
            margin-bottom: 10px;
            font-size: 20px;
        }

        .slot-provider {
            color: var(--text-light-gray);
            font-size: 14px;
            margin-bottom: 15px;
        }

        .slot-card .cta-button {
            width: 100%;
            padding: 12px;
            font-size: 14px;
        }

        /* ===== RECENSIONI ===== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .review-card {
            background: rgba(26, 43, 74, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            position: relative;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-gold) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
        }

        .review-author h4 {
            margin-bottom: 5px;
            font-size: 18px;
        }

        .review-rating {
            color: var(--accent-gold);
            font-size: 16px;
        }

        .review-text {
            color: var(--text-gray);
            line-height: 1.6;
            font-style: italic;
        }

        .review-date {
            color: var(--text-light-gray);
            font-size: 14px;
            margin-top: 15px;
        }

        /* ===== TABELLE ===== */
        .table-container {
            overflow-x: auto;
            margin: 40px 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(26, 43, 74, 0.4);
            border-radius: 15px;
            overflow: hidden;
        }

        thead {
            background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
        }

        th {
            padding: 20px;
            text-align: left;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        td {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        tbody tr {
            transition: all 0.3s ease;
        }

        tbody tr:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        tbody tr:last-child td {
            border-bottom: none;
        }

        /* ===== ACCORDION FAQ ===== */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(26, 43, 74, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .faq-question i {
            color: var(--accent-gold);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 25px 25px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* ===== PASSI REGISTRAZIONE ===== */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .step-item {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-gold) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: 800;
            margin: 0 auto 20px;
            box-shadow: 0 4px 20px rgba(255, 71, 87, 0.5);
        }

        .step-item h3 {
            margin-bottom: 15px;
            color: var(--accent-gold);
        }

        .step-item p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* ===== FOOTER ===== */
        footer {
            background: rgba(10, 22, 40, 0.95);
            padding: 60px 0 30px;
            border-top: 2px solid rgba(255, 71, 87, 0.3);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: var(--accent-gold);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: var(--text-gray);
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--accent-red);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light-gray);
            font-size: 14px;
        }

        .disclaimer {
            max-width: 900px;
            margin: 20px auto;
            padding: 20px;
            background: rgba(255, 71, 87, 0.1);
            border-left: 4px solid var(--accent-red);
            border-radius: 5px;
            font-size: 14px;
            line-height: 1.6;
        }

        /* ===== CTA FISSA MOBILE ===== */
        .sticky-cta-mobile {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 15px;
            background: rgba(10, 22, 40, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 -2px 20px rgba(255, 71, 87, 0.5);
            z-index: 999;
            display: none;
        }

        .sticky-cta-mobile .cta-button {
            width: 100%;
            padding: 15px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .trust-badges {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(10, 22, 40, 0.98);
                flex-direction: column;
                padding: 80px 30px;
                gap: 20px;
                transition: right 0.3s ease;
            }

            .nav-menu.active {
                right: 0;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding: 80px 0 40px;
            }

            section {
                padding: 50px 0;
            }

            .bonus-grid,
            .slots-grid,
            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .sticky-cta-mobile {
                display: block;
            }

            h1 { font-size: 32px; }
            h2 { font-size: 28px; }
            h3 { font-size: 22px; }
        }

        /* ===== ANIMAZIONI ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(255, 71, 87, 0.5);
            }
            50% {
                box-shadow: 0 4px 30px rgba(255, 71, 87, 0.8);
            }
        }

        .pulse {
            animation: pulse 2s ease-in-out infinite;
        }
  