﻿@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap");

    :root {
      --bg: #040421;
      --bg-2: #040421;
      --panel: rgba(22, 23, 44, 0.86);
      --panel-soft: rgba(18, 18, 39, 0.72);
      --line: rgba(255, 255, 255, 0.13);
      --text: #f7f7ff;
      --muted: #c9cce1;
      --quiet: #8e91aa;
      --yellow: #ff9900;
      --yellow-2: #ff9900;
      --nav: #101229;
      --fs-title: 40px;
      --fs-lead: 20px;
      --fs-body: 16px;
      --fs-small: 14px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      font-family: "Rubik", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 50% 8%, rgba(14, 20, 69, 0.7), transparent 30rem),
        var(--bg);
      letter-spacing: 0;
      font-size: var(--fs-body);
      font-weight: 400;
    }

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

    button,
    a.button {
      border: 0;
      cursor: pointer;
      font: inherit;
      font-weight: 500;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 78px;
      padding: 0 32px;
      background: rgba(3, 4, 29, 0.92);
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(14px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      height: 34px;
      color: var(--text);
    }

    .brand img {
      display: block;
      width: 118px;
      height: auto;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 8px 10px;
      border: 1px solid rgba(169, 177, 227, 0.25);
      border-radius: 999px;
      background: rgba(8, 10, 39, 0.75);
    }

    .nav a {
      min-width: 76px;
      padding: 9px 14px;
      border-radius: 999px;
      color: #d5d7e8;
      font-size: var(--fs-small);
      text-align: center;
    }

    .nav a.active {
      color: var(--text);
      background: rgba(255, 255, 255, 0.12);
      font-weight: 500;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      min-width: 158px;
      padding: 0 28px;
      border-radius: 999px;
      color: #03031e;
      background: var(--yellow);
      box-shadow: 0 12px 32px rgba(255, 192, 0, 0.16);
      transition: transform 180ms ease, background 180ms ease;
    }

    .button:hover {
      transform: translateY(-2px);
      background: #ffd033;
    }

    .button.dark {
      min-height: 48px;
      color: var(--text);
      background: #302a3f;
      box-shadow: none;
      font-weight: 700;
    }

    .page {
      overflow: hidden;
    }

    .hero {
      position: relative;
      min-height: 720px;
      padding: 185px 24px 110px;
      text-align: center;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(4, 4, 33, 0.96) 0%, rgba(4, 4, 33, 0.62) 23%, rgba(4, 4, 33, 0.10) 70%, rgba(4, 4, 33, 0.82) 100%),
        url("../assets/images/background/IMAGE.png") center bottom / cover no-repeat,
        var(--bg);
    }

    .hero h1 {
      max-width: 760px;
      margin: 0 auto;
      font-family: "Rubik", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 46px;
      line-height: 1.12;
      font-weight: 700;
    }

    .accent {
      color: transparent;
      background: linear-gradient(90deg, #ff9900 0%, #ffd766 50%, #ff9900 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero p {
      max-width: 720px;
      margin: 42px auto 54px;
      color: var(--muted);
      font-size: var(--fs-body);
    }

    .coin {
      position: absolute;
      right: max(6vw, 48px);
      top: 365px;
      width: clamp(150px, 18vw, 238px);
      z-index: 0;
      filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.28));
    }

    .fler {
      position: absolute;
      display: none;
      z-index: 0;
      pointer-events: none;
      opacity: 0.8;
      user-select: none;
    }

    .fler-hero {
      left: -120px;
      bottom: -120px;
      width: min(760px, 62vw);
    }

    .fler-right {
      right: -170px;
      top: 360px;
      width: min(620px, 48vw);
    }

    .hero h1,
    .hero p,
    .hero .button,
    section > .container {
      position: relative;
      z-index: 1;
    }

    section {
      position: relative;
      padding: 92px 24px;
    }

    .container {
      width: min(1040px, 100%);
      margin: 0 auto;
    }

    .intro {
      margin-top: -24px;
      background:
        linear-gradient(180deg, rgba(4, 4, 33, 0.45), rgba(4, 4, 33, 0.96)),
        url("../assets/images/background/IMAGE.png") center top / cover no-repeat,
        var(--bg);
      overflow: hidden;
    }

    .section-title {
      margin: 0;
      color: #d9dced;
      font-size: var(--fs-title);
      line-height: 1.15;
      text-align: center;
      font-weight: 500;
    }

    .section-copy {
      max-width: 820px;
      margin: 16px auto 70px;
      color: var(--muted);
      font-size: var(--fs-body);
      line-height: 1.55;
      text-align: center;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .info-card {
      min-height: 192px;
      padding: 22px 18px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(17, 18, 39, 0.82), rgba(12, 13, 33, 0.82));
    }

    .card-heading {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 24px;
    }

    .icon-box {
      display: grid;
      place-items: center;
      width: 64px;
      height: 64px;
      flex: 0 0 64px;
      border: 1px solid #ffd23f;
      border-radius: 18px;
      color: var(--yellow);
      font-size: 24px;
      background: rgba(30, 23, 48, 0.8);
    }

    .icon-box img {
      width: 26px;
      height: 26px;
      object-fit: contain;
    }

    .info-card h3 {
      margin: 0 0 4px;
      color: #d9dcec;
      font-size: var(--fs-lead);
      font-weight: 500;
    }

    .info-card span,
    .info-card p {
      color: #b5b8cf;
      font-size: var(--fs-body);
      line-height: 1.35;
    }

    .lottery {
      padding-top: 64px;
      background:
        linear-gradient(180deg, rgba(4, 4, 33, 0.88), rgba(4, 4, 33, 0.98)),
        url("../assets/images/background/IMAGE.png") right center / 980px auto no-repeat,
        var(--bg);
      overflow: hidden;
    }

    .game-head {
      position: relative;
      min-height: 230px;
      display: grid;
      place-items: center;
      text-align: center;
    }

    .game-head h2 {
      margin: 0 0 10px;
      color: var(--yellow);
      font-size: var(--fs-title);
      line-height: 1;
      font-weight: 500;
    }

    .game-head.orange h2 {
      color: var(--yellow-2);
    }

    .game-head p {
      margin: 8px 0;
      color: var(--text);
      font-size: var(--fs-lead);
    }

    .game-head small {
      color: var(--quiet);
      font-size: var(--fs-small);
    }

    .status {
      margin-top: 26px;
      color: #ffe47a;
      font-size: var(--fs-body);
      font-weight: 500;
    }

    .star {
      margin-top: 10px;
      color: var(--yellow);
      font-size: 20px;
    }

    .clover {
      position: absolute;
      left: 10%;
      bottom: -18px;
      width: clamp(120px, 15vw, 190px);
      z-index: 2;
      filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.32));
    }

    .prize-panel {
      position: relative;
      padding: 86px 58px 60px;
      border-top: 4px solid var(--yellow);
      border-radius: 36px;
      background: var(--panel);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
    }

    .prize-panel.orange {
      border-top-color: var(--yellow-2);
    }

    .panel-action {
      position: absolute;
      left: 50%;
      top: -28px;
      transform: translateX(-50%);
    }

    .prize-panel h3 {
      margin: 0 0 58px;
      color: #d9dcec;
      font-size: var(--fs-title);
      text-align: center;
      font-weight: 500;
    }

    .prize-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 34px;
    }

    .prize-item {
      display: flex;
      align-items: center;
      gap: 14px;
      color: #d4d6e7;
      line-height: 1.3;
    }

    .percent {
      display: grid;
      place-items: center;
      width: 64px;
      height: 64px;
      flex: 0 0 64px;
      border: 1px solid #ffe158;
      border-radius: 15px;
      color: var(--yellow);
      font-size: var(--fs-lead);
      font-weight: 500;
      background: #181329;
    }

    .orange .percent {
      color: var(--yellow-2);
      border-color: var(--yellow-2);
    }

    .panel-footer {
      display: flex;
      justify-content: center;
      margin-top: 76px;
    }

    .ticker {
      display: flex;
      width: max-content;
      padding: 30px 0;
      background: #151629;
      color: var(--yellow);
      font-size: var(--fs-lead);
      white-space: nowrap;
      animation: marquee 22s linear infinite;
    }

    .ticker-wrap {
      overflow: hidden;
      background: #151629;
    }

    .ticker span {
      display: inline-flex;
      align-items: center;
      gap: 34px;
      padding-right: 42px;
    }

    .ticker img {
      width: 18px;
      height: 26px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .bot {
      padding-top: 120px;
      background: var(--bg);
    }

    .bot-panel {
      margin-top: 76px;
      padding: 56px 24px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(9, 10, 34, 0.64);
      text-align: center;
    }

    .bot-panel .icon-box {
      margin: 0 auto 28px;
    }

    .bot-panel h3 {
      margin: 0 0 12px;
      color: #d9dcec;
      font-size: var(--fs-lead);
      font-weight: 500;
    }

    .bot-panel p {
      max-width: 400px;
      margin: 0 auto 34px;
      color: var(--muted);
      line-height: 1.35;
    }

    .faq {
      padding-top: 62px;
      background: var(--bg);
    }

    .faq-list {
      display: grid;
      gap: 22px;
      margin-top: 72px;
    }

    details {
      border-radius: 999px;
      background: #16172a;
    }

    summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 88px;
      padding: 0 32px;
      list-style: none;
      color: var(--text);
      font-size: var(--fs-lead);
      cursor: pointer;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary img {
      width: 26px;
      height: 26px;
      flex: 0 0 26px;
      transition: transform 180ms ease;
    }

    details[open] {
      border-radius: 34px;
    }

    details[open] summary img {
      transform: rotate(180deg);
    }

    details p {
      margin: -12px 32px 30px;
      color: var(--muted);
      line-height: 1.5;
    }

    .footer {
      padding: 80px 24px 58px;
      background: var(--bg);
    }

    .footer-card {
      position: relative;
      width: min(1040px, 100%);
      margin: 0 auto;
      padding: 62px 24px 50px;
      border-radius: 40px;
      color: #040421;
      background: var(--yellow);
      text-align: center;
      overflow: visible;
    }

    .footer-card .bolt-img {
      position: absolute;
      left: 74px;
      top: -52px;
      width: 116px;
      transform: rotate(-10deg);
      filter: drop-shadow(0 12px 15px rgba(96, 61, 0, 0.28));
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
    }

    .footer-brand img {
      display: block;
      width: 192px;
      height: auto;
    }

    .footer-card h2 {
      max-width: 680px;
      margin: 0 auto 34px;
      color: #07083b;
      font-size: var(--fs-title);
      line-height: 1.18;
      font-weight: 500;
    }

    .outline-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      min-width: 190px;
      margin-bottom: 42px;
      border: 1px solid #05051e;
      border-radius: 999px;
      color: #05051e;
      font-weight: 500;
    }

    .socials {
      display: flex;
      justify-content: center;
      gap: 18px;
      margin-bottom: 76px;
    }

    .socials a {
      display: grid;
      place-items: center;
      width: 50px;
      height: 50px;
      border-radius: 11px;
      background: rgba(255, 255, 255, 0.36);
      color: #08093e;
      font-size: 23px;
      font-weight: 500;
    }

    .socials img {
      width: 24px;
      height: 24px;
      object-fit: contain;
    }

    .legal {
      color: #03031d;
      font-size: 16px;
    }

    .copyright {
      margin: 54px 0 0;
      color: #81849a;
      text-align: center;
    }

    @media (max-width: 900px) {
      .site-header {
        gap: 18px;
        padding: 18px 20px;
        flex-wrap: wrap;
      }

      .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        overflow-x: auto;
      }

      .hero {
        min-height: 650px;
        padding-top: 128px;
      }

      .coin {
        position: relative;
        right: auto;
        top: auto;
        display: block;
        margin: 50px auto 0;
      }

      .info-grid,
      .prize-grid {
        grid-template-columns: 1fr;
      }

      .prize-panel {
        padding: 82px 24px 48px;
        border-radius: 28px;
      }

      .game-head {
        min-height: 260px;
      }

      .clover {
        left: 2%;
        width: 120px;
      }

      .footer-card .bolt-img {
        left: 22px;
        width: 88px;
      }
    }

    @media (max-width: 560px) {
      .site-header {
        position: relative;
      }

      .site-header > .button {
        min-width: 112px;
        min-height: 42px;
        padding: 0 20px;
      }

      .nav {
        gap: 4px;
      }

      .nav a {
        min-width: auto;
        padding-inline: 11px;
        font-size: var(--fs-small);
      }

      .hero {
        padding-inline: 18px;
      }

      .hero p {
        margin: 28px auto 36px;
      }

      section {
        padding-inline: 18px;
      }

      .card-heading {
        align-items: flex-start;
      }

      .game-head {
        padding-inline: 6px;
      }

      .panel-action {
        min-width: 170px;
      }

      .prize-item {
        align-items: flex-start;
      }

      summary {
        min-height: 76px;
        padding: 0 22px;
        font-size: var(--fs-body);
      }

      .footer-card {
        padding-top: 74px;
        border-radius: 30px;
      }

      .footer-brand {
        margin-bottom: 20px;
      }

      .footer-brand img {
        width: 150px;
      }

      .socials {
        margin-bottom: 44px;
      }
    }

