:root{
      --bg:#05090d;
      --bg2:#071018;
      --panel:#0c141c;
      --panel2:#101a25;
      --line:rgba(255,255,255,.15);
      --line2:rgba(255,255,255,.08);
      --text:#f7f7fb;
      --soft:#c9d0d8;
      --dim:#8c96a1;
      --purple:#7c35d8;
      --purple2:#a367ff;
      --green:#8ed05c;
      --cyan:#43c6e7;
      --gold:#f6d98f;
      --red:#ff1717;
      --radius:12px;
      --max:1500px;
      --page-max:1200px;
    }

    *{box-sizing:border-box;margin:0;padding:0}
    html{
      scroll-behavior:smooth;
    }
    body{
      margin:0;
      color:var(--text);
      background:
        radial-gradient(circle at 50% 0%, rgba(105,55,180,.18), transparent 34%),
        linear-gradient(180deg,#020407 0%,#071018 58%,#020407 100%);
      font-family:Arial, Helvetica, sans-serif;
    }

    a{color:inherit;text-decoration:none}
    img,video{max-width:100%;display:block}
    button,input{font:inherit}

    .site{
      min-height:100vh;
      max-width:var(--max);
      margin:0 auto;
      background:linear-gradient(180deg, rgba(6,13,18,.96), rgba(4,8,12,.98));
      border-left:1px solid rgba(255,255,255,.07);
      border-right:1px solid rgba(255,255,255,.07);
      box-shadow:0 0 80px rgba(0,0,0,.55);
    }

    .topbar{
      min-height:76px;
      height:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      padding:0 34px;
      border-bottom:1px solid var(--line);
      background:rgba(0,0,0,.5);
      backdrop-filter:blur(10px);
      -webkit-backdrop-filter:blur(10px);
    }

    .brand{
      line-height:.88;
      letter-spacing:.08em;
      font-weight:900;
      font-size:36px;
    }

    .logo-brand{
      display:inline-flex;
      align-items:center;
      width:clamp(132px, 14vw, 190px);
      line-height:0;
      overflow:visible;
      flex:0 0 auto;
    }
    .logo-brand img{
      width:100%;
      height:auto;
      display:block;
      object-fit:contain;
    }

    .nav{
      display:flex;
      align-items:center;
      gap:34px;
      font-weight:800;
      font-size:16px;
      text-transform:uppercase;
    }
    .nav a{opacity:.94}
    .nav a:hover{color:var(--gold)}
    .nav a.active{color:#d19aff;position:relative}
    .nav a.active::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:-18px;
      height:2px;
      background:var(--purple2);
    }

    .nav-item{
      position:relative;
      display:inline-flex;
      align-items:center;
    }

    .games-menu-button{
      appearance:none;
      border:0;
      background:transparent;
      color:inherit;
      font:inherit;
      font-weight:800;
      text-transform:uppercase;
      cursor:pointer;
      padding:0;
      opacity:.94;
    }

    .games-menu-button:hover,
    .games-dropdown:focus-within .games-menu-button{
      color:#d19aff;
    }

    .games-menu{
      position:absolute;
      top:calc(100% + 18px);
      left:0;
      min-width:250px;
      padding:10px;
      border:1px solid var(--line);
      border-radius:10px;
      background:rgba(3,7,11,.94);
      box-shadow:0 18px 60px rgba(0,0,0,.55);
      backdrop-filter:blur(10px);
      -webkit-backdrop-filter:blur(10px);
      opacity:0;
      visibility:hidden;
      transform:translateY(-6px);
      transition:opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
      z-index:40;
    }

    .games-dropdown:hover .games-menu,
    .games-dropdown:focus-within .games-menu{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }

    .games-menu a{
      display:block;
      padding:12px 12px;
      border-radius:7px;
      color:var(--text);
      white-space:nowrap;
      font-size:14px;
      letter-spacing:.02em;
      opacity:.94;
      text-transform:none;
    }

    .games-menu a:hover,
    .games-menu a:focus{
      background:rgba(255,255,255,.08);
      color:var(--gold);
      outline:none;
    }

    .hero{
      position:relative;
      min-height:520px;
      overflow:hidden;
      border-bottom:1px solid var(--line);
      background:#020407;
    }

    .hero-bg{
      position:absolute;
      inset:0;
      z-index:0;
      width:100%;
      height:100%;
      object-fit:contain;
      object-position:right center;
      opacity:1;
      background:#020407;
    }

    .hero::before,
    .hero::after{
      content:none;
      display:none;
    }

    .hero-content{
      position:absolute;
      z-index:3;
      left:clamp(34px, 5vw, 74px);
      bottom:clamp(38px, 6vw, 72px);
      max-width:min(720px, 64vw);
      margin:0;
      padding:0;
      text-align:left;
    }

    .hero h1{
      margin:0 0 12px;
      font-size:58px;
      line-height:.98;
      letter-spacing:.06em;
      text-transform:uppercase;
      text-shadow:0 4px 18px rgba(0,0,0,.7);
    }

    .hero p{
      margin:0;
      color:#fff;
      font-size:20px;
      line-height:1.45;
      text-shadow:0 3px 14px rgba(0,0,0,.7);
    }

    .hero-subtitle{
      display:inline-block;
      transform-origin:left center;
      animation:subtitlePulse 2.8s ease-in-out infinite;
      will-change:transform,color,text-shadow;
    }

    @keyframes subtitlePulse{
      0%,100%{
        color:#fff;
        transform:scale(1);
        text-shadow:0 3px 14px rgba(0,0,0,.7);
      }
      50%{
        color:#f6d98f;
        transform:scale(1.045);
        text-shadow:0 0 18px rgba(246,217,143,.55), 0 3px 14px rgba(0,0,0,.75);
      }
    }

    @media (prefers-reduced-motion: reduce){
      .hero-subtitle{animation:none;color:#f6d98f}
    }

    .main{
      width:100%;
      max-width:var(--page-max);
      margin:0 auto;
      padding:28px 34px 28px;
    }

    .bundle-panel{
      border:1px solid var(--line);
      background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.018));
      border-radius:24px;
      box-shadow:0 26px 80px rgba(0,0,0,.42);
      padding:22px;
    }

    .section-title{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:22px;
      margin:8px 0 18px;
      text-align:center;
      text-transform:uppercase;
      letter-spacing:.05em;
      font-size:clamp(1.5rem,3vw,2rem);
      color:var(--gold);
    }

    .section-title::before,
    .section-title::after{
      content:"";
      height:1px;
      background:var(--line);
    }

    .bundle-panel p{
      color:var(--soft);
      line-height:1.72;
      font-size:1rem;
    }

    .bundle-list{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:18px;
      margin-top:18px;
    }

    .big-bundle{
      padding:22px;
      border:1px solid var(--line);
      border-radius:18px;
      background:rgba(255,255,255,.03);
    }

    .big-bundle h3{
      font-size:1.6rem;
      margin-bottom:8px;
      color:var(--gold);
    }

    .product-actions{
      margin-top:18px;
    }

    .store-buttons{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      align-items:center;
      width:100%;
      margin:0;
    }

    .mini-store-button{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      height:36px;
      width:100%;
      min-width:0;
      padding:4px 10px;
      border:1px solid rgba(255,255,255,.18);
      border-radius:6px;
      background:rgba(0,0,0,.28);
      transition:transform 80ms ease-out, background 150ms ease-out, border-color 150ms ease-out;
    }

    .mini-store-button:hover{
      transform:scale(1.02);
      background:rgba(255,255,255,.07);
      border-color:rgba(255,255,255,.32);
    }

    .mini-store-button img{
      max-width:100%;
      max-height:100%;
      width:auto;
      height:26px;
      object-fit:contain;
    }

    .community,.signup{
      margin-top:22px;
      border:1px solid rgba(146,75,241,.55);
      border-radius:7px;
      background:linear-gradient(90deg, rgba(110,45,190,.22), rgba(255,255,255,.02));
      display:grid;
      grid-template-columns:88px 1fr auto;
      gap:16px;
      align-items:center;
      padding:14px 28px;
    }

    .signup{
      border-color:var(--line2);
      grid-template-columns:88px 1fr minmax(260px,330px) auto;
      background:transparent;
      margin-top:10px;
    }

    .cta-icon{
      width:54px;
      height:54px;
      border-radius:999px;
      display:grid;
      place-items:center;
      background:linear-gradient(180deg,#7b35dc,#55259f);
      font-size:30px;
    }

    .discord-icon{
      overflow:hidden;
      background:transparent;
    }

    .discord-icon img{
      width:54px;
      height:54px;
      object-fit:contain;
      display:block;
    }

    .community h3,.signup h3{
      margin:0 0 3px;
      text-transform:uppercase;
      letter-spacing:.03em;
      font-size:19px;
    }

    .community p,.signup p{
      margin:0;
      color:var(--soft);
    }

    .discord-button,.subscribe-button{
      min-height:44px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:0 22px;
      border-radius:5px;
      border:1px solid rgba(178,105,255,.45);
      background:linear-gradient(180deg,#7b35dc,#55259f);
      color:#fff;
      font-weight:900;
      text-transform:uppercase;
      cursor:pointer;
    }

    .email-input{
      min-height:46px;
      width:100%;
      padding:0 15px;
      color:#fff;
      background:#0b141c;
      border:1px solid var(--line);
      border-radius:5px;
    }

    .footer-links{
      margin-bottom:10px;
    }


    footer{
      padding:0 34px 28px;
      color:var(--dim);
      text-align:center;
      font-size:14px;
    }

    footer a{
      color:var(--dim);
      text-decoration:underline;
      margin:0 14px;
    }

    @media (max-width:1200px){
      .topbar{height:auto;align-items:flex-start;flex-wrap:wrap;padding:18px 22px}
      .nav{order:3;width:100%;justify-content:center}
      .hero{min-height:500px}
    }

    @media (max-width:980px){
      .bundle-list{grid-template-columns:1fr}
    }

    @media (max-width:820px){
      .topbar{display:block;text-align:center}
      .brand{margin-bottom:18px}
      .nav{margin-bottom:16px}
      .nav{
        gap:clamp(9px, 3.4vw, 18px);
        flex-wrap:nowrap;
        justify-content:center;
        width:100%;
        font-size:clamp(11px, 3.1vw, 16px);
      }
      .games-dropdown{
        width:auto;
        flex:0 0 auto;
      }
      .community,.signup{
        grid-template-columns:1fr;
        text-align:center;
        justify-items:center;
        padding:18px;
      }
      .signup{
        grid-template-columns:1fr;
      }
      .email-input{
        max-width:420px;
      }

      .nav a.active::after{display:none}
      .games-dropdown{
        width:100%;
        justify-content:center;
      }
      .games-menu{
        left:50%;
        transform:translate(-50%, -6px);
      }
      .games-dropdown:hover .games-menu,
      .games-dropdown:focus-within .games-menu{
        transform:translate(-50%, 0);
      }
      .hero{min-height:430px}
      .hero-content{
        left:24px;
        right:24px;
        bottom:56px;
        max-width:none;
      }
      .hero h1{font-size:42px}
      .hero p{font-size:17px}
      .main{padding:24px 18px}
      .store-buttons{grid-template-columns:1fr}
      footer{padding:0 18px 26px}
    }

    @media(max-width:520px){
      .section-title{font-size:22px}
      .hero h1{font-size:34px}
    }
  
/* v.06 authoritative page behavior and shared product-page navigation */
html,
body{
  width:100%;
  max-width:100%;
}

.site{
  width:100%;
  max-width:var(--max);
}

/* Match navigation sizing/spacing used on the other product pages. */
.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:nowrap;
  gap:34px;
  font-size:16px;
  font-weight:800;
  text-transform:uppercase;
}

.nav-item,
.nav > a{
  flex:0 0 auto;
  min-width:0;
}

.games-dropdown{
  width:auto;
}

/* Store badges: no bounding box, larger visual scale. */
.store-buttons{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:center;
  width:100%;
  margin:18px 0 0;
}

.mini-store-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:54px;
  min-width:0;
  padding:0;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  overflow:visible;
  transition:transform 80ms ease-out, opacity 150ms ease-out;
}

.mini-store-button:hover{
  transform:scale(1.03);
  opacity:.94;
  background:transparent !important;
  border:0 !important;
}

.mini-store-button img{
  width:100%;
  height:52px;
  max-width:100%;
  max-height:52px;
  object-fit:contain;
  display:block;
}

/* Keep footer copyright on its own line below links. */
.footer-links{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  margin:0 0 10px;
}

footer > span{
  display:block;
  width:100%;
  margin:0;
}

/* Mobile navigation matches the other product pages and stays on one line. */
@media (max-width:820px){
  .topbar{
    display:block;
    text-align:center;
  }

  .brand{
    margin-bottom:18px;
  }

  .nav{
    width:100%;
    margin:0 0 16px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:nowrap;
    gap:clamp(8px, 3vw, 16px);
    font-size:clamp(10px, 3vw, 14px);
    white-space:nowrap;
  }

  .games-dropdown{
    width:auto !important;
    flex:0 0 auto;
    justify-content:center;
  }

  .games-menu-button{
    white-space:nowrap;
  }

  .store-buttons{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .mini-store-button{
    height:46px;
  }

  .mini-store-button img{
    height:44px;
    max-height:44px;
  }
}

/* v.16 canonical responsive header with approved logo breathing room */
.topbar{
  min-height:76px;
  height:auto;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  flex-wrap:nowrap !important;
  gap:clamp(10px,2vw,24px) !important;
  padding:8px clamp(14px,2.5vw,34px) !important;
  text-align:left !important;
  -webkit-backdrop-filter:blur(10px);
}

.topbar .logo-brand{
  width:clamp(92px,14vw,190px);
  flex:0 1 auto;
  margin:0 !important;
}

.topbar .nav{
  order:initial !important;
  width:auto !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  flex-wrap:nowrap !important;
  gap:clamp(8px,2.2vw,34px) !important;
  margin:0 !important;
  font-size:clamp(10px,1.6vw,16px) !important;
  white-space:nowrap;
}

.topbar .games-dropdown{
  width:auto !important;
  flex:0 0 auto;
}

@media (max-width:420px){
  .topbar{
    min-height:64px;
    padding:0 10px !important;
    gap:8px !important;
  }

  .topbar .logo-brand{
    width:86px;
  }

  .topbar .nav{
    gap:7px !important;
    font-size:9.5px !important;
  }
}

/* v.07 authoritative bundle layout and community treatments */
.main{
  max-width:none;
}

.hero,
.bundle-panel{
  background:#000;
}

.bundle-list{
  align-items:stretch;
}

.big-bundle{
  display:flex;
  flex-direction:column;
}

.big-bundle .store-buttons{
  margin-top:auto;
  padding-top:18px;
}

.community,
.signup{
  width:100%;
  background:linear-gradient(90deg, rgba(110,45,190,.22), rgba(255,255,255,.02));
  border-color:rgba(146,75,241,.55);
}

.discord-button,
.subscribe-button{
  width:180px !important;
  min-width:180px !important;
  color:#fff !important;
  white-space:nowrap !important;
}

.mini-store-button{
  align-self:center;
}

.mini-store-button img{
  width:100%;
  height:52px;
  max-height:52px;
  object-fit:contain;
  object-position:center;
}

/* v.17 use the same document-scrolling model as the other site pages. */
html,
body{
  width:100%;
  min-height:100%;
  margin:0;
}

.site{
  width:100%;
  min-height:100vh;
  height:auto;
  max-width:1500px;
  margin:0 auto;
}

/* Match the standard About v18 desktop content width exactly. */
.main{
  width:100% !important;
  max-width:1400px !important;
  margin:0 auto !important;
  padding:28px 24px !important;
}

@media (max-width:820px){
  .main{
    padding:24px 14px 28px !important;
  }
}

/* v.10 match the main-page Bundles purple and enlarge store badges. */
.hero h1,
.section-title,
.big-bundle h3,
.community h3,
.signup h3{
  color:#a367ff !important;
}

.store-buttons{
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:18px;
  align-items:center;
}

.mini-store-button{
  height:70px;
}

.mini-store-button img{
  width:100%;
  max-width:210px;
  height:64px;
  max-height:64px;
  margin:0 auto;
}

@media (max-width:520px){
  .store-buttons{
    gap:10px;
  }

  .mini-store-button{
    height:58px;
  }

  .mini-store-button img{
    height:54px;
    max-height:54px;
  }
}

/* v.11 right-aligned bundle art above each store-button row. */
.bundle-card-art{
  width:100%;
  height:clamp(153px,17vw,238px);
  margin:6px 0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.bundle-card-art img{
  display:block;
  width:85%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

@media (max-width:520px){
  .bundle-card-art{
    height:clamp(145px,53vw,221px);
  }
}

/* v.14 MailerLite signup, success-message layout, and email validation. */
.signup .ml-form-embedContent{
  display:none !important;
}

.signup{
  grid-template-columns:88px minmax(300px,.8fr) minmax(0,1.6fr) !important;
}

.signup .ml-embedded{
  grid-column:3;
  width:100%;
  min-width:0;
}

.signup .ml-form-embedWrapper,
.signup .ml-form-embedBody,
.signup .ml-form-successBody,
.signup .ml-form-embedContent,
.signup .ml-form-successContent{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  background:transparent !important;
}

.signup .ml-block-form{
  display:flex !important;
  align-items:flex-start !important;
  gap:16px !important;
  margin:0 !important;
}

.signup .ml-form-formContent{
  flex:1 1 auto !important;
  min-width:0 !important;
  margin:0 !important;
}

.signup .ml-field-group{
  margin:0 !important;
}

.signup .ml-field-group input{
  width:100% !important;
  height:46px !important;
  padding:0 16px !important;
  color:#fff !important;
  background:#071018 !important;
  border:1px solid rgba(255,255,255,.25) !important;
  border-radius:7px !important;
  font:inherit !important;
}

.signup .ml-field-group input::placeholder{
  color:#aeb7c2 !important;
}

.signup .ml-form-embedSubmit{
  flex:0 0 180px !important;
  width:180px !important;
  margin:0 !important;
}

.signup .ml-form-embedSubmit button{
  width:180px !important;
  min-width:180px !important;
  height:46px !important;
  padding:0 20px !important;
  border:1px solid rgba(255,255,255,.2) !important;
  border-radius:7px !important;
  color:#fff !important;
  background:linear-gradient(180deg,#8f42ef,#6421b9) !important;
  font:900 16px/1 inherit !important;
  text-transform:uppercase !important;
  cursor:pointer !important;
}

.signup .ml-form-successBody,
.signup .ml-form-successContent,
.signup .ml-form-successContent h4,
.signup .ml-form-successContent p{
  color:#fff !important;
}

.signup .ml-form-successContent h4{
  margin:0 0 8px !important;
  font-size:28px !important;
  line-height:1.1 !important;
}

.signup .ml-form-successContent p{
  margin:0 !important;
  font-size:15px !important;
  line-height:1.4 !important;
  white-space:normal !important;
  overflow-wrap:anywhere !important;
}

.signup input[aria-invalid="true"]{
  border-color:#ffcf4a !important;
  outline:2px solid rgba(255,207,74,.25) !important;
  outline-offset:1px;
}

.ludit-email-error{
  display:none;
  margin:7px 0 0;
  color:#ffcf4a;
  font-size:14px;
  line-height:1.3;
}

.ludit-email-error.is-visible{
  display:block;
}

@media (max-width:820px){
  .signup{
    grid-template-columns:72px minmax(0,1fr) !important;
  }

  .signup .ml-embedded{
    grid-column:1 / -1;
    width:min(100%,420px);
  }

  .signup .ml-block-form{
    flex-direction:column !important;
  }

  .signup .ml-form-embedSubmit,
  .signup .ml-form-embedSubmit button{
    flex:0 0 auto !important;
    width:180px !important;
  }

  .signup .ml-form-embedSubmit{
    align-self:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

/* Inactive bundle stores: replace the badge with a hover/focus message. */
.mini-store-button.coming-soon-store:hover,
.mini-store-button.coming-soon-store:focus-visible{
  transform:scale(1.03);
  opacity:1;
  border:2px solid #ff1f1f !important;
  border-radius:5px;
  background:#090909 !important;
  color:#fff;
  font-size:15px;
  font-weight:900;
  letter-spacing:.08em;
  text-align:center;
}

.mini-store-button.coming-soon-store:hover img,
.mini-store-button.coming-soon-store:focus-visible img{
  display:none;
}

.mini-store-button.coming-soon-store:hover::after,
.mini-store-button.coming-soon-store:focus-visible::after{
  content:"COMING SOON";
}
