
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: linear-gradient(135deg, #1e1e2e 0%, #2d1b69 100%);
      color: white;
      min-height: 100vh;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
    }

    .header {
      text-align: center;
      padding: 3rem 0;
    }

    .header h1 {
      font-size: 3.5rem;
      font-weight: 900;
      margin-bottom: 0.5rem;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .header p {
      font-size: 1.2rem;
      opacity: 0.8;
    }

    .main-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin: 3rem 0;
    }

    .info-box {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 2.5rem;
      transition: all 0.3s ease;
    }

    .info-box:hover {
      transform: translateY(-5px);
      border-color: rgba(102, 126, 234, 0.5);
      box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    }

    .info-box h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: #667eea;
    }

    .info-box p {
      line-height: 1.8;
      opacity: 0.9;
    }

    .discord-section {
      background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      text-align: center;
      margin: 2rem 0;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(88, 101, 242, 0.5);
    }

    .discord-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.6; }
      50% { transform: scale(1.05); opacity: 1; }
    }

    .discord-section h2 {
      font-size: 2rem;
      margin-bottom: 0.8rem;
      position: relative;
      z-index: 1;
      font-weight: 900;
    }

    .discord-section p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      opacity: 0.95;
      position: relative;
      z-index: 1;
    }

    .discord-icon-large {
      font-size: 4rem;
      margin-bottom: 1rem;
      animation: bounce 2s ease-in-out infinite;
      position: relative;
      z-index: 1;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    .btn {
      display: inline-block;
      padding: 1.2rem 3rem;
      font-size: 1.2rem;
      font-weight: 700;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      position: relative;
      z-index: 1;
    }

    .btn-primary {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }

    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    }

    .btn-discord {
      background: white;
      color: #5865F2;
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
      font-size: 1.3rem;
      padding: 1.5rem 3rem;
    }

    .btn-discord:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
    }

    .btn-discord:active {
      transform: scale(0.98);
    }

    .cta-section {
      text-align: center;
      margin: 4rem 0;
    }

    .form-container {
      max-width: 600px;
      margin: 3rem auto;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 3rem;
    }

    .form-group {
      margin-bottom: 1.5rem;
      text-align: left;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #667eea;
    }

    .form-group input {
      width: 100%;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      color: white;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .form-group input:focus {
      outline: none;
      border-color: #667eea;
      background: rgba(255, 255, 255, 0.12);
    }

    .form-group input::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .success-message {
      text-align: center;
      padding: 3rem;
    }

    .success-icon {
      font-size: 5rem;
      margin-bottom: 1rem;
    }

    .back-btn {
      margin-top: 2rem;
    }

    /* ===== Banner Discord FIXED (solo mobile) ===== */
    .discord-fixed {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 12px;
      background: rgba(30, 30, 46, 0.75);
      backdrop-filter: blur(14px);
      border-top: 1px solid rgba(255,255,255,0.10);
      display: none;
      z-index: 50;
    }

    .discord-fixed__inner {
      max-width: 1200px;
      margin: 0 auto;
      background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
      border-radius: 18px;
      padding: 12px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      box-shadow: 0 18px 50px rgba(88, 101, 242, 0.35);
      /* Safe area extra padding (iOS/Android gesture bar) */
      padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }

    .discord-fixed__title {
      font-weight: 900;
      line-height: 1.1;
    }

    .discord-fixed__subtitle {
      opacity: 0.95;
      font-size: 0.95rem;
      margin-top: 2px;
    }

    .discord-fixed__btn {
      padding: 1rem 1.4rem;
      font-size: 1.05rem;
      white-space: nowrap;
      width: auto;
    }

    .mobile-spacer {
      display: none;
    }

    /* Pagine */
    .page { display: none; }
    .page.active { display: block; }

    @media (max-width: 768px) {
      .main-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
      }

      .header h1 {
        font-size: 2.2rem;
      }

      .header {
        padding: 2rem 0 1rem 0;
      }

      .discord-section {
        margin: 1.5rem 0;
        padding: 2rem 1.5rem;
      }

      .discord-section h2 {
        font-size: 1.8rem;
      }

      .discord-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }

      .discord-icon-large {
        font-size: 3.5rem;
      }

      .btn-discord {
        font-size: 1.2rem;
        padding: 1.3rem 2rem;
        width: 100%;
      }

      .btn-primary {
        width: 100%;
        font-size: 1.1rem;
      }

      .info-box {
        padding: 1.8rem;
      }

      .info-box h2 {
        font-size: 1.5rem;
      }

      .container {
        padding: 1rem;
      }

      .cta-section {
        margin: 2rem 0;
      }

      .discord-fixed { display: block; }
      .mobile-spacer { display: block; height: 130px; }
    }
