/* c5411 visual system - mobile first, namespaced */
:root {
  font-size: 62.5%;
  --v860-primary: #d4af37;
  --v860-secondary: #008b8b;
  --v860-accent: #b8860b;
  --v860-bg: #102238;
  --v860-bg-soft: #1a3447;
  --v860-panel: #203d50;
  --v860-text: #e8f5e8;
  --v860-muted: #ced4da;
  --v860-line: rgba(212, 175, 55, .22);
  --v860-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, .34);
  --v860-radius: 1.8rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--v860-text);
  background:
    radial-gradient(circle at 10% 0%, rgba(0,139,139,.26), transparent 30rem),
    radial-gradient(circle at 90% 8%, rgba(212,175,55,.18), transparent 28rem),
    linear-gradient(160deg, #0b1728 0%, var(--v860-bg) 45%, #142b38 100%);
  font-size: 1.6rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
a { color: var(--v860-primary); text-decoration: none; font-weight: 800; }
a:hover { color: #fff1a8; }
img { max-width: 100%; display: block; }
button { font: inherit; }
body.v860-lock { overflow: hidden; }

.v860-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(16, 34, 56, .92);
  border-bottom: .1rem solid var(--v860-line);
  backdrop-filter: blur(1.4rem);
}
.v860-header-shadow { box-shadow: var(--v860-shadow); }
.v860-header-inner {
  width: min(100%, 43rem);
  margin: 0 auto;
  min-height: 6.4rem;
  padding: .8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.v860-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 0;
  color: var(--v860-text);
  font-weight: 900;
}
.v860-logo img { width: 3.2rem; height: 3.2rem; border-radius: .9rem; }
.v860-logo span { font-size: 2rem; letter-spacing: .04em; }
.v860-header-actions { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.v860-btn {
  min-height: 4.4rem;
  min-width: 4.4rem;
  border: 0;
  border-radius: 999rem;
  padding: 0 1.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  color: #06131d;
  background: linear-gradient(135deg, var(--v860-primary), #ffdf6d);
  font-weight: 900;
  box-shadow: 0 .8rem 1.8rem rgba(212,175,55,.25);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.v860-btn:hover, .v860-btn:focus { transform: translateY(-.1rem) scale(1.02); filter: brightness(1.08); }
.v860-btn:active { transform: scale(.96); }
.v860-btn-secondary { background: linear-gradient(135deg, var(--v860-secondary), #5ce0d6); color: #06131d; }
.v860-btn-ghost {
  background: rgba(232,245,232,.08);
  border: .1rem solid var(--v860-line);
  color: var(--v860-text);
  box-shadow: none;
}
.v860-menu-toggle { padding: 0; width: 4.4rem; }
.v860-desktop-nav { display: none; }
.v860-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.v860-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity .2s ease;
}
.v860-menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 34rem);
  height: 100%;
  padding: 2rem;
  background: linear-gradient(180deg, #163044, #091522);
  border-left: .1rem solid var(--v860-line);
  transform: translateX(100%);
  transition: transform .22s ease;
  box-shadow: var(--v860-shadow);
  overflow-y: auto;
}
.v860-menu-open { pointer-events: auto; }
.v860-menu-open .v860-menu-backdrop { opacity: 1; }
.v860-menu-open .v860-menu-drawer { transform: translateX(0); }
.v860-drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.v860-drawer-title { font-size: 2rem; font-weight: 900; color: var(--v860-primary); }
.v860-drawer-links { display: grid; gap: .9rem; }
.v860-drawer-links a {
  display: flex;
  align-items: center;
  min-height: 4.8rem;
  padding: 1rem 1.2rem;
  border-radius: 1.4rem;
  background: rgba(232,245,232,.07);
  border: .1rem solid rgba(206,212,218,.1);
  color: var(--v860-text);
}
.v860-drawer-links a.v860-active { background: rgba(212,175,55,.18); color: var(--v860-primary); }
.v860-main { width: min(100%, 43rem); margin: 0 auto; padding: 7.4rem 1.2rem 2.4rem; }
.v860-section { margin: 1.4rem 0; }
.v860-hero {
  min-height: 50rem;
  border-radius: 0 0 2.6rem 2.6rem;
  padding: 2rem 1.4rem;
  background: linear-gradient(155deg, rgba(0,139,139,.3), rgba(46,64,87,.94)), url('../images/e6e86006_1.jpg') center/cover;
  border: .1rem solid var(--v860-line);
  box-shadow: var(--v860-shadow);
  overflow: hidden;
}
.v860-kicker { color: var(--v860-primary); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 1.2rem; }
.v860-hero h1, .v860-page-hero h1 { font-size: clamp(2.8rem, 8vw, 4rem); line-height: 1.08; margin: 1rem 0; }
.v860-lead { color: var(--v860-muted); font-size: 1.7rem; line-height: 1.55; }
.v860-hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.6rem 0; }
.v860-metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1.4rem; }
.v860-metric { padding: 1rem; border-radius: 1.4rem; background: rgba(8,18,30,.55); border: .1rem solid var(--v860-line); text-align: center; }
.v860-metric strong { display: block; color: var(--v860-primary); font-size: 1.8rem; }
.v860-metric span { color: var(--v860-muted); font-size: 1.1rem; }
.v860-carousel { position: relative; min-height: 16rem; margin-top: 1.6rem; border-radius: 1.8rem; overflow: hidden; border: .1rem solid var(--v860-line); }
.v860-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .45s ease; cursor: pointer; }
.v860-slide img { width: 100%; height: 100%; object-fit: cover; min-height: 16rem; }
.v860-slide-active { opacity: 1; position: relative; }
.v860-card {
  border: .1rem solid var(--v860-line);
  border-radius: var(--v860-radius);
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(32,61,80,.94), rgba(17,35,52,.94));
  box-shadow: 0 .8rem 2.4rem rgba(0,0,0,.2);
}
.v860-card h2, .v860-card h3 { margin: .2rem 0 1rem; line-height: 1.18; color: var(--v860-text); }
.v860-card h2 { font-size: 2.4rem; }
.v860-card h3 { font-size: 1.9rem; }
.v860-card p, .v860-card li { color: var(--v860-muted); line-height: 1.55; }
.v860-grid { display: grid; gap: 1rem; }
.v860-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v860-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v860-chip-row { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1rem 0; }
.v860-chip { padding: .7rem 1rem; border-radius: 999rem; background: rgba(0,139,139,.18); color: var(--v860-text); border: .1rem solid rgba(0,139,139,.36); font-weight: 800; font-size: 1.2rem; }
.v860-promo-link { color: #ffe484; font-weight: 900; text-decoration: underline; text-decoration-thickness: .2rem; text-underline-offset: .25rem; cursor: pointer; }
.v860-game-category { margin: 1.8rem 0; }
.v860-category-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.v860-category-head h2 { margin: 0; font-size: 2.1rem; color: var(--v860-primary); }
.v860-category-head span { font-size: 1.1rem; color: var(--v860-muted); }
.v860-game-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .8rem; }
.v860-game-tile {
  display: grid;
  gap: .5rem;
  color: var(--v860-text);
  text-align: center;
  padding: .7rem .4rem;
  border-radius: 1.2rem;
  background: rgba(232,245,232,.06);
  border: .1rem solid rgba(206,212,218,.1);
  min-height: 9.4rem;
  align-content: start;
}
.v860-game-tile img { width: 5.2rem; height: 5.2rem; border-radius: 1.2rem; margin: 0 auto; object-fit: cover; box-shadow: 0 .5rem 1rem rgba(0,0,0,.24); }
.v860-game-tile span { font-size: 1.1rem; line-height: 1.2; color: var(--v860-text); font-weight: 800; }
.v860-panel-list { display: grid; gap: .9rem; padding: 0; margin: 1rem 0; list-style: none; }
.v860-panel-list li { padding: 1rem; border-radius: 1.2rem; background: rgba(0,139,139,.12); border-left: .35rem solid var(--v860-primary); }
.v860-step { display: flex; gap: 1rem; align-items: flex-start; }
.v860-step b { flex: 0 0 3rem; height: 3rem; display: grid; place-items: center; border-radius: 50%; background: var(--v860-primary); color: #06131d; }
.v860-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 1.2rem; font-size: 1.3rem; }
.v860-table th, .v860-table td { padding: .9rem; border-bottom: .1rem solid rgba(206,212,218,.12); color: var(--v860-muted); text-align: left; }
.v860-table th { color: var(--v860-primary); background: rgba(0,0,0,.18); }
.v860-review { padding: 1rem; border-radius: 1.4rem; background: rgba(212,175,55,.09); }
.v860-payment-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.v860-payment { flex: 1 1 12rem; min-height: 5.4rem; display: grid; place-items: center; border-radius: 1.3rem; background: rgba(232,245,232,.08); border: .1rem solid rgba(206,212,218,.14); font-weight: 900; }
.v860-page-hero { border-radius: 2.2rem; padding: 2rem 1.4rem; background: linear-gradient(145deg, rgba(0,139,139,.28), rgba(32,61,80,.96)); border: .1rem solid var(--v860-line); box-shadow: var(--v860-shadow); }
.v860-help-layout { display: grid; gap: 1rem; }
.v860-footer { width: min(100%, 43rem); margin: 0 auto; padding: 2rem 1.2rem 9rem; color: var(--v860-muted); }
.v860-footer-card { border-radius: 2rem; padding: 1.5rem; background: rgba(8,18,30,.72); border: .1rem solid var(--v860-line); }
.v860-footer-links, .v860-footer-buttons { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1rem 0; }
.v860-footer-links a { color: var(--v860-muted); font-size: 1.3rem; }
.v860-footer-buttons button { flex: 1 1 12rem; }
.v860-partner-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin: 1rem 0; }
.v860-partner { min-height: 4.2rem; border-radius: 1rem; background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(0,139,139,.18)); display: grid; place-items: center; color: var(--v860-text); font-weight: 900; font-size: 1.2rem; }
.v860-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(100%, 43rem);
  height: 6.2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #0d2032;
  border-top: .1rem solid var(--v860-line);
  box-shadow: 0 -1rem 2.5rem rgba(0,0,0,.34);
}
.v860-bottom-item {
  min-width: 6rem;
  min-height: 6rem;
  border: 0;
  background: transparent;
  color: var(--v860-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .16s ease, color .16s ease;
  position: relative;
}
.v860-bottom-item i, .v860-bottom-item ion-icon, .v860-bottom-item .material-icons { font-size: 2.4rem; line-height: 1; }
.v860-bottom-item:active { transform: scale(.9); }
.v860-bottom-item.v860-active, .v860-bottom-item:hover { color: var(--v860-primary); }
.v860-bottom-item.v860-active::before { content: ''; position: absolute; top: .3rem; width: 3.4rem; height: .3rem; border-radius: 999rem; background: var(--v860-primary); }
.v860-badge { position: absolute; top: .4rem; right: 1.2rem; min-width: 1.7rem; height: 1.7rem; border-radius: 50%; background: var(--v860-secondary); color: #06131d; font-size: 1rem; display: grid; place-items: center; }

@media (max-width: 768px) { .v860-main { padding-bottom: 8rem; } }
@media (min-width: 769px) {
  body { background-attachment: fixed; }
  .v860-main, .v860-header-inner, .v860-footer { width: min(100%, 96rem); }
  .v860-desktop-nav { display: flex; align-items: center; gap: 1rem; margin-left: 1.4rem; }
  .v860-desktop-nav a { color: var(--v860-muted); font-size: 1.4rem; }
  .v860-menu-toggle { display: none; }
  .v860-bottom-nav { display: none; }
  .v860-hero { min-height: 44rem; display: grid; align-content: center; }
  .v860-game-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .v860-help-layout { grid-template-columns: 1.1fr .9fr; }
  .v860-card { padding: 2rem; }
  .v860-footer { padding-bottom: 2.4rem; }
}
