@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;600;700;800;900&display=swap');

:root {
  font-size: 62.5%;
  --v915-primary: #EE82EE;
  --v915-gold: #D4AF37;
  --v915-coral: #CD5C5C;
  --v915-bg: #141414;
  --v915-earth: #A0522D;
  --v915-text: #fff7ef;
  --v915-muted: #d9c8bc;
  --v915-panel: rgba(36, 24, 28, .94);
  --v915-panel2: rgba(62, 32, 44, .88);
  --v915-line: rgba(238, 130, 238, .28);
  --v915-shadow: 0 1.8rem 5rem rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Be Vietnam Pro', Arial, sans-serif;
  background: radial-gradient(circle at top left, rgba(238,130,238,.22), transparent 32rem), linear-gradient(165deg, #141414 0%, #211312 50%, #311624 100%);
  color: var(--v915-text);
  font-size: 1.6rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
body.v915-lock { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.v915-page { min-height: 100vh; padding-top: 7.6rem; }
.v915-container { width: min(100%, 430px); margin: 0 auto; padding: 0 1.4rem; }
.v915-wrapper { position: relative; }
.v915-grid { display: grid; gap: 1.2rem; }
.v915-section { margin: 1.8rem 0; padding: 1.6rem; border: .1rem solid var(--v915-line); background: linear-gradient(145deg, rgba(20,20,20,.88), rgba(80,36,45,.72)); border-radius: 2.2rem; box-shadow: var(--v915-shadow); }
.v915-section h2, .v915-section h3 { line-height: 1.3; margin: 0 0 1rem; }
.v915-section p, .v915-section li { line-height: 1.5rem; color: var(--v915-muted); }
.v915-kicker { color: var(--v915-gold); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 1.1rem; }
.v915-text-link { color: var(--v915-gold); font-weight: 800; text-decoration: underline; text-underline-offset: .3rem; }
.v915-text-link:hover { color: var(--v915-primary); }

.v915-header { position: fixed; inset: 0 0 auto 0; z-index: 1000; background: rgba(20,20,20,.92); backdrop-filter: blur(14px); border-bottom: .1rem solid var(--v915-line); }
.v915-header-row { width: min(100%, 430px); min-height: 6.8rem; margin: 0 auto; padding: .8rem 1.2rem; display: flex; align-items: center; gap: .8rem; }
.v915-brand { display: flex; align-items: center; gap: .8rem; min-width: 0; text-decoration: none; }
.v915-logo { width: 3.2rem; height: 3.2rem; border-radius: 1rem; box-shadow: 0 0 0 .2rem rgba(212,175,55,.38); }
.v915-brand-name { font-size: 2rem; font-weight: 900; letter-spacing: -.03em; color: var(--v915-text); }
.v915-header-actions { margin-left: auto; display: flex; gap: .6rem; align-items: center; }
.v915-btn { border: 0; min-height: 4.4rem; min-width: 4.4rem; border-radius: 999px; padding: 0 1.2rem; font-weight: 900; color: #141414; background: linear-gradient(135deg, var(--v915-gold), var(--v915-primary)); box-shadow: 0 .8rem 2rem rgba(238,130,238,.22); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: .6rem; transition: transform .2s ease, filter .2s ease; }
.v915-btn:hover, .v915-btn:focus { transform: translateY(-.15rem) scale(1.02); filter: brightness(1.08); }
.v915-btn-alt { background: linear-gradient(135deg, var(--v915-coral), var(--v915-earth)); color: #fff; }
.v915-menu-btn { background: rgba(255,255,255,.08); color: var(--v915-text); border: .1rem solid var(--v915-line); padding: 0; width: 4.4rem; }

.v915-desktop-nav { display: none; }
.v915-mobile-menu { position: fixed; top: 0; right: -100%; width: min(88vw, 37rem); height: 100vh; padding: 8rem 1.6rem 2rem; z-index: 9999; background: linear-gradient(180deg, #1a1215, #3a1728); border-left: .1rem solid var(--v915-line); box-shadow: -2rem 0 5rem rgba(0,0,0,.45); transition: right .25s ease; }
.v915-menu-open { right: 0; }
.v915-menu-close { position: absolute; top: 1.6rem; right: 1.6rem; }
.v915-menu-list { display: grid; gap: .9rem; }
.v915-menu-list a { min-height: 4.6rem; display: flex; align-items: center; gap: .9rem; padding: 0 1.2rem; border: .1rem solid rgba(255,255,255,.12); border-radius: 1.4rem; background: rgba(255,255,255,.06); text-decoration: none; color: var(--v915-text); font-weight: 800; }

.v915-hero { position: relative; padding: 1.6rem 0; }
.v915-hero-card { overflow: hidden; border-radius: 2.8rem; border: .1rem solid var(--v915-line); background: linear-gradient(145deg, rgba(238,130,238,.18), rgba(160,82,45,.28)); box-shadow: var(--v915-shadow); }
.v915-carousel { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.v915-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; cursor: pointer; }
.v915-slide-active { opacity: 1; }
.v915-slide img { width: 100%; height: 100%; object-fit: cover; }
.v915-slide:after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,20,20,.72), transparent 60%); }
.v915-dots { position: absolute; left: 0; right: 0; bottom: 1rem; display: flex; justify-content: center; gap: .6rem; }
.v915-dot { width: .8rem; height: .8rem; border-radius: 999px; border: 0; background: rgba(255,255,255,.45); padding: 0; }
.v915-dot-active { width: 2.2rem; background: var(--v915-gold); }
.v915-hero-copy { padding: 1.6rem; }
.v915-hero-copy h1 { font-size: 2.6rem; line-height: 1.16; margin: .6rem 0 1rem; }
.v915-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; }

.v915-stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 1rem 0; }
.v915-stat { padding: 1rem .6rem; border-radius: 1.6rem; text-align: center; background: rgba(255,255,255,.07); border: .1rem solid rgba(255,255,255,.12); }
.v915-stat strong { display: block; color: var(--v915-gold); font-size: 1.8rem; }
.v915-stat span { font-size: 1.1rem; color: var(--v915-muted); }

.v915-game-block { margin: 1.8rem 0; }
.v915-game-title { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 0 0 1rem; }
.v915-game-title h2 { margin: 0; font-size: 2rem; }
.v915-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.v915-game-card { min-width: 0; text-align: center; text-decoration: none; padding: .7rem .5rem; border-radius: 1.4rem; background: rgba(255,255,255,.07); border: .1rem solid rgba(238,130,238,.2); transition: transform .2s ease, border-color .2s ease; }
.v915-game-card:hover { transform: translateY(-.2rem); border-color: var(--v915-gold); }
.v915-game-card img { width: 5.4rem; height: 5.4rem; border-radius: 1.2rem; margin: 0 auto .5rem; object-fit: cover; }
.v915-game-card span { display: block; font-size: 1.05rem; line-height: 1.25; color: var(--v915-text); font-weight: 700; }

.v915-card { border-radius: 1.8rem; padding: 1.2rem; background: rgba(255,255,255,.07); border: .1rem solid rgba(255,255,255,.12); }
.v915-card strong { color: var(--v915-gold); }
.v915-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.v915-feature { min-height: 10rem; padding: 1.2rem; border-radius: 1.8rem; background: linear-gradient(135deg, rgba(238,130,238,.12), rgba(212,175,55,.10)); border: .1rem solid rgba(255,255,255,.12); }
.v915-feature i, .v915-feature .material-icons, .v915-feature ion-icon { font-size: 2.4rem; color: var(--v915-gold); }
.v915-feature h3 { font-size: 1.5rem; margin: .7rem 0; }
.v915-pill-list { display: flex; flex-wrap: wrap; gap: .7rem; }
.v915-pill { padding: .8rem 1rem; border-radius: 999px; background: rgba(212,175,55,.13); border: .1rem solid rgba(212,175,55,.32); color: var(--v915-text); font-weight: 800; font-size: 1.2rem; }
.v915-steps { counter-reset: v915step; display: grid; gap: 1rem; }
.v915-step { position: relative; padding: 1.2rem 1.2rem 1.2rem 4.8rem; border-radius: 1.6rem; background: rgba(0,0,0,.18); border: .1rem solid rgba(255,255,255,.10); }
.v915-step:before { counter-increment: v915step; content: counter(v915step); position: absolute; left: 1.2rem; top: 1.2rem; width: 2.6rem; height: 2.6rem; border-radius: 50%; display: grid; place-items: center; background: var(--v915-gold); color: #141414; font-weight: 900; }
.v915-review { padding: 1rem; border-left: .3rem solid var(--v915-primary); background: rgba(255,255,255,.06); border-radius: 1.2rem; margin: .8rem 0; }
.v915-payments { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.v915-pay { min-height: 5.2rem; display: grid; place-items: center; border-radius: 1.4rem; background: rgba(255,255,255,.08); font-weight: 900; color: var(--v915-gold); }
.v915-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 1.2rem; font-size: 1.25rem; }
.v915-table th, .v915-table td { padding: .9rem .7rem; border-bottom: .1rem solid rgba(255,255,255,.10); text-align: left; }
.v915-table th { color: var(--v915-gold); background: rgba(0,0,0,.22); }

.v915-footer { margin-top: 2rem; padding: 2.2rem 0 8.5rem; background: rgba(0,0,0,.28); border-top: .1rem solid var(--v915-line); }
.v915-footer-logo { display: flex; align-items: center; gap: .8rem; font-weight: 900; font-size: 2rem; }
.v915-footer-links, .v915-footer-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1rem 0; }
.v915-footer-links a { color: var(--v915-muted); font-size: 1.25rem; text-decoration: none; padding: .5rem .7rem; border-radius: 999px; background: rgba(255,255,255,.05); }
.v915-partners { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1rem 0; }
.v915-partner { width: 4.8rem; height: 3rem; display: grid; place-items: center; border-radius: .8rem; background: rgba(255,255,255,.08); color: var(--v915-gold); font-size: 1rem; font-weight: 900; }
.v915-copy { font-size: 1.15rem; color: var(--v915-muted); }

.v915-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; height: 6.2rem; z-index: 1000; background: #141414; border-top: .1rem solid rgba(238,130,238,.32); box-shadow: 0 -1rem 3rem rgba(0,0,0,.45); display: flex; justify-content: space-around; align-items: center; padding: .3rem .5rem calc(.3rem + env(safe-area-inset-bottom)); }
.v915-bottom-item { min-width: 6rem; min-height: 6rem; border: 0; background: transparent; color: var(--v915-muted); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem; font-size: 1.05rem; font-weight: 800; cursor: pointer; border-radius: 1.4rem; transition: transform .18s ease, color .18s ease, background .18s ease; }
.v915-bottom-item i, .v915-bottom-item .material-icons, .v915-bottom-item ion-icon, .v915-bottom-item svg { font-size: 2.3rem; width: 2.4rem; height: 2.4rem; }
.v915-bottom-item:hover, .v915-bottom-item:focus { transform: scale(.96); color: var(--v915-gold); background: rgba(238,130,238,.12); }
.v915-bottom-active { color: #141414; background: linear-gradient(135deg, var(--v915-gold), var(--v915-primary)); }
.v915-badge { position: absolute; margin-left: 2.6rem; margin-top: -2rem; min-width: 1.7rem; height: 1.7rem; border-radius: 999px; background: var(--v915-coral); color: #fff; font-size: .95rem; display: grid; place-items: center; }

@media (max-width: 768px) { main { padding-bottom: 80px; } }
@media (min-width: 769px) {
  .v915-container, .v915-header-row { width: min(1180px, calc(100% - 4rem)); max-width: none; }
  .v915-page { padding-top: 8rem; }
  .v915-bottom-nav { display: none; }
  .v915-menu-btn { display: none; }
  .v915-desktop-nav { display: flex; gap: 1rem; margin-left: 2rem; }
  .v915-desktop-nav a { color: var(--v915-muted); text-decoration: none; font-weight: 800; }
  .v915-hero-card { display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; }
  .v915-carousel { aspect-ratio: auto; min-height: 36rem; }
  .v915-game-grid { grid-template-columns: repeat(8, 1fr); }
  .v915-feature-grid { grid-template-columns: repeat(4, 1fr); }
  .v915-grid.v915-two { grid-template-columns: 1fr 1fr; }
  .v915-footer { padding-bottom: 3rem; }
}
