/* roulang page: index */
:root{
      --bg:#0b0d16;
      --bg-soft:#111521;
      --surface:#ffffff;
      --surface-2:#f7f4ef;
      --surface-dark:#151927;
      --text:#1b1f2a;
      --text-soft:#687083;
      --muted:#9aa3b5;
      --line:rgba(255,255,255,.14);
      --line-light:#e9e3d9;
      --primary:#9b1b43;
      --primary-2:#d73c69;
      --accent:#f7c96b;
      --accent-2:#ffefbd;
      --success:#16a36d;
      --warning:#ff9f43;
      --danger:#e64f64;
      --radius-sm:12px;
      --radius:22px;
      --radius-lg:32px;
      --shadow:0 22px 60px rgba(15,23,42,.14);
      --shadow-dark:0 30px 90px rgba(0,0,0,.42);
      --container:1180px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 0%, rgba(155,27,67,.18), transparent 30%),
        radial-gradient(circle at 92% 3%, rgba(247,201,107,.18), transparent 26%),
        #fbfaf7;
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    button{border:0;cursor:pointer}
    ::selection{background:var(--accent);color:#1a1020}

    .container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(11,13,22,.86);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,255,255,.09);
      box-shadow:0 12px 40px rgba(0,0,0,.18);
    }
    .nav-wrap{
      height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      color:#fff;
      font-weight:900;
      letter-spacing:.01em;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      background:
        linear-gradient(145deg, rgba(247,201,107,.95), rgba(215,60,105,.95)),
        #f7c96b;
      color:#1d1018;
      box-shadow:0 12px 30px rgba(215,60,105,.26);
      flex:none;
    }
    .brand-text{
      max-width:320px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      font-size:17px;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:8px;
      color:rgba(255,255,255,.76);
    }
    .nav-link,.mega-trigger{
      position:relative;
      padding:10px 14px;
      border-radius:999px;
      transition:all .24s var(--ease);
      font-weight:700;
      font-size:15px;
    }
    .nav-link:hover,.mega-trigger:hover,.nav-link.active{
      color:#fff;
      background:rgba(255,255,255,.1);
    }
    .nav-link.active::after{
      content:"";
      position:absolute;
      left:18px;
      right:18px;
      bottom:6px;
      height:2px;
      border-radius:99px;
      background:var(--accent);
    }
    .mega{
      position:relative;
    }
    .mega-panel{
      position:absolute;
      top:calc(100% + 14px);
      right:0;
      width:420px;
      padding:16px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:24px;
      background:rgba(17,21,33,.96);
      box-shadow:var(--shadow-dark);
      opacity:0;
      transform:translateY(10px);
      pointer-events:none;
      transition:all .25s var(--ease);
      color:#fff;
    }
    .mega:hover .mega-panel,.mega:focus-within .mega-panel{
      opacity:1;
      transform:translateY(0);
      pointer-events:auto;
    }
    .mega-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .mega-card{
      border:1px solid rgba(255,255,255,.1);
      border-radius:18px;
      padding:14px;
      background:rgba(255,255,255,.06);
      transition:all .22s var(--ease);
    }
    .mega-card:hover{
      transform:translateY(-2px);
      background:rgba(255,255,255,.1);
      border-color:rgba(247,201,107,.45);
    }
    .mega-card strong{display:block;font-size:14px;margin-bottom:4px}
    .mega-card span{display:block;color:rgba(255,255,255,.66);font-size:12px;line-height:1.55}

    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .search-mini{
      display:flex;
      align-items:center;
      gap:8px;
      height:42px;
      padding:0 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.07);
      color:#fff;
    }
    .search-mini input{
      width:150px;
      border:0;
      outline:0;
      background:transparent;
      color:#fff;
      font-size:14px;
    }
    .search-mini input::placeholder{color:rgba(255,255,255,.52)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:12px 18px;
      border-radius:999px;
      font-weight:800;
      transition:all .24s var(--ease);
      white-space:nowrap;
      user-select:none;
    }
    .btn:focus-visible,.nav-link:focus-visible,.mega-trigger:focus-visible,input:focus-visible{
      outline:3px solid rgba(247,201,107,.6);
      outline-offset:3px;
    }
    .btn-primary{
      color:#211219;
      background:linear-gradient(135deg, var(--accent), #ffdd89);
      box-shadow:0 14px 30px rgba(247,201,107,.2);
    }
    .btn-primary:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(247,201,107,.32);
    }
    .btn-secondary{
      color:#fff;
      border:1px solid rgba(255,255,255,.2);
      background:rgba(255,255,255,.09);
    }
    .btn-secondary:hover{background:rgba(255,255,255,.15);transform:translateY(-2px)}
    .btn-dark{
      color:#fff;
      background:linear-gradient(135deg, #191f31, #10131f);
      box-shadow:0 16px 36px rgba(15,23,42,.18);
    }
    .btn-dark:hover{transform:translateY(-2px);box-shadow:0 20px 46px rgba(15,23,42,.24)}
    .mobile-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:15px;
      background:rgba(255,255,255,.08);
      color:#fff;
      align-items:center;
      justify-content:center;
    }
    .mobile-menu{
      display:none;
      padding:0 0 18px;
      color:#fff;
    }
    .mobile-menu.open{display:block}
    .mobile-menu a,.mobile-menu button{
      display:flex;
      width:100%;
      align-items:center;
      justify-content:space-between;
      padding:14px 16px;
      border-radius:16px;
      background:rgba(255,255,255,.07);
      margin-top:8px;
      color:#fff;
    }

    .hero{
      position:relative;
      min-height:720px;
      padding:86px 0 70px;
      overflow:hidden;
      color:#fff;
      background:
        linear-gradient(90deg, rgba(9,11,20,.98) 0%, rgba(9,11,20,.88) 42%, rgba(9,11,20,.24) 100%),
        radial-gradient(circle at 70% 22%, rgba(215,60,105,.4), transparent 30%),
        radial-gradient(circle at 86% 70%, rgba(247,201,107,.28), transparent 34%),
        linear-gradient(135deg, #0a0d17, #2a1020 54%, #090b14);
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      opacity:.38;
      background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size:54px 54px;
      mask-image:linear-gradient(to bottom, #000, transparent 80%);
    }
    .hero-stage{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:minmax(0, .95fr) minmax(420px, 1.05fr);
      gap:46px;
      align-items:center;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:999px;
      background:rgba(247,201,107,.13);
      border:1px solid rgba(247,201,107,.28);
      color:#ffe1a0;
      font-weight:800;
      font-size:14px;
    }
    .hero h1{
      margin:22px 0 18px;
      max-width:780px;
      font-size:clamp(38px, 5.6vw, 72px);
      line-height:1.06;
      letter-spacing:-.055em;
      font-weight:950;
    }
    .hero-lead{
      max-width:720px;
      color:rgba(255,255,255,.76);
      font-size:18px;
      line-height:2;
      margin:0 0 28px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-bottom:28px;
    }
    .hero-data{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:12px;
      max-width:680px;
    }
    .data-chip{
      padding:16px;
      border-radius:20px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.07);
      backdrop-filter:blur(10px);
    }
    .data-chip strong{
      display:block;
      font-size:24px;
      line-height:1;
      color:#fff;
      margin-bottom:8px;
    }
    .data-chip span{
      color:rgba(255,255,255,.62);
      font-size:13px;
    }
    .poster-wall{
      position:relative;
      min-height:530px;
      perspective:1200px;
    }
    .main-poster{
      position:absolute;
      right:7%;
      top:8%;
      width:min(360px, 72vw);
      min-height:500px;
      border-radius:34px;
      padding:22px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.14), transparent 34%),
        radial-gradient(circle at 50% 18%, rgba(247,201,107,.45), transparent 34%),
        linear-gradient(160deg, #281020, #8b1e3f 48%, #0b0d16);
      box-shadow:0 44px 100px rgba(0,0,0,.58);
      border:1px solid rgba(255,255,255,.18);
      transform:rotateY(-10deg) rotateZ(1deg);
      overflow:hidden;
    }
    .main-poster::after{
      content:"";
      position:absolute;
      inset:auto -24% -20% -24%;
      height:46%;
      background:radial-gradient(circle, rgba(247,201,107,.32), transparent 62%);
      filter:blur(6px);
    }
    .poster-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
      position:relative;
      z-index:2;
    }
    .heat-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 12px;
      border-radius:999px;
      color:#2a131a;
      background:linear-gradient(135deg, #ffe5a1, #f7c96b);
      font-weight:900;
      font-size:13px;
    }
    .adult-badge{
      border:1px solid rgba(255,255,255,.24);
      color:rgba(255,255,255,.8);
      padding:7px 10px;
      border-radius:999px;
      font-weight:800;
      font-size:12px;
    }
    .poster-title{
      position:absolute;
      left:22px;
      right:22px;
      bottom:28px;
      z-index:2;
    }
    .poster-title h2{
      font-size:36px;
      line-height:1.15;
      font-weight:950;
      letter-spacing:-.04em;
      margin:0 0 10px;
    }
    .poster-title p{
      color:rgba(255,255,255,.7);
      margin:0 0 18px;
      font-size:14px;
    }
    .poster-meter{
      height:9px;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      overflow:hidden;
    }
    .poster-meter span{
      display:block;
      height:100%;
      width:78%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--accent), var(--primary-2));
    }
    .side-poster{
      position:absolute;
      width:190px;
      height:270px;
      border-radius:26px;
      background:linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.04)), #171b2b;
      border:1px solid rgba(255,255,255,.12);
      box-shadow:0 30px 70px rgba(0,0,0,.38);
      overflow:hidden;
    }
    .side-poster::before{
      content:"";
      position:absolute;
      inset:20px;
      border-radius:20px;
      background:linear-gradient(145deg, rgba(247,201,107,.32), rgba(215,60,105,.36));
    }
    .poster-a{left:3%;top:18%;transform:rotateZ(-8deg)}
    .poster-b{left:18%;bottom:4%;transform:rotateZ(7deg);opacity:.86}
    .floating-note{
      position:absolute;
      right:0;
      bottom:5%;
      width:245px;
      padding:16px;
      border-radius:24px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.16);
      backdrop-filter:blur(14px);
      box-shadow:var(--shadow-dark);
    }
    .floating-note strong{display:block;margin-bottom:5px}
    .floating-note span{font-size:13px;color:rgba(255,255,255,.68)}

    .section{
      padding:92px 0;
      position:relative;
    }
    .section-tight{padding:70px 0}
    .section-dark{
      background:
        radial-gradient(circle at 20% 20%, rgba(155,27,67,.22), transparent 28%),
        linear-gradient(180deg, #111521, #090b14);
      color:#fff;
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      gap:28px;
      align-items:flex-end;
      margin-bottom:34px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      font-weight:900;
      margin-bottom:10px;
      letter-spacing:.02em;
    }
    .section-dark .section-kicker{color:#ffe1a0}
    .section-title{
      margin:0;
      font-size:clamp(28px, 3.6vw, 46px);
      line-height:1.2;
      letter-spacing:-.04em;
      font-weight:950;
    }
    .section-desc{
      max-width:620px;
      color:var(--text-soft);
      margin:10px 0 0;
      font-size:16px;
      line-height:1.9;
    }
    .section-dark .section-desc{color:rgba(255,255,255,.68)}

    .play-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:22px;
      align-items:stretch;
    }
    .steps-panel{
      background:#fff;
      border:1px solid var(--line-light);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      padding:30px;
    }
    .step-row{
      display:grid;
      grid-template-columns:70px 1fr;
      gap:18px;
      padding:18px 0;
      border-bottom:1px solid #eee7dc;
    }
    .step-row:last-child{border-bottom:0}
    .step-num{
      width:54px;
      height:54px;
      display:grid;
      place-items:center;
      border-radius:18px;
      color:#2a121a;
      background:linear-gradient(135deg, var(--accent), #ffe6aa);
      font-weight:950;
      box-shadow:0 12px 28px rgba(247,201,107,.28);
    }
    .step-row h3{
      margin:0 0 6px;
      font-size:19px;
      font-weight:900;
    }
    .step-row p{
      margin:0;
      color:var(--text-soft);
      font-size:15px;
    }
    .rule-card{
      border-radius:var(--radius-lg);
      padding:30px;
      background:
        linear-gradient(180deg, rgba(155,27,67,.94), rgba(25,31,49,.96)),
        #191f31;
      color:#fff;
      min-height:100%;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .rule-card::after{
      content:"";
      position:absolute;
      width:220px;height:220px;
      border-radius:50%;
      background:rgba(247,201,107,.18);
      right:-70px;bottom:-80px;
      filter:blur(2px);
    }
    .rule-card h3{font-size:28px;line-height:1.2;margin:0 0 14px;font-weight:950}
    .rule-card p{color:rgba(255,255,255,.72);margin:0 0 22px}
    .rule-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .rule-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px;
      border-radius:16px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.1);
      font-size:14px;
    }

    .reward-wrap{
      display:grid;
      grid-template-columns:.86fr 1.14fr;
      gap:24px;
      align-items:center;
    }
    .reward-visual{
      min-height:430px;
      border-radius:var(--radius-lg);
      background:
        radial-gradient(circle at 22% 18%, rgba(247,201,107,.32), transparent 30%),
        radial-gradient(circle at 78% 70%, rgba(215,60,105,.24), transparent 35%),
        linear-gradient(135deg, #171b2b, #0b0d16);
      border:1px solid rgba(255,255,255,.1);
      box-shadow:var(--shadow-dark);
      position:relative;
      overflow:hidden;
      padding:28px;
    }
    .reward-visual .ticket{
      position:absolute;
      width:250px;
      padding:20px;
      border-radius:26px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.16);
      backdrop-filter:blur(12px);
      color:#fff;
    }
    .ticket strong{display:block;font-size:28px;font-weight:950;margin-bottom:6px;color:#ffe09a}
    .ticket span{color:rgba(255,255,255,.68);font-size:14px}
    .ticket-1{left:34px;top:42px;transform:rotate(-5deg)}
    .ticket-2{right:30px;top:145px;transform:rotate(6deg)}
    .ticket-3{left:80px;bottom:44px;transform:rotate(2deg)}
    .reward-cards{
      display:grid;
      gap:14px;
    }
    .reward-card{
      display:grid;
      grid-template-columns:92px 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px;
      border-radius:24px;
      border:1px solid var(--line-light);
      background:#fff;
      box-shadow:0 12px 30px rgba(15,23,42,.06);
      transition:all .24s var(--ease);
    }
    .reward-card:hover{
      transform:translateX(4px);
      box-shadow:var(--shadow);
      border-color:#ead1a1;
    }
    .reward-level{
      display:grid;
      place-items:center;
      height:64px;
      border-radius:18px;
      background:#fbf1dc;
      color:#8b1e3f;
      font-weight:950;
    }
    .reward-card h3{margin:0 0 5px;font-size:18px;font-weight:900}
    .reward-card p{margin:0;color:var(--text-soft);font-size:14px}
    .reward-tag{
      padding:8px 11px;
      border-radius:999px;
      background:#f6eee2;
      color:#7a3550;
      font-size:13px;
      font-weight:900;
    }

    .progress-layout{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
    }
    .panel{
      border-radius:var(--radius-lg);
      border:1px solid var(--line-light);
      background:#fff;
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .panel-pad{padding:28px}
    .progress-main{
      background:
        radial-gradient(circle at 85% 12%, rgba(247,201,107,.28), transparent 28%),
        linear-gradient(135deg, #fff, #fff7e8);
    }
    .progress-head{
      display:flex;
      justify-content:space-between;
      gap:18px;
      align-items:center;
      margin-bottom:22px;
    }
    .progress-head h3{margin:0;font-size:24px;font-weight:950}
    .countdown{
      display:flex;
      gap:8px;
      align-items:center;
      flex-wrap:wrap;
    }
    .countdown b{
      display:grid;
      place-items:center;
      min-width:38px;
      height:38px;
      border-radius:12px;
      color:#fff;
      background:#151927;
      font-size:15px;
    }
    .bar{
      height:14px;
      border-radius:999px;
      background:#eadfce;
      overflow:hidden;
      margin:12px 0 14px;
    }
    .bar span{
      display:block;
      height:100%;
      width:78%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--primary-2), var(--accent));
    }
    .member-line{
      display:flex;
      justify-content:space-between;
      color:var(--text-soft);
      font-size:14px;
      margin-bottom:24px;
    }
    .hot-list{
      display:grid;
      gap:12px;
    }
    .hot-item{
      display:grid;
      grid-template-columns:1fr auto;
      gap:12px;
      align-items:center;
      padding:14px;
      border-radius:18px;
      background:#fbf8f2;
      border:1px solid #eee3d3;
    }
    .hot-item strong{display:block;font-weight:900}
    .hot-item span{display:block;color:var(--text-soft);font-size:13px}
    .mini-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:8px 12px;
      border-radius:999px;
      color:#fff;
      background:var(--primary);
      font-size:13px;
      font-weight:900;
      transition:all .22s var(--ease);
    }
    .mini-btn:hover{background:#761531;transform:translateY(-1px)}

    .rank-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0 10px;
    }
    .rank-table th{
      color:var(--text-soft);
      font-size:13px;
      text-align:left;
      padding:0 12px 2px;
      font-weight:800;
    }
    .rank-table td{
      background:#fbf8f2;
      padding:14px 12px;
      border-top:1px solid #eee3d3;
      border-bottom:1px solid #eee3d3;
      font-size:14px;
    }
    .rank-table td:first-child{
      border-left:1px solid #eee3d3;
      border-radius:16px 0 0 16px;
      font-weight:950;
      color:var(--primary);
    }
    .rank-table td:last-child{
      border-right:1px solid #eee3d3;
      border-radius:0 16px 16px 0;
      color:var(--text-soft);
    }

    .news-layout{
      display:grid;
      grid-template-columns:1.3fr .7fr;
      gap:24px;
    }
    .news-list{
      display:grid;
      gap:12px;
    }
    .news-item{
      display:grid;
      grid-template-columns:112px 1fr auto;
      align-items:center;
      gap:16px;
      padding:17px 18px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line-light);
      transition:all .24s var(--ease);
    }
    .news-item:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(15,23,42,.09);
      border-color:#e8cc98;
    }
    .news-date{
      color:var(--primary);
      font-weight:950;
      font-size:14px;
    }
    .news-item h3{
      margin:0 0 4px;
      font-size:17px;
      font-weight:900;
      line-height:1.35;
    }
    .news-item p{
      margin:0;
      color:var(--text-soft);
      font-size:14px;
      line-height:1.65;
    }
    .arrow{
      width:36px;height:36px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:#f7efe2;
      color:#7a3550;
      transition:all .22s var(--ease);
    }
    .news-item:hover .arrow{
      background:var(--primary);
      color:#fff;
    }
    .recommend-box{
      background:#151927;
      color:#fff;
      border-radius:var(--radius-lg);
      padding:26px;
      box-shadow:var(--shadow);
      position:sticky;
      top:96px;
      border:1px solid rgba(255,255,255,.12);
    }
    .recommend-box h3{
      margin:0 0 14px;
      font-size:22px;
      font-weight:950;
    }
    .recommend-box p{
      color:rgba(255,255,255,.68);
      margin:0 0 20px;
      font-size:14px;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:22px;
    }
    .tag{
      display:inline-flex;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      color:rgba(255,255,255,.76);
      font-size:13px;
      border:1px solid rgba(255,255,255,.1);
    }
    .calendar{
      display:grid;
      gap:12px;
    }
    .cal-item{
      display:grid;
      grid-template-columns:68px 1fr;
      gap:14px;
      padding:16px;
      border-radius:20px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.1);
    }
    .cal-date{
      display:grid;
      place-items:center;
      border-radius:16px;
      background:rgba(247,201,107,.16);
      color:#ffe1a0;
      font-weight:950;
      min-height:58px;
    }
    .cal-item strong{display:block;margin-bottom:3px}
    .cal-item span{display:block;color:rgba(255,255,255,.62);font-size:13px;line-height:1.55}

    .compare-wrap{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:24px;
      align-items:start;
    }
    .compare-copy{
      border-radius:var(--radius-lg);
      padding:30px;
      background:
        radial-gradient(circle at 80% 20%, rgba(247,201,107,.28), transparent 30%),
        #fff;
      border:1px solid var(--line-light);
      box-shadow:var(--shadow);
    }
    .compare-copy h3{font-size:28px;line-height:1.25;margin:0 0 12px;font-weight:950}
    .compare-copy p{color:var(--text-soft);margin:0 0 18px}
    .compare-table{
      overflow:hidden;
      border-radius:var(--radius-lg);
      border:1px solid var(--line-light);
      box-shadow:var(--shadow);
      background:#fff;
    }
    .compare-row{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      border-bottom:1px solid #eee7dc;
    }
    .compare-row:last-child{border-bottom:0}
    .compare-row > div{
      padding:18px;
      border-right:1px solid #eee7dc;
      min-height:70px;
      display:flex;
      align-items:center;
    }
    .compare-row > div:last-child{border-right:0}
    .compare-row.head{
      background:#151927;
      color:#fff;
      font-weight:950;
    }
    .compare-row:not(.head) > div:first-child{
      font-weight:900;
      color:#7a3550;
      background:#fff9ed;
    }
    .check{color:var(--success);font-weight:950}
    .warn{color:#a15d00;font-weight:900}

    .safe-grid{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:16px;
    }
    .safe-card{
      padding:22px;
      border-radius:26px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.11);
      transition:all .24s var(--ease);
    }
    .safe-card:hover{
      transform:translateY(-4px);
      background:rgba(255,255,255,.1);
      border-color:rgba(247,201,107,.35);
    }
    .safe-icon{
      width:50px;height:50px;
      border-radius:18px;
      display:grid;
      place-items:center;
      background:rgba(247,201,107,.16);
      color:#ffe1a0;
      font-size:24px;
      margin-bottom:14px;
    }
    .safe-card h3{margin:0 0 8px;font-size:18px;font-weight:950}
    .safe-card p{margin:0;color:rgba(255,255,255,.66);font-size:14px;line-height:1.75}

    .faq-grid{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:24px;
      align-items:start;
    }
    .faq-aside{
      border-radius:var(--radius-lg);
      padding:30px;
      background:#fff;
      box-shadow:var(--shadow);
      border:1px solid var(--line-light);
    }
    .faq-aside h3{font-size:28px;margin:0 0 12px;font-weight:950}
    .faq-aside p{margin:0;color:var(--text-soft)}
    .faq-list{
      display:grid;
      gap:12px;
    }
    .faq-item{
      border-radius:24px;
      border:1px solid var(--line-light);
      background:#fff;
      box-shadow:0 12px 30px rgba(15,23,42,.05);
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      display:flex;
      justify-content:space-between;
      gap:18px;
      align-items:center;
      padding:20px 22px;
      background:#fff;
      color:var(--text);
      text-align:left;
      font-weight:950;
    }
    .faq-q:hover{background:#fff9ed}
    .faq-a{
      display:none;
      padding:0 22px 22px;
      color:var(--text-soft);
      font-size:15px;
    }
    .faq-item.open .faq-a{display:block}
    .faq-item.open .faq-q span:last-child{transform:rotate(45deg)}
    .faq-q span:last-child{transition:transform .22s var(--ease);font-size:22px;color:var(--primary)}

    .cta{
      padding:84px 0;
      background:#fbfaf7;
    }
    .cta-card{
      position:relative;
      overflow:hidden;
      border-radius:38px;
      color:#fff;
      padding:46px;
      background:
        radial-gradient(circle at 16% 18%, rgba(247,201,107,.34), transparent 26%),
        radial-gradient(circle at 86% 74%, rgba(215,60,105,.36), transparent 30%),
        linear-gradient(135deg, #111521, #390f22);
      box-shadow:var(--shadow-dark);
      border:1px solid rgba(255,255,255,.12);
    }
    .cta-card::after{
      content:"";
      position:absolute;
      width:420px;height:420px;
      border-radius:50%;
      background:rgba(255,255,255,.06);
      right:-130px;top:-160px;
    }
    .cta-content{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1fr 390px;
      gap:34px;
      align-items:center;
    }
    .cta h2{
      margin:0 0 14px;
      font-size:clamp(30px, 4vw, 52px);
      line-height:1.16;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .cta p{
      max-width:720px;
      margin:0;
      color:rgba(255,255,255,.72);
      line-height:1.95;
    }
    .signup-box{
      padding:20px;
      border-radius:28px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(12px);
    }
    .signup-box label{
      display:block;
      color:rgba(255,255,255,.82);
      font-size:14px;
      font-weight:900;
      margin-bottom:10px;
    }
    .signup-form{
      display:grid;
      gap:10px;
    }
    .signup-form input{
      width:100%;
      min-height:48px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.1);
      color:#fff;
      padding:0 14px;
      outline:0;
    }
    .signup-form input::placeholder{color:rgba(255,255,255,.5)}
    .form-note{
      min-height:20px;
      color:#ffe1a0;
      font-size:13px;
      margin-top:8px;
    }

    .footer{
      color:#cbd2df;
      background:#090b14;
      border-top:1px solid rgba(255,255,255,.09);
      padding:48px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr .9fr;
      gap:30px;
      margin-bottom:30px;
    }
    .footer-brand{
      display:flex;
      gap:12px;
      align-items:center;
      color:#fff;
      font-weight:950;
      margin-bottom:14px;
    }
    .footer p{
      color:rgba(255,255,255,.58);
      margin:0;
      font-size:14px;
      line-height:1.85;
    }
    .footer h3{
      color:#fff;
      margin:0 0 14px;
      font-size:16px;
      font-weight:950;
    }
    .footer-links{
      display:grid;
      gap:9px;
      font-size:14px;
    }
    .footer-links a,.footer-links span{
      color:rgba(255,255,255,.62);
      transition:color .22s var(--ease);
    }
    .footer-links a:hover{color:#ffe1a0}
    .footer-bottom{
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.09);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.48);
      font-size:13px;
    }

    .floating-cta{
      position:fixed;
      left:50%;
      bottom:18px;
      transform:translateX(-50%);
      z-index:45;
      display:flex;
      align-items:center;
      gap:12px;
      padding:10px 12px 10px 18px;
      border-radius:999px;
      color:#fff;
      background:rgba(17,21,33,.9);
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(16px);
      box-shadow:0 18px 50px rgba(0,0,0,.28);
    }
    .floating-cta span{font-size:14px;color:rgba(255,255,255,.76)}
    .floating-cta strong{color:#ffe1a0}

    @media (max-width:1024px){
      .search-mini{display:none}
      .hero-stage{grid-template-columns:1fr;gap:34px}
      .poster-wall{min-height:520px}
      .main-poster{right:13%;top:0}
      .play-grid,.reward-wrap,.progress-layout,.news-layout,.compare-wrap,.faq-grid,.cta-content{
        grid-template-columns:1fr;
      }
      .safe-grid{grid-template-columns:repeat(2,1fr)}
      .recommend-box{position:relative;top:auto}
      .cta-content{gap:26px}
    }

    @media (max-width:768px){
      .container{width:min(100% - 28px, var(--container))}
      .desktop-nav,.nav-actions .btn-primary{display:none}
      .mobile-toggle{display:flex}
      .nav-wrap{height:68px}
      .brand-text{max-width:220px;font-size:15px}
      .hero{min-height:auto;padding:58px 0 56px}
      .hero h1{font-size:40px}
      .hero-lead{font-size:16px}
      .hero-data{grid-template-columns:1fr;max-width:none}
      .poster-wall{min-height:430px}
      .main-poster{
        position:relative;
        right:auto;
        top:auto;
        width:100%;
        min-height:430px;
        transform:none;
      }
      .side-poster,.floating-note{display:none}
      .section{padding:68px 0}
      .section-head{display:block}
      .section-desc{font-size:15px}
      .reward-card{grid-template-columns:74px 1fr}
      .reward-tag{grid-column:2}
      .news-item{grid-template-columns:1fr;gap:8px}
      .arrow{display:none}
      .compare-row{grid-template-columns:1fr}
      .compare-row > div{
        border-right:0;
        border-bottom:1px solid #eee7dc;
      }
      .compare-row > div:last-child{border-bottom:0}
      .compare-row:not(.head) > div:first-child{border-radius:0}
      .safe-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .floating-cta{display:none}
    }

    @media (max-width:520px){
      .brand-mark{width:38px;height:38px;border-radius:13px}
      .brand-text{max-width:180px}
      .hero-actions{display:grid;grid-template-columns:1fr}
      .btn{width:100%}
      .section-title{font-size:30px}
      .steps-panel,.rule-card,.panel-pad,.compare-copy,.faq-aside,.cta-card{padding:22px}
      .step-row{grid-template-columns:1fr;gap:10px}
      .reward-visual{min-height:360px;padding:18px}
      .reward-visual .ticket{width:220px}
      .ticket-1{left:18px;top:28px}
      .ticket-2{right:14px;top:132px}
      .ticket-3{left:34px;bottom:26px}
      .progress-head{display:block}
      .countdown{margin-top:12px}
      .cta-card{border-radius:28px}
    }
