    /* ================== RESET เบื้องต้น ================== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Kanit", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: linear-gradient(#003b42, #ffffff);
      color: #eee4d0;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    :root {
      --gold: #00ff6a;
      --gold-dark: #c08a2d;
      --teal: #0b7e8c;
      --teal-dark: #063b44;
      --brown: #2a1a12;
      --bg-dark: #0b0707;
      --accent-red: #c03a2b;
      --text-light: #d0eed5;
    }

    /* ================== LAYOUT หลัก ================== */
    .page {
      background: radial-gradient(circle at top, #003b42 40%, #ffffff 100%)fixed;
      width: 100%;
      min-height: 100vh;
      color: var(--text-light);
      z-index: -2;
      display: flex;
      overflow: hidden;
      flex-direction: column;
    }

    .zone2 {
      width: 100%;
      display: flex;
      flex-direction: column;
    }

    /* ================== TOP BAR ================== */
    .top-bar {
      position: fixed;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      width: 100%;
      height: 5%;
      font-size: 11px;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(10px);
      color: var(--text-light);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      z-index: 10;
    }

    .top-bar a {
      margin-left: 16px;
      opacity: 0.9;
    }

    .top-bar a:hover {
      color: var(--gold);
      text-shadow: 0 0 3px #00ffaa;
      font-weight: 400;
    }


    /* ================== HERO ================== */
    .zone {
      position: relative;
      width: 100%;
      display: flex;
      height: 100%;
    }


    .logo-block {
      position: relative;
      margin-top: 20%;
      margin-left: 1%;
      width: 55%;
      height: 25%;
      z-index: 5;
      justify-content: center;
      align-items: center;
    }

    .brand {
      position: absolute;
      width: 26%;
      margin-left: 5%;
      margin-right: 5%;
    }

    .content {
      padding-top: 2.5%;
      padding-bottom: 2.5%;
      width: 100%;
      margin-top: 0%;
      text-align: center;
      opacity: 0;
      transform: translateY(50px);
      transition: all 1s ease;
    }

    .section {
      width: 100%;
      margin-top: 0%;
      height: 100%;

    }

    .content.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .main-title {
      font-size: 1.8rem;
      font-weight: 700;
      background: linear-gradient(45deg, #ecfff4, #00C851, #00ff6a, #a3ffc8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 400% 200%;
      background-clip: text;
      text-shadow: 0 3px 0px rgba(0, 255, 102, 0.433);
      animation: titleGlow 2s ease-in-out infinite alternate;
    }

    @keyframes titleGlow {
      0% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 10px rgba(0, 200, 81, 0.3));
      }

      100% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 25px rgba(0, 200, 81, 0.7));
      }
    }

    .main-title-first {
      font-size: 1rem;
      font-weight: 500;
      background: linear-gradient(45deg, #ffffff, #d2d2d2, #ffffff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 400% 200%;
      text-shadow: 0 1px 0px rgba(255, 255, 255, 0.444);
      animation: border-glow 2s linear infinite;
    }

    @keyframes border-glow {
      0% {
        background-position: 0% 50%;
      }

      100% {
        background-position: 100% 50%;
      }
    }

    .glow-shine {
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .glow-shine::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(100deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.01) 30%,
          rgba(255, 255, 255, 0.509) 50%,
          rgba(255, 255, 255, 0.01) 70%,
          rgba(255, 255, 255, 0) 100%);
      animation: shineMove 3s linear infinite;
      transform: skewX(-20deg);
      z-index: 2;
      pointer-events: none;
    }

    @keyframes shineMove {
      0% {
        left: -250%;
      }

      100% {
        left: 250%;
      }
    }



    .register-button {
      padding-left: 11px;
      padding-right: 11px;
      padding-bottom: 5px;
      z-index: 5;
      width: 70%;
      background: linear-gradient(180deg, #00ff6a, #008f4c);
      color: white;
      text-shadow: 0px 2px 0px rgb(73, 73, 73), 0px 3px 5px rgb(0, 34, 16);
      z-index: 5;
      margin-top: 10%;
      margin-left: 15%;
      border-radius: 300px;
      font-size: 1rem;
      box-shadow: inset 1px 1px 7.7px #d3ffde84,
        inset -2.29px -2.29px 0px -1.15px #cfffde79,
        inset 2.29px 2.29px 0px -1.15px #abedcc, 0px 4px 14px rgba(0, 37, 15, 0.794),
        0 3px 0px rgb(255, 255, 255);
      font-weight: 400;
      white-space: nowrap;
      animation: regisPulse 2s infinite;
    }

    @keyframes regisPulse {

      0%,
      100% {
        transform: scale(1);
        filter: drop-shadow(0px 0px 1px rgb(0, 85, 34));
      }

      50% {
        transform: scale(1.1);
        filter: drop-shadow(0px 0px 3px rgb(0, 255, 123));
      }
    }

    .register-button:hover {
      transform: translateY(-5px);
    }


    .play-button {
      padding-left: 11px;
      padding-right: 11px;
      padding-bottom: 5px;
      z-index: 5;
      width: 70%;
      background: linear-gradient(180deg, #ffffff, #aeaeae);
      color: rgb(0, 255, 68);
      text-shadow: 0px 2px 0px rgb(73, 73, 73), 0px 3px 5px rgb(0, 34, 16);
      z-index: 5;
      margin-top: 30%;
      margin-left: 15%;
      border-radius: 300px;
      font-size: 1rem;
      box-shadow: inset 1px 1px 7.7px #d3ffde84,
        inset -2.29px -2.29px 0px -1.15px #cfffde79,
        inset 2.29px 2.29px 0px -1.15px #abedcc, 0px 4px 14px rgba(0, 37, 15, 0.794),
        0 3px 0px rgb(0, 255, 123), 0 0px 20px rgba(0, 200, 81, 0.5);
      font-weight: 600;
      white-space: nowrap;
    }


    .play-button:hover {
      transform: translateY(-5px);
    }


    .model-iPhone {
      position: absolute;
      margin-top: 10%;
      margin-left: 30%;
      width: 100%;
      height: 80%;
      z-index: 2;
    }

    spline-viewer {
      position: relative;
      width: 20%;
      inset: 0;
      background: transparent;
      --spline-background: transparent;
      z-index: 1;
    }


    .cardSet {
      position: absolute;
      margin-left: 0%;
      margin-top: 25%;
      width: 105%;
      height: 60%;
      z-index: 1;
      background-image: url('../images/index/prop-card.png');
      background-size: 100% 100%;
    }

    .zone-tagline {
      width: 60%;
      margin-top: 0%;
      font-weight: 400;
      font-size: 14px;
      color: #ddffef;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    }

    .focus {
      font-size: 20px;
      font-weight: 500;
      color: #00ff77;
    }

    .slideContent {
      position: relative;
      padding-bottom: 2.5%;
      width: 100%;
      margin-top: -15%;
      text-align: center;
      opacity: 1;
      transform: translateY(50px);
      transition: all 1s ease;
      z-index: 1000;
    }

    .infoContain {
      position: absolute;
      width: 100%;
      height: 100%;
      border: 1px solid rgb(255, 0, 0);
    }

    /* HERO – STACK การ์ดฝั่งขวา */
    .zone-stack {
      position: absolute;
      height: 45%;
      width: 50%;
      margin-top: -5%;
      margin-left: 40%;
      z-index: 50;
    }

    .card-stack {
      position: relative;
      display: flex;
      width: 65%;
      margin-top: -10%;
      height: 92%;
      left: 15%;
      perspective: 1400px;
    }

    .stack-card {
      position: absolute;
      height: 100%;
      inset: 0;
      border-radius: 10px;
      overflow: hidden;
      background: radial-gradient(circle at 20% 0, #ffffff 0, #257e72 35%, #130b0b 100%);
      box-shadow: 0 22px 50px rgba(0, 0, 0, 0.502);
      border: 2px solid rgb(157, 157, 157);
      transform-origin: center;
    }

    .stack-card.main {
      transform: translate(0, 0) rotate(5deg);
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)),
    }

    .stack-card.bg-1 {
      transform: translate(14px, 6px) rotate(9deg) scale(0.95);
      opacity: 0.8;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)),
        url('../images/Card-Set/Daimond/3.png') center/cover no-repeat;
      filter: blur(1px);
    }

    .stack-card.bg-2 {
      transform: translate(28px, 10px) rotate(14deg) scale(0.9);
      opacity: 0.7;
      filter: blur(1px);
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)),
        url('../images/Card-Set/Spade/K.png') center/cover no-repeat;
    }

    .stack-card.bg-3 {
      transform: translate(42px, 14px) rotate(19deg) scale(0.85);
      opacity: 0.6;
      filter: blur(1px);
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)),
        url('../images/Card-Set/Daimond/7.png') center/cover no-repeat;
    }






    .model-tableGame {
      position: absolute;
      margin-top: -10%;
      margin-left: -5%;
      width: 50%;
      z-index: 5;
      height: 10%;
      aspect-ratio: 2/3;
      filter: drop-shadow(-25px 8px 7px rgba(0, 35, 19, 0.23)) drop-shadow(-20px 33px 10px rgba(0, 22, 16, 0.32)) drop-shadow(-10px 4px 4px rgb(0 0 0 / 25%));
      animation: tableGame-movement 3.8s ease;
    }

    @keyframes tableGame-movement {
      0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
      }

      100% {
        transform: translateX(0%) translateY(0%) rotate(0deg);
      }
    }

    .model-ModeBTN {
      position: absolute;
      margin-top: 10%;
      margin-left: -2%;
      width: 30%;
      z-index: 7;
      height: 10%;
      aspect-ratio: 2/3;
      filter: drop-shadow(-25px 8px 7px rgba(0, 35, 19, 0.23)) drop-shadow(-20px 33px 10px rgba(0, 22, 16, 0.32)) drop-shadow(-10px 4px 4px rgb(0 0 0 / 25%));
      animation: tableGame-movement 2s ease;
    }

    .card1 {
      position: absolute;
      margin-top: 0%;
      margin-left: -3%;
      width: 18%;
      z-index: 2;
      height: 30%;
      transform: rotate(29deg);
      filter: drop-shadow(0 8px 7px rgb(0 55 29 / 45%)) drop-shadow(0 15px 10px rgb(0 22 12 / 50%)) drop-shadow(0 4px 4px rgb(0 0 0 / 25%));
      opacity: 0;
    }

    @keyframes card1-movement {
      0% {
        transform: translateX(-150%) translateY(40%) rotate(-185deg);
      }

      100% {
        transform: translateX(0%) translateY(0%) rotate(29deg);
      }
    }

    .card1.visible {
      opacity: 1;
      animation: card1-movement 2s ease forwards;
    }


    .card2 {
      position: absolute;
      margin-top: 77%;
      margin-left: 80%;
      width: 17%;
      z-index: 2;
      height: 30%;
      transform: rotate(-39deg);
      filter: drop-shadow(0 8px 7px rgb(0 55 29 / 45%));
      animation: card2-movement 3.5s ease;
      opacity: 1;
    }

    @keyframes card2-movement {
      0% {
        transform: translateX(180%) translateY(0%) rotate(185deg);
      }

      80% {
        transform: translateX(220%) translateY(30%) rotate(5deg);
      }

      100% {
        transform: translateX(0%) translateY(0%) rotate(-39deg);
      }
    }

    .card3 {
      position: absolute;
      margin-top: 92%;
      margin-left: 75%;
      width: 15%;
      z-index: 1;
      height: 30%;
      transform: rotate(-61deg);
      filter: drop-shadow(0 8px 7px rgb(0 55 29 / 45%)) drop-shadow(0 15px 10px rgb(0 22 12 / 50%)) drop-shadow(0 4px 4px rgb(0 0 0 / 25%));
      animation: card3-movement 4s ease;
      opacity: 1;
    }

    @keyframes card3-movement {
      0% {
        transform: translateX(180%) translateY(0%) rotate(185deg);
      }

      80% {
        transform: translateX(220%) translateY(50%) rotate(5deg);
      }

      100% {
        transform: translateX(0%) translateY(0%) rotate(-61deg);
      }
    }

    .chip1 {
      position: absolute;
      margin-top: -10%;
      margin-left: 77%;
      width: 13%;
      z-index: 2;
      aspect-ratio: 1/1;
      height: 30%;
      transform: rotate(0deg);
      filter: drop-shadow(0 8px 7px rgb(0 55 29 / 45%)) drop-shadow(0 15px 10px rgb(0 22 12 / 50%)) drop-shadow(0 4px 4px rgb(0 0 0 / 25%));
      animation: chip1-movement 3s ease;
      opacity: 1;
    }

    @keyframes chip1-movement {
      0% {
        transform: translateX(180%) translateY(0%) rotate(0deg);
      }

      80% {
        transform: translateX(200%) translateY(50%) rotate(85deg);
      }

      100% {
        transform: translateX(0%) translateY(0%) rotate(0deg);
      }
    }

    .chip2 {
      position: absolute;
      margin-top: -16%;
      margin-left: 84%;
      width: 13%;
      z-index: 3;
      aspect-ratio: 1/1;
      height: 30%;
      transform: rotate(0deg);
      filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.468)) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.276)) drop-shadow(0 5px 5px rgba(0, 0, 0, 0.176)) drop-shadow(0 5px 7px rgba(0, 0, 0, 0.176));
      animation: chip2-movement 3.5s ease;
      opacity: 1;
    }

    @keyframes chip2-movement {
      0% {
        transform: translateX(180%) translateY(0%) rotate(185deg);
      }

      80% {
        transform: translateX(220%) translateY(50%) rotate(5deg);
      }

      100% {
        transform: translateX(0%) translateY(0%) rotate(0deg);
      }
    }

    .chip3 {
      position: absolute;
      margin-top: -11%;
      margin-left: 90%;
      width: 13%;
      z-index: 1;
      aspect-ratio: 1/1;
      height: 30%;
      transform: rotate(0deg);
      filter: drop-shadow(0 8px 7px rgb(0 55 29 / 45%)) drop-shadow(0 15px 10px rgb(0 22 12 / 50%)) drop-shadow(0 4px 4px rgb(0 0 0 / 25%));
      animation: chip3-movement 3.2s ease;
      opacity: 1;
    }

    @keyframes chip3-movement {
      0% {
        transform: translateX(180%) translateY(0%) rotate(185deg);
      }

      80% {
        transform: translateX(220%) translateY(50%) rotate(5deg);
      }

      100% {
        transform: translateX(0%) translateY(0%) rotate(0deg);
      }
    }




    /* ================== MAIN NAV ================== */
    .main-nav-wrapper {
      position: relative;
      z-index: 2;
      margin-top: 10%;
      width: 100%;
    }

    .main-nav {
      backdrop-filter: blur(2px) brightness(100%) saturate(100%);
      -webkit-backdrop-filter: blur(2px) brightness(100%) saturate(100%);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 1px 0 0 rgba(255, 255, 255, 0.32),
        inset 0 -1px 1px rgba(0, 0, 0, 0.13), inset -1px 0 1px rgba(0, 0, 0, 0.11);
      background-blend-mode: soft-light;
      width: 90%;
      filter: drop-shadow(0 8px 7px rgb(0 55 29 / 45%)) drop-shadow(0 15px 10px rgb(0 22 12 / 50%)) drop-shadow(0 4px 4px rgb(0 0 0 / 25%));
      padding: 8px 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #f5e6c2;
      font-size: 7px;
    }

    /* ==== แถบ Marquee หลัก ==== */
    .marqueeBar {
      position: relative;
      display: flex;
      width: 90%;
      border-radius: 17px 17px 0 0px;
      height: auto;
      aspect-ratio: 12/1;
      margin-top: 10%;
      margin-left: 5%;
      z-index: 15;
      align-items: center;
      box-shadow: inset 1px 1px 1px 0px rgba(255, 255, 255, 0.683),
        inset -2px 2px 2px 0px rgba(255, 255, 255, 0.468),
        inset -1px -5px 2px 0px rgba(90, 90, 90, 0.171),
        inset 2px 2px 2px 0px rgba(227, 255, 248, 0.4),
        inset -2px 2px 2px 0px rgba(255, 255, 255, 0.201),
        inset -1px 5px 5px 0px rgba(162, 162, 162, 0.108),
        inset 0px -11px 15px 0px rgba(50, 72, 64, 0.445),
        inset 0px 4px 33px -4px rgba(85, 85, 85, 0.208);
      backdrop-filter: brightness(100%);
      -webkit-backdrop-filter: brightness(100%);
      background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(0deg, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0) 100%),
        linear-gradient(0deg,
          rgba(153, 153, 153, 0.03) 0%,
          rgba(153, 153, 153, 0.03) 100%);
      animation: videoFloat 2s linear
    }

    /* ==== กล่องข้อความ ==== */
    .marqueeBar .marqueeBox {
      position: relative;
      display: flex;
      border-radius: 20px;
      margin-left: 30%;
      padding-right: 2%;
      width: 65%;
      height: 100%;
      overflow: hidden;
      align-items: center;
      justify-content: center;
      letter-spacing: 1px;
    }

    /* ==== ข้อความที่วิ่ง ==== */
    .marqueeText {
      position: absolute;
      white-space: nowrap;
      font-size: 10px;
      font-weight: 300;
      animation: scroll-left 15s linear infinite;
      top: 50%;
      left: 40%;
      transform: translate(140%, -50%);
    }

    /* ==== แอนิเมชันข้อความวิ่ง ==== */
    @keyframes scroll-left {
      0% {
        transform: translate(150%, -50%);
      }

      100% {
        transform: translate(-150%, -50%);
      }
    }

    .colorWink {
      color: rgb(0, 255, 149);
      /* สีเริ่มต้นของตัวอักษร */
      animation: hilight 15s linear infinite;
    }

    @keyframes hilight {
      0% {
        color: rgb(255, 255, 255);
      }

      50% {
        color: rgb(135, 255, 163);
      }

      100% {
        color: rgb(255, 255, 255);
      }
    }


    .marqueeBar .logoFrame {
      position: absolute;
      display: flex;
      width: 28%;
      margin-left: 3%;
      margin-top: -2%;
      z-index: 500;

    }

    .marqueeBar .logoBrand {
      position: absolute;
      display: flex;
      opacity: 1;
      aspect-ratio: 1/1;
      border-radius: 100%;
      height: auto;
      width: 38%;
      margin-left: 25%;
      margin-top: -15%;
      box-shadow: inset 1px 1px 0px 0px rgb(255, 255, 255),
        inset -1px -1px 2px 0px rgb(175, 255, 221),
        inset -1px -1px 1px 0px rgb(255, 255, 255),
        inset 5px 5px 11px 0px rgba(201, 255, 231, 0.749),
        inset 2px 2px 2px 0px rgb(209, 255, 244),
        inset -5px -5px 4px 0px rgba(204, 255, 241, 0.389),
        inset -1px -1px 5px 0px rgba(162, 162, 162, 0.108),
        inset 0px 0px 30px 0px rgba(255, 255, 255, 0.86),
        inset 0px -25px 30px 1px rgb(0, 79, 57);
      backdrop-filter: brightness(100%);
      -webkit-backdrop-filter: brightness(100%);
      background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.904) 100%),
        linear-gradient(0deg, rgba(51, 51, 51, 0.11) 0%, rgba(51, 51, 51, 0) 100%),
        linear-gradient(0deg, rgba(181, 255, 249, 0.3) 0%, rgba(153, 153, 153, 0.12) 100%);
      filter: drop-shadow(0 1px 1px rgba(20, 28, 25, 0.55)) drop-shadow(0 2px 2px rgba(100, 160, 156, 0.533)) drop-shadow(0 3px 3px rgba(167, 255, 236, 0.501));
    }

    .marqueeBar .brand {
      position: absolute;
      display: flex;
      background-image: url('../images/LOGO-Brand.png');
      aspect-ratio: 3.582/1;
      background-size: 100% 100%;
      height: auto;
      width: 80%;
      margin-left: 8%;
      margin-top: -6%;
      filter: drop-shadow(0 1px 1px rgba(20, 28, 25, 0.55)) drop-shadow(0 2px 2px rgba(0, 33, 31, 0.533)) drop-shadow(0 3px 15px rgba(255, 255, 255, 0.501));
    }

    /* ================== SECTIONS กลาง ================== */
    .section {
      width: 100%;
      padding: 60px 80px;
      background:
        linear-gradient(180deg, #150f11 0%, #151312 100%);
      position: relative;
    }

    .section+.section {
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    .section.dark {
      background:
        linear-gradient(180deg, rgba(0, 157, 128, 0.2), rgba(255, 255, 255, 0.275)),
        url('../images/index/BG2.png') center/cover no-repeat;
    }



    .TitleContent {
      position: relative;
      display: flex;
      width: 50%;
      margin-top: 5%;
      margin-left: 45%;
      z-index: 6;
    }

    .section-title span {
      font-size: 22px;
      letter-spacing: 0.24em;
      opacity: 0.9;
      z-index: 6;
    }

    .borderLine {
      content: "";
      margin-left: 8px;
      width: 80px;
      height: 1px;
    }

    .labelContent {
      position: relative;
      width: 50%;
      left: 30%;
      margin-top: 5%;
      color: #ffffff;
      font-size: 12px;
      z-index: 8;
      font-weight: 300;
    }

    .section-body2 {
      position: absolute;
      width: 30%;
      left: 8%;
      margin-top: 5%;
      color: #ffffff;
      font-size: 10px;
      z-index: 58;
      font-weight: 300;
      text-align: left;
    }
    .section-body2 p {
      margin-bottom: 5%;
      border-bottom: 1px solid #bfbfbf9a ;
    }

    .highlight {
      color: #30ff83;
      font-size: 13px;
      font-weight: 600;
      text-shadow: 0 2px 2px #003a1d, ;
    }

    .sublineName {
      position: absolute;
      top: 10%;
      width: 65%;
      left: 5%;
      font-size: 12px;
      z-index: 8;
      font-weight: 300;
    }

    .link-underline {
      display: inline-flex;
      align-items: center;
      font-size: 13px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .link-underline::after {
      content: "";
      margin-left: 8px;
      width: 20%;
      height: 1px;
      background: linear-gradient(90deg, var(--gold) 0, transparent 100%);
    }



    .infoBox {
      position: absolute;
      width: 100%;
      height: auto;
      opacity: 0;
      z-index: 5;
      transform: translateX(-50%);
      transition: all 0.8s ease;
    }

    .infoBox.visible {
      transform: translate(0, 0);
      opacity: 1;
    }

    .infoBox.left {
      transform: translateX(100%);
      transition: all 3.5s ease;
    }

    .infoBox.right {
      transform: translateX(-100%);
      transition: all 3.5s ease;
    }



    .propArt {
      width: auto;
      height: auto;
      opacity: 0;
      z-index: 5;
      transform: translateX(calc(-50% + 80%));
      transition: all 0.8s ease;
      opacity: 0;
    }

    .propArt.visible {
      opacity: 1;
      transform: translateX(calc(-50% + 50%));
    }


    /* STACK การ์ดเล็กใน section "What's Faeria" */
    .boxAnimateZone {
      position: relative;
      background: linear-gradient(0deg, #00000080, #001c1fa3),
                url("../images/index/pattern3.png") center/cover;
      background-size: 600% 300%;
      box-shadow: 0 30px 10px -8px rgba(0, 16, 10, 0.121), 
                  0 30px 15px -2px rgba(0, 0, 0, 0.119),
                  inset  0px -25px 50px -5px rgb(0, 30, 32),
                  inset 0px 25px 50px 0px rgb(0, 0, 0);
      backdrop-filter: brightness(100%);
      -webkit-backdrop-filter: brightness(100%);
      display: block;
      width: 100%;
      height: 100%;
      gap: 5px;
      margin-top: 15%;
      margin-bottom: 3%;
      align-items: center;
      opacity: 1;
      transform: skewX(-8deg) rotate(-8deg);
      animation: warpBackground 15s linear infinite;
    }

    @keyframes warpBackground {
      0% {
        background-position: 100% 0%;
      }

      100% {
        background-position: 0% 100%;
      }
    }


    /* wrapper ของ carousel */
    .glassCarousel {
      height: 50%;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: none;
      scrollbar-width: none;
      padding-top: 8%;
      padding-bottom: 10%;
      border: 2px solid rgb(255, 255, 255);
    }
    .glassCarousel::-webkit-scrollbar {
    display: none;
    }

    /* track = แถวที่วางทุก slide */
    .glassTrack {
      display: flex;
      gap: 25px;
      padding-left: 0%;
      margin-left: 0%;
    }

    /* 1 slide = 1 กล่อง (กำหนดให้ 3 ใบ/จอ) */
    .glassSlide {
      flex: 0 0 calc(80% / 3);
      scroll-snap-align: center;
      display: flex;
    }


    .glassCard {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 30px 10px -8px rgba(0, 16, 10, 0.121), 
                  0 30px 15px -2px rgba(0, 0, 0, 0.119), 
                  inset 1px 1px 1px 0px rgb(255, 255, 255), 
                  inset -1px -1px 1px 0px rgb(255, 255, 255), 
                  inset -1px -1px 1px 0px rgba(221, 221, 221, 0.214), 
                  inset 2px 2px 2px 0px rgba(134, 134, 134, 0.117), 
                  inset -2px -2px 2px 0px rgba(214, 214, 214, 0.168), 
                  inset -1px -1px 5px 0px rgba(0, 0, 0, 0.108), 
                  inset 0px 0px 35px 0px rgba(135, 135, 135, 0.516), 
                  inset 0px -4px 96px -5px rgba(0, 0, 0, 0.125);
      background: rgba(255, 255, 255, 0.3);
      -webkit-backdrop-filter: brightness(100%);
      opacity: 1;
      z-index: 5;
      transition: transform 1.8s ease, opacity 1.8s ease;
      transform: translateX(20%) rotate(8deg) skew(8deg);
      flex-direction: column;
      overflow: hidden;
    }

    .glassCard.visible {
      transform: translateX(0) rotate(8deg) skew(8deg);
      opacity: 1;
    }




    .glassCard:hover {
      transition: all 0.8s ease;
      transform: translateX(20%) scale(1.2) skew(2deg) rotate(5deg);
      box-shadow: 0 15px 10px 0px rgba(255, 255, 255, 0.121), 
                  0 20px 15px 2px rgba(255, 255, 255, 0.119),
                  0 0px 15px 2px rgba(255, 255, 255, 0.252),
                  inset 1px 1px 1px 0px rgb(255, 255, 255), 
                  inset -1px -1px 1px 0px rgb(255, 255, 255), 
                  inset -1px -1px 1px 0px rgba(221, 221, 221, 0.214), 
                  inset 2px 2px 2px 0px rgba(134, 134, 134, 0.117), 
                  inset -2px -2px 2px 0px rgba(214, 214, 214, 0.168), 
                  inset -1px -1px 5px 0px rgba(0, 0, 0, 0.108), 
                  inset 0px 0px 35px 0px rgba(135, 135, 135, 0.516), 
                  inset 0px -4px 96px -5px rgba(0, 0, 0, 0.125);
      background: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: brightness(100%);
    }

    .glassCard:before {
      content: '';
      position: absolute;
      transform: translateY(-2%) scale(1.1);
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.649) 50%, rgba(0, 0, 0, 0) 100%);
      transform: rotate(45deg);
      animation: lineShine 4s infinite;
      width: 150%;
      height: 150%;
      top: -250%;
      left: -250%;
    }

    @keyframes lineShine {
      0% {
        transform: translateX(-250%) translateY(-250%) rotate(45deg);
      }

      100% {
        transform: translateX(250%) translateY(250%) rotate(45deg);
      }
    }

    .glassCard p {
      margin-bottom: 5%;
      left: 0;
      right: 0;
      padding: 0 2px;
      letter-spacing: 1px;
      text-align: center;
      font-size: 11px;
      color: #ffffff;
      text-shadow: 0 1px 3px #353535;
    }

    .glassCard img {
      display: flex;
      margin-top: 5%;
      width: 80%;
      aspect-ratio: 1/1;
      background-size: 100% 100%;
      margin-left: 10%;
      margin-bottom: 5%;
      filter: drop-shadow(0 2px 1px rgb(0 55 29 / 25%)) drop-shadow(0 5px 5px rgb(0 22 12 / 15%)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35)) drop-shadow(0 0px 1px rgba(255, 255, 255, 0.168));
    }

    .glassCard h3 {
      display: flex;
      margin-top: 5%;
      margin-left: 5%;
      width: 90%;
      height: 12%;
      border-radius: 4px;
      background: linear-gradient(0deg, #00ff6a24, #00ffd039);
      backdrop-filter: blur(3px) brightness(100%) saturate(100%);
      -webkit-backdrop-filter: blur(20px) brightness(100%) saturate(100%);
      box-shadow: inset 0 1px 0 rgba(0, 255, 89, 0.4),
        inset 1px 0 0 rgba(255, 255, 255, 0.32),
        inset 0 -1px 1px rgba(0, 0, 0, 0.13), inset -1px 0 1px rgba(0, 0, 0, 0.11);
      display: flex;
      color: #ffffff;
      text-shadow: 0 1px 0px #8b8b8b, 0 2px 2px #003a1d, 0 1px 5px #004025, 0 1px 7px #00ff95, 0 1px 7px #00ff95, 0 1px 7px #00ff95, 0 1px 7px #00ff95;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
    }

    .glassCard span {
      color: #30ff83;
      font-size: 13px;
      font-weight: 600;
      text-shadow: 0 2px 2px #003a1d, ;
    }







    /* วิดีโอเฟรม */
    .video-frame {
      border-radius: 0px 0px 15px 15px;
      overflow: hidden;
      box-shadow: 0 30px 20px -8px rgba(0, 0, 0, 0.35), 0 35px 15px -2px rgba(0, 0, 0, 0.125);
      border: 2px solid rgb(255, 255, 255);
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)),
        url("https://images.pexels.com/photos/1370787/pexels-photo-1370787.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
      position: relative;
      aspect-ratio: 4.5/2;
      width: 90%;
      margin-top: -0%;
      margin-left: 5%;
      height: auto;
      z-index: 5;
      animation: videoFloat 2s linear;
    }

    @keyframes videoFloat {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-20px);
      }
    }

    /* วิดีโอเฟรม */
    .video-frame2 {
      border-radius: 17px 0px 0px 17px;
      overflow: hidden;
      box-shadow: 0 30px 20px -8px rgba(0, 0, 0, 0.35), 0 35px 15px -2px rgba(0, 0, 0, 0.125), 0 -15px 35px -2px rgba(255, 255, 255, 0.525), 0 15px 35px -2px rgba(255, 255, 255, 0.525);
      border: 2px solid rgb(255, 255, 255);
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)),
        url("https://images.pexels.com/photos/1370787/pexels-photo-1370787.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
      position: relative;
      aspect-ratio: 5.5/2;
      width: 90%;
      margin-top: 5%;
      margin-left: 12%;
      height: auto;
      z-index: 5;
      opacity: 1;
      animation: videoFloat 2s linear;
    }

    .video-frame .play-circle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    /* ================== FULLSCREEN GAMESHOT ================== */
    .section-gameplay {
      padding: 40px 80px 60px;
      background:
        radial-gradient(circle at top, #222f3a00 0, #050506 55%);
    }

    .big-screen {
      border-radius: 0 14px 14px 0;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
      border: 2px solid rgb(255, 255, 255);
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.4), rgb(0, 0, 0)),
        url("https://images.pexels.com/photos/907173/pexels-photo-907173.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
      min-height: 280px;
      margin-left: -1%;
      margin-top: 10%;
      width: 90%;
      margin-bottom: 10%;
    }

    .big-screen .round-label {
      position: absolute;
      top: 25%;
      left: -6%;
      transform: translateX(0%);
      padding: 6px 16px;
      border-radius: 0 14px 14px 0;
      background: radial-gradient(circle, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.2) 100%);
      border: 1px solid rgba(255, 245, 220, 0.7);
      font-size: 12px;
      z-index: 50;
      letter-spacing: 0.18em;
      text-transform: uppercase;

    }

    /* ================== BETA SIGNUP SECTION ================== */
    .beta-strip {
      background:
        radial-gradient(circle at 50% 0, #1d8c93 0, #033139 50%, #010204 100%);
      padding: 34px 80px 40px;
      text-align: center;
      color: #f8ecce;
      position: relative;
      border-top: 2px solid #ffe591;
    }

    .beta-strip h2 {
      font-family: "Cinzel", serif;
      font-size: 26px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .beta-strip p {
      font-size: 14px;
      color: #f0e1bb;
      max-width: 520px;
      margin: 0 auto 20px;
    }

    .beta-form {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 0;
      max-width: 480px;
      margin: 0 auto;
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9);
    }

    .beta-form input[type="email"] {
      flex: 1;
      padding: 12px 14px;
      border: none;
      font-size: 13px;
      background: rgba(6, 33, 36, 0.9);
      color: #f8ecce;
      outline: none;
    }

    .beta-form input::placeholder {
      color: #9fb9be;
    }

    .beta-form button {
      border: none;
      font-family: "Cinzel", serif;
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 0 22px;
      background: linear-gradient(180deg, #ffdb78 0%, #f4b444 45%, #da8734 100%);
      color: #3f210c;
      cursor: pointer;
      white-space: nowrap;
    }

    .beta-form button:hover {
      filter: brightness(1.05);
    }

    /* ================== bottomZone ================== */
    .bottomZone {
      padding: 30px 5% 40px;
      background: linear-gradient(0deg, #ffffff 0%, #09494679 50%, #000000d6 100%);
      font-size: 11px;
    }

    .borderZone {
      content: "";
      margin-bottom: 2%;
      margin-left: 25%;
      margin-top: -14%;
      width: 50%;
      height: 3px;
      
      background-color: #ffe591;
    }

    .bottomZone-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .bottomZone-logo h3 {
      font-family: "Cinzel", serif;
      font-size: 20px;
      letter-spacing: 0.3em;
      text-indent: 0.3em;
      color: #f5e7c4;
      margin-bottom: 4px;
    }

    .bottomZone-tiles {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .tile {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      background: radial-gradient(circle at 30% 0, #ffe4ba 0, #996c3f 40%, #1c1110 100%);
      box-shadow: 0 18px 26px rgba(0, 0, 0, 0.9);
    }

    .bottomZone-bottom {
      margin-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding-top: 10px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }


    .sponsorBox {
      position: relative;
      width: 28%;
      aspect-ratio: 1.8/1;
    }

    .sponsorBox img {
      position: relative;
      width: 80%;
      aspect-ratio: 5/1;
      margin-bottom: 10%;
    }

    .sponsorBox p {
      position: relative;
      width: 100%;
      height: 50%;
      font-size: 9px;
      letter-spacing: -0.1px;
      font-weight: 500;
      color: #686868;
    }


    .cardGlass {
      position: relative;
      margin-left: 2.5%;
      margin-right: 2.5%;
      margin-top: 5%;
      margin-bottom: 3%;
      width: 95%;
      border-radius: 17px;
      box-shadow: 0 30px 10px -8px rgba(0, 16, 10, 0.121), 0 30px 15px -2px rgba(0, 0, 0, 0.119), inset 1px 1px 1px 0px rgba(255, 255, 255, 0.496), inset -1px -1px 1px 0px rgba(255, 255, 255, 0.586), inset -1px -1px 1px 0px rgba(67, 67, 67, 0.108), inset 2px 2px 2px 0px rgba(227, 255, 248, 0.224), inset -2px -2px 2px 0px rgba(255, 255, 255, 0.389), inset -1px -1px 5px 0px rgba(162, 162, 162, 0.108), inset 0px 0px 35px 0px rgba(0, 20, 13, 0.216), inset 0px -4px 16px -35px rgba(183, 183, 183, 0.208);
      backdrop-filter: brightness(100%);
      -webkit-backdrop-filter: brightness(100%);
      background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%),
                  linear-gradient(0deg, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0) 100%),
                  linear-gradient(0deg,
                    rgba(153, 153, 153, 0.03) 0%,
                    rgba(153, 153, 153, 0.03) 100%);

    }





    .logo-container {
      margin-top: 7px;
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
    }

    .logo {
      width: 50px;
      height: 50px;
      background: linear-gradient(45deg, #00C851, #007E33);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: bold;
      box-shadow: 0 0 20px rgba(0, 200, 81, 0.5);
      animation: logoGlow 2s ease-in-out infinite alternate;
    }

    @keyframes logoGlow {
      0% {
        box-shadow: 0 0 20px rgba(0, 200, 81, 0.5);
      }

      100% {
        box-shadow: 0 0 30px rgba(0, 200, 81, 0.8);
      }
    }

    .logo-text {
      font-size: 1.5rem;
      font-weight: 600;
      background: linear-gradient(45deg, #00C851, #00ff6a, #007E33);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 20px rgba(0, 200, 81, 0.3);
    }

    .input-icon {
      position: absolute;
      right: 1rem;
      top: 2.8rem;
      color: #d5d5d5;
      font-size: 0.9rem;
    }

    .popup-login {
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(6px);
      padding: 20px;
      margin-left: 30px;
      margin-right: 30px;
      margin-top: 30px;
      border-radius: 25px;
      width: 70%;
      max-width: 400px;
      text-align: center;
      box-shadow: 0 0 20px rgba(0, 200, 81, 0.5);
      animation: fadeInDown 1.2s;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    .popup-register {
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(6px);
      padding: 20px;
      margin-left: 15px;
      margin-right: 15px;
      margin-top: 15px;
      border-radius: 25px;
      width: 85%;
      max-width: 700px;
      text-align: center;
      box-shadow: 0 0 20px rgba(0, 200, 81, 0.5);
      animation: fadeInDown 1.2s;
    }

    .popup-logo {
      align-items: center;
      justify-content: center;
      width: 90px;
      margin-bottom: 10px;
      border-radius: 50%;
      /* ทำให้เป็นทรงกลม */
      filter: drop-shadow(0 0 5px rgb(0, 63, 6));
      animation: glowLogo 2s infinite;
    }

    h2 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 20px;
      color: white;
    }

    input[type="text"],
    input[type="password"],
    input[type="tel"] {
      width: 100%;
      padding: 9px;
      font-size: 14px;
      border-radius: 12px;
      box-shadow: inset 0 0 0 2px rgb(45, 131, 53);
      background-color: #686868;
      color: rgb(255, 255, 255);
      margin-bottom: 10px;
    }

    input[type="text2"],
    input[type="pin"] {
      width: 50%;
      padding: 9px;
      font-size: 14px;
      border-radius: 12px;
      box-shadow: inset 0 0 0 2px rgb(45, 131, 53);
      background-color: #686868;
      color: rgb(255, 255, 255);
      margin-bottom: 10px;
    }

    .row {
      white-space: nowrap;
    }

    select {
      width: 100%;
      padding: 11px;
      font-size: 11px;
      border-radius: 8px;
      box-shadow: inset 0 0 0 2px rgb(45, 131, 53);
      background-color: #686868;
      color: rgb(147, 147, 147);
      margin-bottom: 10px;
    }

    .login-btn {
      width: 100%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--select) 100%);
      color: white;
      border: none;
      padding: 1rem;
      border-radius: 10px;
      font-family: 'Kanit', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 12px rgba(15, 76, 129, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      animation: modalPop 0.5s cubic-bezier(.4, 2, .6, 1) forwards;
    }

    @keyframes modalPop {
      from {
        opacity: 0;
        transform: perspective(800px) translateY(30px) scale(0.98) rotateX(8deg);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    .login-btn:hover {
      color: #00ffaa;
      background: #0b4713;
      box-shadow: 0 4px 12px rgba(0, 255, 157, 0.632);
    }


    .login-popup-overlay {
      position: fixed;
      inset: 0;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
    }

    button.close-btn {
      position: absolute;
      top: 7px;
      right: 20px;
      background: transparent;
      color: white;
      font-size: 24px;
      border: none;
      cursor: pointer;
      transition: color 0.2s;
    }

    button.close-btn:hover {
      color: red;
    }

    .remember-forgot {
      width: 90%;
      display: flex;
      flex-direction: wrap;
      justify-content: space-between;
      gap: 0.8rem;
      margin-bottom: 1.5rem;
      font-size: 0.9rem;
    }

    .remember-and-forgot input[type="checkbox"] {
      margin-right: 6px;
      transform: scale(1.2);
      accent-color: rgb(255, 225, 0)
    }

    .remember-me {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: white;
    }

    .btn-outline {
      background: rgba(255, 0, 0, 0.795);
      box-shadow: 0 0 10px rgb(255, 0, 0);
      color: rgb(255, 255, 255);
      font-weight: bold;
      font-size: 24px;
      padding: 9px;
      border: 2px solid rgb(255, 0, 0);
      border-radius: 30px;
      cursor: pointer;
      transition: 0.3s;
      margin-top: 10px;
    }

    .hidden {
      display: none !important;
    }

    /* Bottom Bar */
    .bottom-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(15px);
      padding: 5px 14px;
      z-index: 1000;
      display: flex;
      justify-content: center;
      transition: all 0.3s ease;
      gap: 20px;
    }

    .btn {
      display: flex;
      width: 25%;
      padding: 4px 14px;
      border: none;
      border-radius: 50px;
      font-size: 11px;
      font-weight: 400;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 30px 10px -8px rgba(0, 16, 10, 0.121),
        0 30px 15px -2px rgba(0, 0, 0, 0.119),
        inset 1px 1px 1px 0px rgba(255, 255, 255, 0.692),
        inset -1px -1px 2px 0px rgba(255, 255, 255, 0.65),
        inset -1px -1px 1px 0px rgba(67, 67, 67, 0.108),
        inset 2px 2px 2px 0px rgba(227, 255, 248, 0.224),
        inset -2px -2px 2px 0px rgba(255, 255, 255, 0.389),
        inset -1px -1px 5px 0px rgba(162, 162, 162, 0.108),
        inset 0px -30px 30px 0px rgba(81, 105, 97, 0.268),
        inset 0px -4px 33px -4px rgba(85, 85, 85, 0.208);
      backdrop-filter: brightness(100%);
      -webkit-backdrop-filter: brightness(100%);
      background: linear-gradient(0deg, rgba(255, 255, 255, 0.387) 0%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(0deg, rgba(51, 51, 51, 0) 0%, rgba(229, 229, 229, 0.271) 100%),
        linear-gradient(0deg,
          rgba(153, 153, 153, 0.03) 0%,
          rgba(199, 199, 199, 0.348) 100%);
    }

    .btn-register {
      text-align: center;
      align-items: center;
      justify-content: center;
    }

    .btn-login {
      text-align: center;
      align-items: center;
      justify-content: center;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(0, 200, 81, 0.6);
    }

    .btn-login:hover {
      background: rgba(255, 255, 255, 0.2);
      box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    }

    .register-link {
      text-align: center;
      margin-top: 1.2rem;
      font-size: 0.7rem;
    }

    .register-link a {
      color: var(--primary);
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
    }


    /* Floating Contact Button */
    .floating-contact {
      position: fixed;
      right: 2%;
      bottom: 11%;
      transform: translateY(80%);
      z-index: 998;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .line-button {
      width: 45px;
      height: 45px;
      background: #00c30000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0px 0px rgba(255, 255, 255, 0);
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      position: relative;
    }

    .line-button:hover {
      transform: scale(1.1);
      box-shadow: 0 0px 15px rgb(100, 255, 177);
    }


    .line-button img {
      width: 100%;
      height: 100%;
      position: relative;
      z-index: 1;
    }

    .line-tooltip {
      position: absolute;
      right: 110%;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.378);
      color: white;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 9px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .line-button:hover .line-tooltip {
      opacity: 1;
    }

    .line-tooltip::after {
      content: '';
      position: absolute;
      right: 40%;
      top: 120%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-top: 4px solid rgb(0, 0, 0);
      border-bottom: 4px solid transparent;
      border-right: 4px solid rgb(0, 0, 0);
    }

    /* Pulse animation */
    .line-button::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: #62ff00;
      transform: translate(-50%, -50%);
      opacity: 0;
      animation: linePulse 1s infinite;
      z-index: 0;
    }

    @keyframes linePulse {
      0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }

      100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
      }
    }

    /* ================== RESPONSIVE ================== */
    @media (max-width: 960px) {
      .hero {
        padding: 28px 20px 46px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .card-stack {
        margin: 0 auto;
      }

      .main-nav-wrapper {
        padding: 0 12px 8px;
      }

      .main-nav {
        flex-direction: column;
        gap: 8px;
        font-size: 11px;
      }

      .section,
      .section-gameplay,
      .beta-strip,
      footer {
        padding-inline: 20px;
      }

      .section-inner {
        grid-template-columns: 1fr;
      }

      .boxAnimateZone {
        justify-content: center;
      }

      .section-body,
      .section-title {
        text-align: center;
        margin-inline: auto;
      }

      .link-underline {
        justify-content: center;
      }

      .header-display,
      .TOP-profit {
        width: 100%;
      }
    }

    @media (max-width: 640px) {
      .top-bar {
        justify-content: center;
        flex-wrap: wrap;
        padding-inline: 10px;
      }

      .beta-form {
        flex-direction: column;
      }

      .beta-form button {
        width: 100%;
        padding-block: 10px;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }