
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0e0;
            line-height: 1.8;
            min-height: 100vh;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        header {
            text-align: center;
            margin-bottom: 50px;
            padding: 40px 20px;
            background: linear-gradient(180deg, rgba(138, 43, 226, 0.2) 0%, transparent 100%);
            border-radius: 20px;
        }

        h1 {
            font-size: 2.5rem;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .subtitle {
            color: #b8b8b8;
            font-size: 1.1rem;
            font-style: italic;
        }

        .breadcrumb {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 20px;
        }

        .breadcrumb a {
            color: #9b59b6;
            text-decoration: none;
        }

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

        h2 {
            font-size: 1.8rem;
            color: #9b59b6;
            margin: 50px 0 25px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #9b59b6;
        }

        h3 {
            font-size: 1.3rem;
            color: #ffd700;
            margin: 30px 0 15px 0;
        }

        p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .intro-box {
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.15) 0%, rgba(255, 215, 0, 0.1) 100%);
            padding: 30px;
            border-radius: 15px;
            border-left: 4px solid #ffd700;
            margin: 30px 0;
        }

        .pro-con-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 25px 0;
        }

        @media (max-width: 600px) {
            .pro-con-grid {
                grid-template-columns: 1fr;
            }
        }

        .pro-box, .con-box {
            padding: 20px;
            border-radius: 12px;
        }

        .pro-box {
            background: rgba(46, 204, 113, 0.15);
            border: 1px solid rgba(46, 204, 113, 0.3);
        }

        .con-box {
            background: rgba(231, 76, 60, 0.15);
            border: 1px solid rgba(231, 76, 60, 0.3);
        }

        .pro-box h4 {
            color: #2ecc71;
            margin-bottom: 15px;
        }

        .con-box h4 {
            color: #e74c3c;
            margin-bottom: 15px;
        }

        .pro-box ul, .con-box ul {
            list-style: none;
            padding-left: 0;
        }

        .pro-box li::before {
            content: "✓ ";
            color: #2ecc71;
            font-weight: bold;
        }

        .con-box li::before {
            content: "✗ ";
            color: #e74c3c;
            font-weight: bold;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: rgba(26, 26, 46, 0.8);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .comparison-table th {
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
            color: #fff;
            padding: 18px 15px;
            text-align: center;
            font-size: 1.1rem;
        }

        .comparison-table td {
            padding: 15px;
            border-bottom: 1px solid rgba(155, 89, 182, 0.2);
            text-align: center;
        }

        .comparison-table tr:hover {
            background: rgba(155, 89, 182, 0.1);
        }

        .comparison-table .aspect {
            text-align: left;
            font-weight: bold;
            color: #ffd700;
        }

        .age-section {
            background: rgba(52, 73, 94, 0.3);
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
        }

        .age-section h3 {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .age-badge {
            background: #9b59b6;
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .event-card {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(52, 73, 94, 0.5) 100%);
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
            border: 1px solid rgba(155, 89, 182, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(155, 89, 182, 0.2);
        }

        .price-box {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }

        .price-card {
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.2) 0%, rgba(26, 26, 46, 0.9) 100%);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            flex: 1;
            min-width: 250px;
            border: 2px solid rgba(155, 89, 182, 0.3);
        }

        .price-card.featured {
            border-color: #ffd700;
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
        }

        .price-amount {
            font-size: 2.5rem;
            color: #ffd700;
            font-weight: bold;
            margin: 15px 0;
        }

        .price-card h4 {
            color: #9b59b6;
            font-size: 1.3rem;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(155, 89, 182, 0.15) 100%);
            padding: 35px;
            border-radius: 20px;
            border: 2px solid #ffd700;
            margin: 40px 0;
            text-align: center;
        }

        .highlight-box h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }

        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(155, 89, 182, 0.2);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-list li::before {
            content: "⭐";
            font-size: 1.2rem;
        }

        .cta-section {
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 50%, #6c3483 100%);
            padding: 50px 30px;
            border-radius: 25px;
            text-align: center;
            margin: 50px 0 30px 0;
            box-shadow: 0 20px 50px rgba(155, 89, 182, 0.4);
        }

        .cta-section h2 {
            color: #fff;
            border: none;
            margin: 0 0 20px 0;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: #fff;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: bold;
            margin-top: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
        }

        .cta-button::before {
            content: "📱 ";
        }

        .tip-box {
            background: rgba(241, 196, 15, 0.15);
            border-left: 4px solid #f1c40f;
            padding: 20px;
            border-radius: 0 12px 12px 0;
            margin: 25px 0;
        }

        .tip-box::before {
            content: "💡 Consiglio: ";
            color: #f1c40f;
            font-weight: bold;
        }

        ul {
            padding-left: 25px;
            margin: 15px 0;
        }

        li {
            margin-bottom: 10px;
        }

        .emoji-icon {
            font-size: 1.5rem;
            margin-right: 10px;
        }

        footer {
            text-align: center;
            padding: 40px 20px;
            border-top: 1px solid rgba(155, 89, 182, 0.3);
            margin-top: 50px;
            color: #888;
        }

        footer a {
            color: #9b59b6;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }

            h2 {
                font-size: 1.4rem;
            }

            .container {
                padding: 20px 15px;
            }

            .comparison-table {
                font-size: 0.85rem;
            }

            .comparison-table th, .comparison-table td {
                padding: 10px 8px;
            }
        }
    
        /* ===== NAVBAR ===== */
        .site-nav {
            position: sticky; top: 0; z-index: 1000;
            background: rgba(11, 15, 25, 0.95);
            border-bottom: 1px solid rgba(234, 191, 17, 0.2);
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
        }
        .site-nav-inner {
            max-width: 900px; margin: 0 auto; padding: 12px 20px;
            display: flex; align-items: center; justify-content: space-between;
        }
        .site-nav .brand-link {
            display: flex; align-items: center; gap: 10px;
            text-decoration: none; color: #ecf2ff;
        }
        .site-nav .brand-link img { height: 36px; width: auto; border-radius: 6px; }
        .site-nav .brand-link span { font-weight: 700; font-size: 1rem; }
        .nav-right { display: flex; align-items: center; gap: 10px; }
        .nav-wa {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 8px 16px; border-radius: 999px;
            background: linear-gradient(45deg, #25D366, #128C7E);
            color: #fff; font-weight: 700; font-size: 0.85rem;
            text-decoration: none; transition: transform 0.2s;
        }
        .nav-wa:hover { transform: translateY(-1px); }
        .nav-menu-btn {
            display: flex; align-items: center; justify-content: center;
            width: 40px; height: 40px; border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.14);
            background: transparent; cursor: pointer; color: #fff;
        }
        .nav-menu-btn:hover { background: rgba(255,255,255,0.06); }
        .nav-dropdown {
            display: none; background: rgba(11, 15, 25, 0.98);
            border-bottom: 1px solid rgba(234, 191, 17, 0.2); padding: 8px 0;
        }
        .nav-dropdown.open { display: block; }
        .nav-dropdown a {
            display: block; padding: 12px 24px; color: #ecf2ff;
            text-decoration: none; font-weight: 500; transition: background 0.2s;
            max-width: 900px; margin: 0 auto;
        }
        .nav-dropdown a:hover { background: rgba(255,255,255,0.06); }
        @media (max-width: 600px) {
            .nav-wa span { display: none; }
            .nav-wa { padding: 8px 12px; }
        }
    