    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    body {
      background-color: #0b0914;
      color: #ffffff;
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }

    /* Ambient Background Gradients */
    .bg-mesh {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
    }

    .glow-left {
      position: absolute;
      top: 10%;
      left: -10%;
      width: 55vw;
      height: 55vw;
      background: radial-gradient(circle, rgba(124, 77, 255, 0.45) 0%, rgba(93, 45, 209, 0.2) 45%, transparent 70%);
      filter: blur(80px);
    }

    .glow-right {
      position: absolute;
      top: -10%;
      right: -10%;
      width: 60vw;
      height: 60vw;
      background: radial-gradient(circle, rgba(197, 127, 85, 0.35) 0%, rgba(138, 77, 43, 0.15) 50%, transparent 75%);
      filter: blur(90px);
    }

    .glow-bottom {
      position: absolute;
      bottom: -15%;
      left: 15%;
      width: 70vw;
      height: 40vw;
      background: radial-gradient(ellipse, rgba(138, 92, 246, 0.3) 0%, rgba(20, 10, 35, 0) 70%);
      filter: blur(100px);
    }

    .container {
      width: 100%;
      max-width: 1380px;
      min-height: 100vh;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 2;
      padding: 110px 60px 40px;
    }

    /* Navigation */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      max-width: 1380px;
      margin: 0 auto;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      gap: 24px;
      padding: 18px 60px;
      background: rgba(11, 9, 20, 0.75);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #ffffff;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-icon {
      height: 32px;
      width: auto;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .nav-link {
      color: rgba(255, 255, 255, 0.7);
      font-size: 13.5px;
      font-weight: 500;
      text-decoration: none;
      white-space: nowrap;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: #ffffff;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    .nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 9999px;
      color: #ffffff;
      cursor: pointer;
    }

    .hamburger-line {
      transform-origin: 12px 12px;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .nav-toggle.active .line1 {
      transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active .line2 {
      opacity: 0;
    }

    .nav-toggle.active .line3 {
      transform: translateY(-6px) rotate(-45deg);
    }

    .btn-glass {
      padding: 10px 24px;
      border-radius: 9999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(12px);
      color: #eaeaea;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-glass:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.35);
      color: #fff;
    }

    /* Hero Main Grid */
    main {
      flex: 1;
      display: grid;
      grid-template-columns: 1.15fr 1.3fr 0.6fr;
      align-items: center;
      gap: 20px;
      position: relative;
      margin-top: 20px;
    }

    /* Plain (compliance-page) Hero */
    .container:has(main.hero-plain) {
      min-height: 0;
    }

    main.hero-plain {
      display: block;
      flex: none;
      margin-bottom: -24px;
    }

    .hero-plain-inner {
      max-width: 720px;
      margin: 24px auto 0;
      text-align: center;
    }

    .hero-plain-inner h1 {
      font-size: 42px;
      line-height: 1.15;
      font-weight: 700;
      letter-spacing: -1px;
      margin-bottom: 24px;
      color: #f7f7f8;
    }

    .hero-plain-inner .hero-lead {
      margin-bottom: 16px;
    }

    /* Left Hero Column */
    .hero-left {
      max-width: 440px;
      z-index: 2;
    }

    .hero-left h1 {
      font-size: 44px;
      line-height: 1.15;
      font-weight: 700;
      letter-spacing: -1.2px;
      margin-top:22px;
      margin-bottom: 28px;
      color: #f7f7f8;
    }

    .hero-lead {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 28px;
    }

    .age-disclaimer {
      font-size: 12px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 18px;
      max-width: 420px;
    }

    .cta-group {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .cta-group.center {
      justify-content: center;
      margin:28px;
    }

    #heroCta {
      flex-wrap: nowrap;
    }

    #heroCta .btn-whatsapp,
    #heroCta .btn-telegram {
      flex: 1 1 0;
      min-width: 0;
      justify-content: center;
      text-align: center;
    }

    .btn-whatsapp,
    .btn-telegram {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 24px;
      border-radius: 9999px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      color: #ffffff;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-whatsapp {
      background: #25d366;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
    }

    .btn-whatsapp:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    }

    .btn-telegram {
      background: #229ed9;
      box-shadow: 0 8px 24px rgba(34, 158, 217, 0.25);
    }

    .btn-telegram:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(34, 158, 217, 0.35);
    }

    .btn-download {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #bfa3ff 0%, #ffc599 100%);
      color: #121019;
      padding: 13px 26px;
      border-radius: 9999px;
      font-weight: 600;
      font-size: 14.5px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(191, 163, 255, 0.25);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-download:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(255, 197, 153, 0.35);
    }

    .btn-demo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(12px);
      padding: 12px 24px;
      border-radius: 9999px;
      font-size: 14.5px;
      font-weight: 500;
      color: #ffffff;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.3s ease, border-color 0.3s ease;
    }

    .btn-demo:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.35);
    }

    /* Center Phones Showcase (Single Merged Image or Two Layered Images) */
    .phones-wrapper {
      position: relative;
      height: 650px;
      display: flex;
      justify-content: center;
      align-items: center;
      perspective: 1000px;
    }

    .phones-mockup-img {
      max-width: 100%;
      height: auto;
      max-height: 580px;
      object-fit: contain;
      user-select: none;
      filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.7));
      transition: transform 0.1s ease-out;
    }

    /* Right Hero Column */
    .hero-right {
      max-width: 320px;
      display: flex;
      flex-direction: column;
      gap: 50px;
      margin-left: 20px;
      z-index: 2;
    }

    .right-top-icon {
      width: 22px;
      height: 22px;
      opacity: 0.6;
      margin-bottom: -35px;
    }

    .hero-description {
      font-size: 14.5px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 400;
    }

    .quick-facts {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .quick-facts li {
      position: relative;
      padding-left: 20px;
      font-size: 13.5px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.75);
    }

    .quick-facts li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 6px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, #bfa3ff 0%, #ffc599 100%);
    }

    /* Content Sections */
    .content-section {
      position: relative;
      z-index: 1;
      padding: 72px 60px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .content-section.alt {
      background: rgba(255, 255, 255, 0.02);
    }

    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-inner.center {
      text-align: center;
    }

    /* Legal document layout (Terms, long policy pages) */
    .legal-content {
      max-width: 760px;
    }

    .legal-heading {
      font-size: 22px;
      font-weight: 700;
      color: #f7f7f8;
      margin-top: 40px;
      margin-bottom: 12px;
      scroll-margin-top: 32px;
    }

    .legal-content > .legal-heading:first-of-type {
      margin-top: 0;
    }

    .legal-toc {
      margin-bottom: 40px;
      padding: 20px 24px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
    }

    .legal-toc-title {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 14px;
    }

    .legal-toc-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 20px;
    }

    .legal-toc-list a {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.75);
      text-decoration: none;
    }

    .legal-toc-list a:hover {
      color: #ffffff;
      text-decoration: underline;
    }

    .section-title {
      font-size: 32px;
      font-weight: 700;
      letter-spacing: -0.6px;
      margin-bottom: 16px;
      color: #f7f7f8;
    }

    .subsection-title {
      font-size: 19px;
      font-weight: 700;
      margin: 28px 0 10px;
      color: #f7f7f8;
    }

    .section-lead {
      font-size: 15.5px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 8px;
    }

    .section-lead.center {
      margin-left: auto;
      margin-right: auto;
    }

    .section-text {
      font-size: 14.5px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.68);
      margin-top: 14px;
    }

    .section-note {
      font-size: 13.5px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 24px;
    }

    .section-lead a,
    .section-text a {
      color: #d8c6ff;
      text-decoration: underline;
      text-decoration-color: rgba(216, 198, 255, 0.4);
    }

    .section-lead a:hover,
    .section-text a:hover {
      color: #ffffff;
    }

    .feature-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px 28px;
      margin-top: 18px;
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14.5px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.85);
    }

    .feature-list li > span {
      flex: 1 1 auto;
      min-width: 0;
    }

    .feature-list svg {
      flex-shrink: 0;
      margin-top: 3px;
      color: #bfa3ff;
    }

    .feature-list a {
      color: #d8c6ff;
      text-decoration: underline;
      text-decoration-color: rgba(216, 198, 255, 0.4);
    }

    .feature-list a:hover {
      color: #ffffff;
    }

    .step-list {
      counter-reset: step;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 18px;
      max-width: 640px;
    }

    .step-list li {
      position: relative;
      padding-left: 36px;
      font-size: 14.5px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.75);
    }

    .step-list li::before {
      counter-increment: step;
      content: counter(step);
      position: absolute;
      left: 0;
      top: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      font-size: 12px;
      font-weight: 700;
      color: #ffffff;
    }

    .setting-path {
      display: inline-block;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 13.5px;
      color: #ffffff;
      margin: 8px 0;
    }

    .callout {
      margin-top: 24px;
      padding: 18px 20px;
      border-radius: 14px;
      background: rgba(191, 163, 255, 0.08);
      border: 1px solid rgba(191, 163, 255, 0.25);
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.85);
    }

    .callout p + p {
      margin-top: 12px;
    }

    .callout-warning {
      background: rgba(255, 197, 153, 0.1);
      border-color: rgba(255, 197, 153, 0.35);
    }

    .section-text code,
    .section-lead code {
      font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 2px 7px;
      border-radius: 6px;
      font-size: 0.9em;
      color: #ffd9a8;
    }

    /* Start Cards */
    .start-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 32px;
    }

    .start-card {
      display: flex;
      flex-direction: column;
      gap: 12px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      padding: 32px;
      backdrop-filter: blur(12px);
    }

    .start-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: #f7f7f8;
    }

    .start-card p {
      font-size: 14px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.68);
    }

    .start-card .best-for {
      font-size: 12.5px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.5);
    }

    .start-card .btn-download,
    .start-card .btn-demo {
      align-self: flex-start;
      margin-top: 6px;
    }

    .game-cards {
      grid-template-columns: repeat(4, 1fr);
    }

    /* Registration Form */
    .register-form {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 28px;
      max-width: 780px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-field label {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.75);
    }

    .form-field input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 14px;
      color: #ffffff;
      font-family: inherit;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    .form-field input::placeholder {
      color: rgba(255, 255, 255, 0.35);
    }

    .form-field input:focus {
      outline: none;
      border-color: rgba(191, 163, 255, 0.6);
      background: rgba(255, 255, 255, 0.08);
    }

    .message-preview {
      margin-top: 24px;
      max-width: 640px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 14px;
      padding: 18px 20px;
    }

    .message-preview-label {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 10px;
    }

    .message-preview-text {
      font-family: inherit;
      white-space: pre-wrap;
      word-break: break-word;
      font-size: 13.5px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.85);
    }

    #registerCta {
      margin-top: 24px;
    }

    /* Comparison Table */
    .table-wrapper {
      overflow-x: auto;
      margin-top: 28px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .compare-table {
      width: 100%;
      min-width: 480px;
      border-collapse: collapse;
      font-size: 14px;
    }

    .compare-table th,
    .compare-table td {
      padding: 14px 18px;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      white-space: nowrap;
    }

    .compare-table th {
      background: rgba(255, 255, 255, 0.05);
      font-weight: 600;
      color: #ffffff;
    }

    .compare-table td {
      color: rgba(255, 255, 255, 0.7);
    }

    .compare-table td:first-child {
      font-weight: 600;
      color: #f7f7f8;
    }

    .compare-table tr:last-child td {
      border-bottom: none;
    }

    /* FAQ */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 24px;
    }

    .faq-item {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 4px 20px;
    }

    .faq-item summary {
      cursor: pointer;
      padding: 16px 0;
      font-weight: 600;
      font-size: 15px;
      color: #ffffff;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: '+';
      flex-shrink: 0;
      font-size: 20px;
      color: rgba(255, 255, 255, 0.5);
      transition: transform 0.2s ease;
    }

    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }

    .faq-item p {
      padding: 0 0 18px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 14px;
      line-height: 1.6;
    }

    /* Footer */
    footer {
      position: relative;
      z-index: 1;
      padding: 40px 60px 50px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      text-align: center;
    }

    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.6);
      font-size: 13px;
      text-decoration: none;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-disclaimer {
      font-size: 12px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.45);
      max-width: 640px;
    }

    .footer-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.35);
    }

    /* Responsive Design */
    @media (max-width: 1080px) {
      main {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
      }
      .hero-left, .hero-right {
        max-width: 100%;
        margin: 0 auto;
      }
      .cta-group, .social-proof, .social-header {
        justify-content: center;
      }
      .phones-wrapper {
        height: 300px;
      }

      .phones-mockup-img {
        max-height: 327px;
      }

      .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: rgba(15, 12, 26, 0.97);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        padding: 10px;
        z-index: 20;
      }

      .nav-menu.open {
        display: flex;
      }

      .nav-link {
        padding: 12px 14px;
        border-radius: 10px;
        min-height: 44px;
        display: flex;
        align-items: center;
      }

      .nav-link:hover {
        background: rgba(255, 255, 255, 0.06);
      }

      .nav-toggle {
        display: inline-flex;
      }

      .hero-lead,
      .age-disclaimer {
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 900px) {
      .game-cards {
        grid-template-columns: repeat(2, 1fr);
      }

      .register-form {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 720px) {
      .container {
        padding: 100px 24px 32px;
      }

      header {
        padding: 16px 24px;
      }

      .content-section {
        padding: 52px 24px;
      }

      footer {
        padding: 32px 24px 40px;
      }

      .section-title {
        font-size: 26px;
      }

      .start-cards {
        grid-template-columns: 1fr;
      }

      .register-form {
        grid-template-columns: 1fr;
      }

      .feature-list {
        grid-template-columns: 1fr;
      }

      .legal-toc-list {
        grid-template-columns: 1fr;
      }

      .section-lead,
      .section-text {
        max-width: 100%;
      }
    }

    @media (max-width: 480px) {
      #heroCta {
        gap: 8px;
      }

      #heroCta .btn-whatsapp,
      #heroCta .btn-telegram {
        padding: 12px 8px;
        font-size: 12px;
        gap: 6px;
      }
    }
