
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Lato', sans-serif;
      height: 100vh;
      overflow: hidden;
    }

    /* ── HERO BACKGROUND ── */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      overflow: hidden;
      padding-top: 40vh;
    }

    .hero-bg {
      position: fixed; 
      inset: 0;
      background: url(assets22/BG_Fairwin.png) center / cover no-repeat;
      
    } 

    

   
    @keyframes floatUp {
      0%{ opacity:0; transform:translateY(0) scale(1); }
      10%{ opacity:.7; }
      90%{ opacity:.1; }
      100%{ opacity:0; transform:translateY(-80vh) scale(.3); }
    }

    /* ── CONTENT WRAPPER ── */
    .hero-content {
      position: relative; z-index: 2;
      text-align: center;
      width: 100%; max-width: 990px;
      padding: 40px 20px 60px;
    }

   
    .logo-text {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(2.8rem, 7vw, 4.8rem);
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
      background: linear-gradient(180deg, #ffe87a 0%, #f5c518 40%, #c79a00 70%, #f5c518 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: none;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,.8));
      line-height: 1;
    }

    /* suits row */
    .suits-row {
      display: flex; justify-content: center; align-items: center; gap: 4px;
      margin-top: 6px;
    }
    .suit-pip {
      font-size: 1.5rem;
      filter: drop-shadow(0 0 4px rgba(255,255,255,.4));
    }
    .suit-pip.black{ color: #222; }
    .suit-pip.red  { color: var(--red-bright); }

    /* ── FREE TO PLAY BANNER ── */
    .ftp-banner {
      position: relative;
      background: linear-gradient(90deg, #0a2a7a 0%, #1565c0 40%, #1976d2 60%, #0a2a7a 100%);
      border: 2px solid var(--gold);
      border-radius: 10px;
      padding: 14px 30px;
      margin: 0 auto 20px;
      max-width: 580px;
      box-shadow: 0 0 28px rgba(21,101,192,.7), 0 0 6px rgba(245,197,24,.5);
      animation: fadeUp .7s .2s ease both;
    }
    @keyframes fadeUp {
      from{ opacity:0; transform:translateY(20px); }
      to{ opacity:1; transform:translateY(0); }
    }




    /* ── FEATURES BOX ── */
    .features-box {
      background: rgba(0, 0, 0, 0.38);
      border: 2.5px solid rgb(255, 25, 0);
      border-radius: 15px;
      padding: 18px 25px;
      margin: 0 auto 22px;
      text-align: left;
      backdrop-filter: blur(4px);
      animation: fadeUp .7s .35s ease both;
    }

    .feature-item {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: 16px;
      font-weight: 700;
      color: #e8e8e8;
      line-height: 1.5;
      margin-bottom: 4px;
    }
    .feature-item:last-child{ margin-bottom:0; }
    .feature-hash { color: var(--gold); font-weight: 700; flex-shrink:0; }

    /* ── DOWNLOAD BUTTONS ROW ── */
    .dl-row {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 50px;
      margin-top: 14px;
      margin-bottom: 0;
    }

 
    .downloade{
    
    width: 100%;
    max-width: 260px;
    }

    

    .new-badge {
      position: absolute;
      top: -8px; right: -8px;
      background: var(--red-bright);
      color: #fff;
      font-family: 'Oswald', sans-serif;
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .1em;
      padding: 2px 5px;
      border-radius: 3px;
      text-transform: uppercase;
    }

    .btn-icon { font-size: 1.3rem; }
    .btn-label { display:flex; flex-direction:column; }
    .btn-label-main { font-size: clamp(.82rem,2vw,.95rem); }
    .btn-label-sub { font-size: .72rem; font-weight:400; opacity:.88; }

    /* ── PLAY NOW ── */
    .play-now-wrap {
      margin-bottom: 20px;
      animation: fadeUp .7s .65s ease both;
    }

    .play-now-img {
      width: 100%;
      max-width: 297px;
      height: auto;
    }

    .btn-play {
      display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.3rem, 4vw, 1.8rem);
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #fff;
      background: linear-gradient(180deg, #e05a20 0%, #c0392b 50%, #a93226 100%);
      border: none;
      border-radius: 50px;
      padding: 16px 70px;
      cursor: pointer;
      text-decoration: none;
      box-shadow:
        0 6px 30px rgba(192,57,43,.65),
        0 2px 0 rgba(255,255,255,.15) inset,
        0 -3px 0 rgba(0,0,0,.3) inset;
      transition: transform .18s, box-shadow .18s, filter .18s;
      animation: pulsePow 2.5s 1.5s ease-in-out infinite;
    }
    .btn-play:hover { transform: scale(1.06); filter: brightness(1.1); color:#fff; }
    @keyframes pulsePow {
      0%,100%{ box-shadow: 0 6px 30px rgba(192,57,43,.65), 0 2px 0 rgba(255,255,255,.15) inset; }
      50%{ box-shadow: 0 6px 50px rgba(231,76,60,.9), 0 0 20px rgba(231,76,60,.5), 0 2px 0 rgba(255,255,255,.15) inset; }
    }

    /* ── 18+ STRIP ── */
    .age-strip {
      display: inline-flex; align-items: center; 
      justify-content: center;
      width: 100%;
    }

    .age-strip-img {
      width: 100%;
      max-width: 445px;
      height: auto;
    }

    /* ── RESPONSIVE ── */
    @media(max-width:991px){
      .dl-row {
        gap: 20px;
        flex-wrap: nowrap; /* Keep row flexed, prevent wrapping */
      }
      .btn-dl {
        display: flex;
        flex: 1; /* Allow images to scale down side by side */
        justify-content: center;
      }
    }

    @media(max-width:576px){
      .btn-play{ padding:14px 40px; }
      .features-box{ padding:14px 16px; }
      .ftp-banner{ padding:12px 18px; }
      
      .dl-row {
        gap: 15px;
      }
      .pc-btn {
        display: none !important; /* Hide PC button on mobile */
      }
    }