/* vn6 mobile-first theme. */
:root {
  font-size: 62.5%;
  --w6b34-primary: #ff1493;
  --w6b34-soft: #ffdfba;
  --w6b34-accent: #ff69b4;
  --w6b34-bg: #2e4057;
  --w6b34-bg2: #172232;
  --w6b34-card: rgba(255, 255, 255, .085);
  --w6b34-line: rgba(255, 223, 186, .24);
  --w6b34-text: #fff7ef;
  --w6b34-muted: #ffd8e9;
  --w6b34-shadow: 0 1.6rem 4rem rgba(0, 0, 0, .34);
  --w6b34-radius: 2rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top left, rgba(255,20,147,.3), transparent 32rem), linear-gradient(160deg, var(--w6b34-bg2), var(--w6b34-bg));
  color: var(--w6b34-text);
  font-size: 1.6rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
a { color: var(--w6b34-soft); text-decoration: none; font-weight: 800; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.w6b34-body-locked { overflow: hidden; }
.w6b34-page { min-height: 100vh; padding-top: 7.6rem; }
.w6b34-container { width: min(100% - 2.4rem, 43rem); margin: 0 auto; }
.w6b34-wrapper { width: min(100% - 2.4rem, 118rem); margin: 0 auto; }
.w6b34-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(23, 34, 50, .92); backdrop-filter: blur(1.4rem);
  border-bottom: .1rem solid var(--w6b34-line);
}
.w6b34-header-inner { min-height: 6.8rem; display: flex; align-items: center; gap: .8rem; justify-content: space-between; }
.w6b34-brand { display: flex; align-items: center; gap: .8rem; min-width: 9.2rem; color: #fff; }
.w6b34-logo { width: 3.2rem; height: 3.2rem; border-radius: 1rem; box-shadow: 0 0 2rem rgba(255,20,147,.45); }
.w6b34-brand-name { font-size: 2rem; letter-spacing: .08rem; font-weight: 900; }
.w6b34-actions { display: flex; gap: .6rem; align-items: center; }
.w6b34-btn {
  min-height: 4.4rem; min-width: 4.4rem; border: 0; border-radius: 999rem;
  padding: 0 1.35rem; cursor: pointer; font-weight: 900; color: #1b2433;
  background: linear-gradient(135deg, var(--w6b34-soft), var(--w6b34-accent));
  box-shadow: 0 .8rem 2rem rgba(255, 20, 147, .28);
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease;
}
.w6b34-btn:hover, .w6b34-btn:focus { transform: translateY(-.2rem) scale(1.02); box-shadow: 0 1.2rem 2.8rem rgba(255, 20, 147, .42); }
.w6b34-btn-alt { color: #fff; background: rgba(255,255,255,.12); border: .1rem solid var(--w6b34-line); }
.w6b34-menu-btn { display: grid; place-items: center; color: #fff; background: rgba(255,20,147,.18); border: .1rem solid var(--w6b34-line); padding: 0; }
.w6b34-desktop-nav { display: none; gap: 1.4rem; align-items: center; }
.w6b34-nav-link { font-size: 1.35rem; color: var(--w6b34-muted); }
.w6b34-mobile-menu {
  position: fixed; inset: 0; z-index: 9999; background: rgba(12, 17, 26, .96);
  transform: translateY(-110%); transition: transform .26s ease; padding: 8.4rem 2rem 2rem;
}
.w6b34-mobile-menu.w6b34-menu-open { transform: translateY(0); }
.w6b34-menu-panel { width: min(100%, 43rem); margin: 0 auto; display: grid; gap: 1rem; }
.w6b34-menu-panel a, .w6b34-menu-panel button { min-height: 4.8rem; border-radius: 1.4rem; padding: 1.4rem; background: var(--w6b34-card); color: #fff; border: .1rem solid var(--w6b34-line); text-align: left; font-weight: 800; }
.w6b34-hero { padding: 2rem 0 1.4rem; }
.w6b34-kicker { color: var(--w6b34-soft); font-weight: 900; text-transform: uppercase; letter-spacing: .12rem; font-size: 1.2rem; }
.w6b34-title { font-size: clamp(2.8rem, 8vw, 5.6rem); line-height: 1.04; margin: 1rem 0; color: #fff; }
.w6b34-lead { color: var(--w6b34-muted); line-height: 1.65; font-size: 1.6rem; }
.w6b34-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.6rem 0; }
.w6b34-carousel { position: relative; min-height: 17rem; border-radius: 2.4rem; overflow: hidden; box-shadow: var(--w6b34-shadow); border: .1rem solid var(--w6b34-line); }
.w6b34-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .4s ease; cursor: pointer; }
.w6b34-slide-active { opacity: 1; position: relative; }
.w6b34-slide img { width: 100%; height: 100%; min-height: 17rem; object-fit: cover; }
.w6b34-section { padding: 2.4rem 0; }
.w6b34-section-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1.4rem; }
.w6b34-section h2 { font-size: 2.4rem; line-height: 1.15; margin: 0 0 1rem; }
.w6b34-section h3 { font-size: 1.8rem; margin: 1rem 0 .6rem; color: var(--w6b34-soft); }
.w6b34-card { background: var(--w6b34-card); border: .1rem solid var(--w6b34-line); border-radius: var(--w6b34-radius); padding: 1.6rem; box-shadow: 0 .8rem 2.2rem rgba(0,0,0,.18); }
.w6b34-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.w6b34-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.w6b34-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.w6b34-games { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .8rem; }
.w6b34-game { min-width: 0; padding: .7rem; border-radius: 1.3rem; background: rgba(255,255,255,.075); border: .1rem solid rgba(255,255,255,.1); text-align: center; color: #fff; }
.w6b34-game img { width: 5.6rem; height: 5.6rem; border-radius: 1.2rem; object-fit: cover; margin: 0 auto .5rem; }
.w6b34-game span { display: block; font-size: 1.05rem; line-height: 1.25; font-weight: 800; }
.w6b34-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border-radius: 999rem; background: rgba(255, 20, 147, .16); color: var(--w6b34-soft); font-weight: 900; font-size: 1.2rem; }
.w6b34-stat { display: flex; justify-content: space-between; align-items: center; gap: 1rem; border-bottom: .1rem solid var(--w6b34-line); padding: .9rem 0; }
.w6b34-stat:last-child { border-bottom: 0; }
.w6b34-bar { height: .8rem; border-radius: 999rem; background: rgba(255,255,255,.13); overflow: hidden; }
.w6b34-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--w6b34-primary), var(--w6b34-soft)); border-radius: inherit; }
.w6b34-promo-link { color: #fff; font-weight: 950; border-bottom: .2rem solid var(--w6b34-accent); cursor: pointer; }
.w6b34-list { padding-left: 1.8rem; line-height: 1.75; }
.w6b34-quote { border-left: .4rem solid var(--w6b34-primary); padding-left: 1.2rem; color: var(--w6b34-muted); }
.w6b34-footer { margin-top: 3rem; padding: 3rem 0 9rem; background: rgba(0,0,0,.22); border-top: .1rem solid var(--w6b34-line); }
.w6b34-footer-grid { display: grid; gap: 1.4rem; }
.w6b34-footer-links { display: flex; flex-wrap: wrap; gap: .8rem; }
.w6b34-partners { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.w6b34-partner { min-height: 3.6rem; padding: .8rem 1rem; border-radius: 1rem; background: rgba(255,255,255,.1); color: var(--w6b34-soft); font-weight: 900; }
.w6b34-bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000; height: 6.2rem;
  display: flex; justify-content: space-around; align-items: center;
  background: #ff1493; border-top: .2rem solid #ffdfba; box-shadow: 0 -1rem 3rem rgba(0,0,0,.34);
}
.w6b34-bottom-item {
  min-width: 6rem; min-height: 6rem; border: 0; background: transparent; color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem;
  font-size: 1.05rem; font-weight: 900; cursor: pointer; border-radius: 1.4rem; transition: transform .18s ease, background .18s ease;
}
.w6b34-bottom-item i, .w6b34-bottom-item ion-icon, .w6b34-bottom-item .material-icons, .w6b34-bottom-item svg { font-size: 2.4rem; width: 2.4rem; height: 2.4rem; }
.w6b34-bottom-item:active, .w6b34-bottom-item:hover, .w6b34-bottom-item.w6b34-is-active { transform: scale(1.08); background: rgba(46,64,87,.28); color: var(--w6b34-soft); }
.w6b34-badge { position: absolute; transform: translate(1.3rem, -1.7rem); min-width: 1.7rem; height: 1.7rem; border-radius: 999rem; background: var(--w6b34-soft); color: #2e4057; font-size: 1rem; display: grid; place-items: center; }
.w6b34-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 1.4rem; }
.w6b34-table th, .w6b34-table td { padding: 1rem; border-bottom: .1rem solid var(--w6b34-line); text-align: left; }
.w6b34-table th { color: var(--w6b34-soft); background: rgba(255,20,147,.12); }
.w6b34-step { display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; align-items: start; }
.w6b34-step-num { width: 3.6rem; height: 3.6rem; border-radius: 50%; display: grid; place-items: center; background: var(--w6b34-primary); color: #fff; font-weight: 950; }
@media (max-width: 768px) { main { padding-bottom: 8rem; } .w6b34-page { padding-top: 7rem; } }
@media (min-width: 769px) {
  body { font-size: 1.7rem; }
  .w6b34-container { width: min(100% - 4rem, 118rem); }
  .w6b34-desktop-nav { display: flex; }
  .w6b34-menu-btn { display: none; }
  .w6b34-bottom-nav { display: none; }
  .w6b34-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .w6b34-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .w6b34-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .w6b34-games { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .w6b34-footer { padding-bottom: 4rem; }
  .w6b34-title { max-width: 78rem; }
}
