:root {
  font-size: 62.5%;
  --w61f6-bg: #333333;
  --w61f6-panel: #4A4A4A;
  --w61f6-card: #3d3d3d;
  --w61f6-primary: #CD853F;
  --w61f6-secondary: #BDB76B;
  --w61f6-slate: #708090;
  --w61f6-text: #fff8df;
  --w61f6-muted: #d8d0ad;
  --w61f6-line: rgba(189,183,107,.28);
  --w61f6-shadow: 0 1.6rem 4rem rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(205,133,63,.18), transparent 30%), linear-gradient(180deg, #2c2c2c 0%, var(--w61f6-bg) 62%, #242424 100%);
  color: var(--w61f6-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
body.w61f6-lock { overflow: hidden; }
a { color: var(--w61f6-secondary); text-decoration: none; }
a:hover { color: var(--w61f6-primary); }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
.w61f6-page {
  width: 100%;
  max-width: 43rem;
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(74,74,74,.85), rgba(51,51,51,.96));
  position: relative;
  box-shadow: var(--w61f6-shadow);
}
.w61f6-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 43rem;
  z-index: 1000;
  background: rgba(51,51,51,.94);
  border-bottom: .1rem solid var(--w61f6-line);
  backdrop-filter: blur(1.2rem);
}
.w61f6-topbar {
  height: 6.4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 1.2rem;
}
.w61f6-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 0;
  flex: 1;
}
.w61f6-logo {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: .9rem;
  border: .1rem solid var(--w61f6-secondary);
  background: #222;
}
.w61f6-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.w61f6-brand-name {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--w61f6-secondary);
  letter-spacing: .02em;
}
.w61f6-brand-sub {
  font-size: 1.05rem;
  color: var(--w61f6-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.w61f6-head-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.w61f6-btn {
  min-height: 4.4rem;
  min-width: 4.4rem;
  border: 0;
  border-radius: 1.4rem;
  padding: 0 1.2rem;
  color: #1f1c14;
  background: linear-gradient(135deg, var(--w61f6-secondary), var(--w61f6-primary));
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 .8rem 2rem rgba(205,133,63,.28);
  transition: transform .18s ease, filter .18s ease;
}
.w61f6-btn:hover,
.w61f6-btn:focus { transform: translateY(-.1rem) scale(1.02); filter: brightness(1.08); }
.w61f6-btn-alt {
  background: transparent;
  color: var(--w61f6-secondary);
  border: .1rem solid var(--w61f6-primary);
  box-shadow: none;
}
.w61f6-menu-toggle {
  background: rgba(112,128,144,.28);
  color: var(--w61f6-text);
  border: .1rem solid var(--w61f6-line);
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.w61f6-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  transform: translateY(-105%);
  transition: transform .24s ease;
  background: linear-gradient(180deg, rgba(51,51,51,.98), rgba(74,74,74,.98));
  padding: 8rem 1.6rem 2rem;
}
.w61f6-mobile-menu.w61f6-menu-open { transform: translateY(0); }
.w61f6-menu-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.w61f6-menu-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.8rem;
  padding: 1rem 1.2rem;
  border-radius: 1.5rem;
  background: rgba(189,183,107,.08);
  border: .1rem solid var(--w61f6-line);
  color: var(--w61f6-text);
  font-weight: 800;
}
.w61f6-desktop-nav { display: none; }
.w61f6-main { padding: 7.2rem 1.2rem 2.4rem; }
.w61f6-container { width: 100%; max-width: 40.6rem; margin: 0 auto; }
.w61f6-wrapper { display: grid; gap: 1.4rem; }
.w61f6-hero {
  position: relative;
  overflow: hidden;
  border-radius: 2.4rem;
  background: linear-gradient(135deg, rgba(205,133,63,.24), rgba(112,128,144,.18));
  border: .1rem solid var(--w61f6-line);
  padding: 1.4rem;
}
.w61f6-carousel { position: relative; height: 17.8rem; border-radius: 1.8rem; overflow: hidden; }
.w61f6-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
  cursor: pointer;
}
.w61f6-slide img { width: 100%; height: 100%; object-fit: cover; }
.w61f6-slide-active { opacity: 1; }
.w61f6-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  width: fit-content;
  padding: .6rem 1rem;
  border-radius: 99rem;
  background: rgba(189,183,107,.14);
  color: var(--w61f6-secondary);
  border: .1rem solid var(--w61f6-line);
  font-weight: 900;
  font-size: 1.2rem;
}
.w61f6-title {
  font-size: 2.8rem;
  line-height: 1.1;
  margin: 1.2rem 0 .8rem;
  color: #fff5ca;
}
.w61f6-lead { color: var(--w61f6-muted); line-height: 1.55; margin: .8rem 0; }
.w61f6-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; }
.w61f6-link-strong { color: var(--w61f6-secondary); font-weight: 900; text-decoration: underline; cursor: pointer; }
.w61f6-card {
  background: linear-gradient(180deg, rgba(74,74,74,.92), rgba(61,61,61,.92));
  border: .1rem solid var(--w61f6-line);
  border-radius: 2rem;
  padding: 1.5rem;
  box-shadow: 0 1rem 2.6rem rgba(0,0,0,.22);
}
.w61f6-card h2,
.w61f6-card h3 { color: #fff0b7; line-height: 1.18; margin: 0 0 1rem; }
.w61f6-card p { color: var(--w61f6-muted); margin: .8rem 0; line-height: 1.55; }
.w61f6-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.w61f6-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .8rem; }
.w61f6-game-section { margin-top: 1.6rem; }
.w61f6-section-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1rem; }
.w61f6-section-head h2 { font-size: 2rem; margin: 0; color: #fff0b7; }
.w61f6-chip { font-size: 1.1rem; color: #1f1c14; background: var(--w61f6-secondary); padding: .4rem .8rem; border-radius: 99rem; font-weight: 900; }
.w61f6-game-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .8rem; }
.w61f6-game {
  min-height: 8.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: .7rem .4rem;
  border-radius: 1.4rem;
  background: rgba(51,51,51,.62);
  border: .1rem solid rgba(189,183,107,.16);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease;
}
.w61f6-game:hover { transform: translateY(-.2rem); border-color: var(--w61f6-primary); }
.w61f6-game img { width: 4.8rem; height: 4.8rem; border-radius: 1.1rem; object-fit: cover; }
.w61f6-game span { color: var(--w61f6-text); font-size: 1.05rem; line-height: 1.15; text-align: center; font-weight: 800; }
.w61f6-stat-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .8rem; }
.w61f6-stat {
  background: rgba(112,128,144,.18);
  border: .1rem solid var(--w61f6-line);
  border-radius: 1.4rem;
  padding: 1rem;
}
.w61f6-stat b { display: block; font-size: 2.2rem; color: var(--w61f6-secondary); line-height: 1.1; }
.w61f6-stat span { color: var(--w61f6-muted); font-size: 1.15rem; }
.w61f6-steps { counter-reset: w61f6-step; display: grid; gap: 1rem; }
.w61f6-step {
  position: relative;
  padding: 1rem 1rem 1rem 4.8rem;
  border-radius: 1.6rem;
  background: rgba(205,133,63,.1);
  border: .1rem solid var(--w61f6-line);
}
.w61f6-step::before {
  counter-increment: w61f6-step;
  content: counter(w61f6-step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--w61f6-primary);
  color: #16130e;
  font-weight: 900;
}
.w61f6-table { width: 100%; border-collapse: separate; border-spacing: 0 .7rem; }
.w61f6-table th,
.w61f6-table td { text-align: left; padding: .9rem; background: rgba(51,51,51,.54); color: var(--w61f6-muted); }
.w61f6-table th { color: var(--w61f6-secondary); }
.w61f6-quote { border-left: .4rem solid var(--w61f6-primary); padding-left: 1rem; color: var(--w61f6-text); font-weight: 700; }
.w61f6-footer {
  padding: 2rem 1.2rem 8.8rem;
  background: #272727;
  border-top: .1rem solid var(--w61f6-line);
}
.w61f6-footer-logo { display: flex; align-items: center; gap: .8rem; font-weight: 900; color: var(--w61f6-secondary); }
.w61f6-footer-links { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.2rem 0; }
.w61f6-footer-links a { padding: .7rem .9rem; border: .1rem solid var(--w61f6-line); border-radius: 99rem; color: var(--w61f6-muted); font-size: 1.2rem; }
.w61f6-partners { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; margin: 1rem 0; }
.w61f6-partner { border-radius: 1.2rem; background: rgba(189,183,107,.12); padding: .8rem; text-align: center; font-size: 1.15rem; font-weight: 900; color: var(--w61f6-secondary); }
.w61f6-copy { color: var(--w61f6-muted); font-size: 1.15rem; }
.w61f6-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 43rem;
  height: 6.2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #333333;
  border-top: .1rem solid var(--w61f6-line);
  box-shadow: 0 -1rem 2rem rgba(0,0,0,.28);
}
.w61f6-bottom-item {
  min-width: 6rem;
  min-height: 6rem;
  border: 0;
  background: transparent;
  color: var(--w61f6-muted);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease;
  position: relative;
}
.w61f6-bottom-item i,
.w61f6-bottom-item ion-icon,
.w61f6-bottom-item .material-icons,
.w61f6-bottom-item .ti { font-size: 2.4rem; width: 2.6rem; height: 2.6rem; line-height: 2.6rem; }
.w61f6-bottom-item span { font-size: 1.05rem; font-weight: 800; }
.w61f6-bottom-item:hover,
.w61f6-bottom-item.w61f6-active { color: var(--w61f6-secondary); transform: translateY(-.3rem) scale(1.03); }
.w61f6-bottom-item.w61f6-active::after { content: ''; width: .6rem; height: .6rem; border-radius: 50%; background: var(--w61f6-primary); position: absolute; top: .5rem; }
.w61f6-bonus-dot { position: absolute; top: .6rem; right: 1.3rem; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--w61f6-primary); color: #191611; font-size: 1rem; font-weight: 900; display: grid; place-items: center; }
.w61f6-compact-list { margin: 0; padding-left: 1.8rem; color: var(--w61f6-muted); line-height: 1.65; }
.w61f6-mini-banner { border-radius: 1.8rem; overflow: hidden; border: .1rem solid var(--w61f6-line); margin: 1rem 0; }
.w61f6-split { display: grid; gap: 1rem; }
@media (max-width: 768px) {
  .w61f6-main { padding-bottom: 8rem; }
}
@media (min-width: 769px) {
  body { background: #202020; }
  .w61f6-page { max-width: 96rem; }
  .w61f6-header { max-width: 96rem; }
  .w61f6-main { max-width: 96rem; margin: 0 auto; }
  .w61f6-container { max-width: 90rem; }
  .w61f6-desktop-nav { display: flex; gap: 1rem; align-items: center; }
  .w61f6-desktop-nav a { color: var(--w61f6-muted); font-size: 1.25rem; font-weight: 800; }
  .w61f6-menu-toggle { display: none; }
  .w61f6-bottom-nav { display: none; }
  .w61f6-game-grid { grid-template-columns: repeat(8, minmax(0,1fr)); }
  .w61f6-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .w61f6-split { grid-template-columns: 1fr 1fr; }
  .w61f6-footer { padding-bottom: 2.4rem; }
}
