:root{
  --bg: #100a1b;
  --bg-2: #0e0714;

  --panel: #1b0e2a;
  --panel-2: #130c24;
  --panel-3: #130a1f;

  --Purple: #633ac4;
  --Purple-2: #633ac4;
  --Purple-3: #633ac4;

  --gold: #c7a24a;
  --gold-2:#a8842f;

  --text: #e8f2ee;
  --muted: rgba(232,242,238,.72);
  --muted-2: rgba(232,242,238,.55);

  --shadow: 0 14px 40px rgba(0,0,0,.38);
  --shadow-soft: 0 10px 24px rgba(0,0,0,.28);

  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;

  --ring: 0 0 0 3px rgba(199,162,74,.28);


  --desktop-utility-h: 45px;
  --desktop-nav-h: 57px;
  --mobile-nav-h: 57px;
  --drawer-w: 300px;
}

*{ box-sizing: border-box; }
html, body { touch-action: manipulation; }

body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: url("../img/bg/bg.jpg") center center / cover no-repeat fixed;
  background-color: #041814;
  color: var(--text);
  overflow-x: hidden;
  padding-top: calc(var(--desktop-utility-h) + var(--desktop-nav-h));
}

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

.container{
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.sr-only{
  position:absolute !important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* =========================================================
   TOP HEADER BACKGROUND
========================================================= */
.top-header{
  background: linear-gradient(135deg, #0f6f56 0%, #0d5f49 55%, #0a3b2e 100%);
  padding-top: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
}

/* =========================================================
   TOP UTILITY BAR
========================================================= */
.utility-bar{
  background: #0b0f10;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.utility-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.utility-left{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
}

.mini-mark{ display:none !important; }

.wp-icon{
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

.utility-text{
  font-size: 12px;
  color: var(--muted);
  line-height: 1.2;
}

.utility-right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: .25px;
}

.utility-item{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.utility-ico{
  width: 14px;
  height: 14px;
  object-fit: contain;
  opacity: .95;
  flex: 0 0 auto;
}

.user-pill, .balance-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  font-size: 11px;
  white-space: nowrap;
}

.user-name{
  font-weight: 700;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
}

.balance-label{
  color: rgba(255,255,255,.75);
  font-weight: 700;
  letter-spacing: .2px;
}

.balance-value{
  font-weight: 800;
  color: var(--gold);
}

.utility-link{
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .25px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  text-decoration: none;
  color: rgba(255,255,255,.88);
  transition: color .15s ease, opacity .15s ease;
}

.utility-link:hover{ color: rgba(199,162,74,.95); }

.utility-link:focus-visible{
  outline: none;
  box-shadow: var(--ring);
  border-radius: 10px;
  padding: 2px 6px;
}

.utility-link.danger{ color: rgba(255,255,255,.88); }
.utility-link.danger:hover{ color: rgba(255,120,120,.95); }

/* =========================================================
   MAIN NAV
========================================================= */
.nav-wrap{
  background: linear-gradient(180deg, rgba(124, 34, 177, 0.98), rgba(114, 13, 209, 0.98));
  border-bottom: 1px solid rgba(0,0,0,.3);
  position: fixed;
  top: var(--desktop-utility-h);
  left: 0;
  width: 100%;
  z-index: 1199;
}

.nav-accent{
  height: 3px;
  background: linear-gradient(90deg, rgba(199,162,74,0), rgba(199,162,74,.9), rgba(199,162,74,0));
}

.nav-inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}

.nav-toggle{
  display: none;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 0;
  background: rgba(0,0,0,.12);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle:focus-visible{ outline: none; box-shadow: var(--ring); }

.burger{ width: 18px; height: 12px; position: relative; }
.burger::before,
.burger::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
}
.burger::before{ top:0; box-shadow: 0 5px 0 rgba(255,255,255,.92); }
.burger::after{ bottom:0; }

.nav-left,
.nav-right{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-left{ justify-content: flex-start; }
.nav-right{ justify-content: flex-end; }

.nav-link{
  position: relative;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .7px;
  padding: 10px 6px;
  text-decoration: none;
  white-space: nowrap;

  color: rgba(255,255,255,.92);

  background: linear-gradient(90deg, #ffd84d 0%, #ffd84d 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;

  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255,255,255,.92);
  background-clip: text;

  transition: background-size .35s ease;
}

.nav-link:hover{
  background-size: 100% 100%;
  -webkit-text-fill-color: transparent;
}

.nav-link.active{
  background-size: 100% 100%;
  -webkit-text-fill-color: transparent;
}

.nav-logo{
  justify-self: center;
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.nav-logo .logo-mark,
.nav-logo .logo-text{ display:none !important; }

.nav-logo-img{
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
}

.nav-balance{
  display: none;
  justify-self: end;
  text-align: right;
  line-height: 1.05;
  white-space: nowrap;
}

.nav-balance .nav-balance-label{
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .9px;
  color: rgba(255,255,255,.75);
}

.nav-balance .nav-balance-value{
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
}

/* drawer container (mobile only) */
.nav{ display: none; }

/* =========================================================
   HERO
========================================================= */
.hero{ padding: 16px 0 10px; }
.hero-shell{ position: relative; }

.hero-stage{
  height: 189px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(6,30,24,.92), rgba(8,45,36,.92));
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
}

.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media .hero-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity .35s ease;
}
.hero-media .hero-slide.is-active{ opacity: 1; }
.hero-media video.hero-slide{ display:block; }

.hero-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(80% 120% at 20% 30%, rgba(0,0,0,.08) 0%, rgba(0,0,0,.28) 60%, rgba(0,0,0,.52) 100%);
}

.hero-arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.32);
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
  color: rgba(255,255,255,.95);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  z-index: 3;
}
.hero-arrow:hover{
  transform: translateY(-50%) scale(1.04);
  background: rgba(0,0,0,.4);
  border-color: rgba(199,162,74,.28);
}
.hero-arrow:focus-visible{ outline: none; box-shadow: var(--ring); }
.hero-arrow.left{ left: 12px; }
.hero-arrow.right{ right: 12px; }
.hero-arrow span{ font-size: 24px; font-weight: 800; }

.hero-dots{
  position:absolute;
  left: 16px;
  bottom: 12px;
  display:flex;
  gap: 8px;
  align-items:center;
  z-index: 3;
}
.hero-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.hero-dot.active{
  width: 22px;
  background: rgba(199,162,74,.75);
  border-color: rgba(199,162,74,.35);
}

/* =========================================================
   CATEGORY STRIP
========================================================= */
.strip-card--banners{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.strip-tile{
  position: relative;
  border-radius: var(--radius-lg);
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px 18px;
  overflow: hidden;
  border: 0;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}

.strip-tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
}

.strip-tile:focus-visible{ outline: none; box-shadow: var(--ring); }

.strip-banner{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

.strip-text{ position: relative; z-index: 1; }
.strip-text--right{ margin-left: auto; text-align: right; }

.strip-title{
  font-weight: 900;
  letter-spacing: .7px;
  font-size: 20px;
  line-height: 1;
}
.strip-subtitle{ margin-top: 4px; font-size: 12px; color: var(--muted); }

.strip-center{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  z-index: 3;
  pointer-events: none;
}
.strip-chip{
  width: 74px;
  height: 74px;
  border-radius: 999px;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.35));
}
.strip-chip-front{
  position: absolute;
  width: 60px;
  height: 60px;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}
.strip-tile--slots:hover ~ .strip-center .strip-chip{ animation: stripSpinLeft .75s linear infinite; }
.strip-tile--live:hover ~ .strip-center .strip-chip{ animation: stripSpinRight .75s linear infinite; }

@keyframes stripSpinLeft{ from{ transform: rotate(0deg); } to{ transform: rotate(-360deg); } }
@keyframes stripSpinRight{ from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } }

/* =========================================================
   GAMES SEARCH
========================================================= */
.games{ padding: 6px 0 26px; }

.games-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.games-title{
  display:flex;
  align-items:center;
  gap: 10px;
}
.games-title h2{
  margin: 0;
  font-size: 11px;
  letter-spacing: .8px;
  font-weight: 900;
  color: rgba(10, 10, 10, 0.92);
}
.flame{ filter: drop-shadow(0 8px 14px rgba(0,0,0,.35)); }

.games-search{
  min-width: 280px;
  width: min(420px, 100%);
  
}

.search-box{ position: relative; width: 100%; }

.search-box input{
  width: 100%;
  height: 40px;
  border-radius: 999px;
  padding: 0 40px 0 16px;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.92);
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  outline: none;
  box-shadow: 0 12px 22px rgba(0,0,0,.18);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.search-box select{
  width: 100%;
  height: 40px;
  border-radius: 999px;
  padding: 0 40px 0 16px;
  font-size: 15px;
  color: rgba(17, 17, 17, 0.92);
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  outline: none;
  box-shadow: 0 12px 22px rgba(0,0,0,.18);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.search-box input::placeholder{ font-size: 12px; color: rgba(56, 56, 56, 0.55); }
.search-box input:focus{ border: 1px solid #a929ff; box-shadow: none; }

.search-icon{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: .75;
  pointer-events: none;
}

/* =========================================================
   GAME GRID
========================================================= */
.grid-wrap{ position: relative; }

.game-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.game-card{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  border: 0;
  outline: none;
  padding: 0;
  min-height: 132px;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
  transform: translateZ(0);
  transition: transform .16s ease, box-shadow .16s ease;
}
.game-card:hover{ transform: translateY(-3px); box-shadow: 0 24px 52px rgba(0,0,0,.32); }
.game-card:focus-visible{ outline: none; box-shadow: 0 0 0 3px rgba(199,162,74,.24), 0 24px 52px rgba(0,0,0,.32); }

.game-thumb{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: rgba(0,0,0,.25);
}

.game-badge{
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(255,255,255,.9);
  z-index: 7;
}

.game-fade{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 42%,
    rgba(0,0,0,.52) 74%,
    rgba(0,0,0,.90) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.game-play{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.98);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
  z-index: 5;
}
.game-play::before{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.game-play img{
  width: 104px;
  height: 104px;
  object-fit: contain;
  position: relative;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.55));
}
.game-card:hover .game-play,
.game-card:active .game-play,
.game-card.is-pressed .game-play{
  opacity: 1;
  transform: scale(1);
}

.game-meta{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  z-index: 8;
}
.game-name{
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .3px;
  color: #ffffff;
  text-shadow: 0 10px 18px rgba(0,0,0,.78);
  padding: 0 8px;
}
.game-provider{ display: none !important; }

/* =========================================================
   EMPTY STATE + FOOTER
========================================================= */
.empty-state{
  margin-top: 18px;
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.empty-title{ font-weight: 900; letter-spacing: .4px; }
.empty-sub{ margin-top: 6px; color: var(--muted); font-size: 12px; }

.site-footer{
  margin-top: 28px;
  background: #070a0b;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner{
  padding: 22px 0;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-left{
  display:flex;
  align-items:center;
  gap: 18px;
}

.footer-logo-img{
  height: 42px;
  width: auto;
  object-fit: contain;
  display:block;
}

.footer-copy{
  font-size: 11px;
  color: rgba(232,242,238,.72);
  line-height: 1.5;
}

.powered{ margin-top: 6px; color: rgba(232,242,238,.55); }

.powered a{
  color: #2cc77e;
  font-weight: 700;
  text-decoration: none;
  margin-left: 4px;
  transition: opacity .2s ease;
}
.powered a:hover{ opacity: .75; }

.footer-right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.pay-item{
  height: 17px;
  display: inline-flex;
  align-items: center;
}

.pay-ico{
  height: 100%;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease;
}
.pay-ico:hover{ opacity: 1; transform: translateY(-2px); }

.footer-mobile{
  display: none;
}

.footer-mobile-top{
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-mobile-payments{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-mobile-payments .pay-ico{
  height: 17px;
  width: auto;
  max-width: 110px;
}

.footer-mobile-copy{
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  color: rgba(232,242,238,.72);
  line-height: 1.5;
}

/* =========================================================
   SUPPORT MODAL
========================================================= */
.support-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.support-modal.is-open{ display: block; }

.support-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.support-panel{
  position: relative;
  width: min(520px, calc(100% - 28px));
  margin: 70px auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  color: #0b0f10;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.35);
}

.support-close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  color: #0b0f10;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
  display: grid;
  place-items: center;
  z-index: 5;
}
.support-close:hover{ background: rgba(255,255,255,.96); }

.support-banner{ width: 100%; height: 140px; background: #0f6f56; }
.support-banner-img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.support-body{ padding: 18px 18px 20px; text-align: center; }

.support-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 10px;
}

.support-ico{
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.support-title{ font-size: 22px; font-weight: 900; letter-spacing: .2px; }
.support-handle{ color: #880dda; font-weight: 900; }

.support-text{
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(0,0,0,.78);
}

.support-link{ text-decoration: none; transition: opacity .2s ease, transform .15s ease; }
.support-link:hover{ opacity: .8; transform: translateY(-1px); }

.support-text--ph{ font-weight: 800; color: #650dd8; }

/* =========================================================
   LOGIN PAGE
========================================================= */
body.login-page{
  color: var(--text);
  background: var(--bg);
  overflow: hidden;
  padding-top: 0;
}

.video-bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #000;
}

.video-bg__media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-bg__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 600px at 20% 20%, rgba(113, 27, 212, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.75));
}

.login-stage{
  position: relative;
  z-index: 1;
  min-height: 75vh;
  display: grid;
  place-items: center;
  padding: 10px;
  overflow: hidden;
}

#container{
  width: 100%;
  max-width: 880px;
  position: relative;
  z-index: 2;
}

.login-card{
  display: grid;
  grid-template-columns: 1fr 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  background: rgba(21, 10, 34, 0.25);
}

.login-side-art{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  opacity: .95;
}

.login-side-art img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.45));
}

.login-side-art--left{
  left: 30px;
  width: clamp(220px, 30vw, 100px);
}

.login-side-art--right{
  right: 30px;
  width: clamp(220px, 30vw, 100px);
}

.login-stage{
  overflow: visible;
}

.logoContainer{
  padding: 36px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
}

.logo{
  width: 250px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.45));
}

.brandText{
  font-weight: 300;
  letter-spacing: 1.6px;
  font-size: 24px;
  background: linear-gradient(90deg, #fff, #ae4bff, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brandSub{
  font-size: 11px;
  letter-spacing: .8px;
  color: rgba(255,255,255,.65);
}

.acceptContainer{
  padding: 36px 30px;
  background: rgba(10,16,18,.82);
  border-left: 1px solid rgba(255,255,255,.08);
}

.login-title{
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 30px;
  letter-spacing: .6px;
}

.formContainer{
  margin-top: 10px;
}

.formDiv{
  margin-bottom: 26px;
}

.formDiv p{
  margin: 0 0 10px 0;
  font-size: 11px;
  letter-spacing: .8px;
  color: rgba(255,255,255,.65);
}

.formDiv input{
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 0 14px;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.25);
}

.formDiv input:focus{
  outline: none;
  box-shadow: inset 0 -2px 0 #fff;
}

.acceptBtn{
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 14px 0;
  font-weight: 500;
  letter-spacing: .5px;
  color: #fff;
  background: linear-gradient(135deg, #621bd4, #320777);
  box-shadow: 0 14px 32px rgba(0,0,0,.4);
  cursor: pointer;
  transition: transform .15s ease;
}

.acceptBtn:hover{
  transform: translateY(-2px);
}

@media (max-width: 1280px){
  .login-side-art--left{
    left: 24px;
    width: clamp(150px, 14vw, 220px);
  }

  .login-side-art--right{
    right: 24px;
    width: clamp(150px, 14vw, 220px);
  }
}

@media (max-width: 920px){
  .login-card{
    grid-template-columns: 1fr;
  }

  .logoContainer{
    padding: 26px 20px;
  }

  .logo{
    width: 190px;
    height: 190px;
  }

  .brandText{
    font-size: 20px;
  }

  .acceptContainer{
    padding: 26px 20px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .login-title{
    margin-bottom: 20px;
  }

  .formDiv{
    margin-bottom: 20px;
  }

  .login-side-art{
    display: none;
  }
}


/* =========================================================
   BREAKPOINTS
========================================================= */
@media (max-width: 1199px){
  .hero-stage{ height: 172px; }
  .game-grid{ grid-template-columns: repeat(4, 1fr); }
  .nav-left, .nav-right{ gap: 12px; }
  .nav-link{ padding: 9px 10px; font-size: 12px; }
  .nav-logo-img{ max-width: 130px; }
}

@media (max-width: 991px){
  .hero-stage{ height: 154px; }
  .game-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px){
  .container{ width: min(1160px, calc(100% - 22px)); }
  .hero-stage{ height: 114px; }

  body{
    padding-top: var(--mobile-nav-h);
  }

  .top-header{
    display: none;
  }

  .utility-bar{
    display: none;
  }

  .nav-wrap{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
  }

  .nav-toggle{ display:flex; }
  .utility-right{ display:none; }
  .utility-inner{
    justify-content: flex-start;
  }
  .games-search{
    min-width: 0;
    width: auto;
    flex: 1;
  }

  .nav-inner{ grid-template-columns: 44px 1fr auto; gap: 10px; }
  .nav-left, .nav-right{ display:none; }
  .nav-balance{ display:block; justify-self: end; }

  /* SIDE DRAWER */
  .nav{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--drawer-w);
    max-width: calc(100% - 56px);
    height: 100vh;
    padding: 84px 14px 20px;
    background: linear-gradient(180deg, rgba(46, 17, 70, 0.98), rgba(29, 3, 63, 0.98));
    border-right: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 60px rgba(0,0,0,.55);
    transform: translateX(-110%);
    transition: transform .2s ease;
    z-index: 1100;
    overflow-y: auto;
  }
  .nav.open{ transform: translateX(0); }

  .drawer-header{
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 12px 12px;
    box-shadow: 0 12px 22px rgba(0,0,0,.22);
    margin-bottom: 12px;
  }
  .drawer-row{
    display:flex;
    align-items:center;
    gap: 10px;
  }
  .drawer-row + .drawer-row{
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .drawer-ico{
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: .95;
    flex: 0 0 auto;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.28));
  }
  .drawer-k{
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .6px;
    color: rgba(255,255,255,.75);
    line-height: 1.1;
  }
  .drawer-v{
    margin-top: 2px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .2px;
    color: rgba(255,255,255,.92);
    line-height: 1.15;
    word-break: break-word;
  }
  .drawer-v--gold{ color: var(--gold); }

  .drawer-sep{
    border: 0;
    border-top: 1px solid rgba(255,255,255,.10);
    margin: 12px 0;
  }

  .nav .nav-link{
    width: 100%;
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.92);
    -webkit-text-fill-color: rgba(255,255,255,.92);
    background-clip: border-box;
    -webkit-background-clip: border-box;
    background-size: auto;
  }

  .nav .nav-link--with-ico{
    display:flex;
    align-items:center;
    gap: 10px;
    padding: 12px 12px;
  }

  .nav-ico{
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 auto;
    opacity: .95;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.28));
  }

  .nav .nav-link:hover{
    background: rgb(74, 10, 116);
    color: rgba(255,255,255,.95);
    -webkit-text-fill-color: rgba(255,255,255,.95);
  }

  .nav .nav-link.active{
    background: rgba(10, 116, 75, .55);
    color: rgba(255,255,255,.95);
    -webkit-text-fill-color: rgba(255,255,255,.95);
  }

  .game-play img{ width: 86px; height: 86px; }
  .strip-card--banners{ grid-template-columns: 1fr; gap: 12px; }
  .strip-tile{ min-height: 88px; }

  .footer-mobile{ display: block; }
  .site-footer:not(.footer-mobile){ display: none; }
}

@media (max-width: 480px){
  .support-panel{ margin-top: 54px; }
  .support-banner{ height: 120px; }
  .support-title{ font-size: 20px; }

  .point-agent-page .pa-panel{ margin-top: 9vh; }
  .point-agent-page .pa-s-price{ font-size: 30px; }
  .point-agent-page .pa-qr-img{ width: 190px; height: 190px; }
}

@media (max-width: 360px){
  .nav-logo-img{ height: 30px; }
  .game-play img{ width: 78px; height: 78px; }
}

@media (max-width: 920px){
  .login-card{ grid-template-columns: 1fr; }
  .logoContainer{ padding: 26px 20px; }
  .logo{ width: 190px; height: 190px; }
  .brandText{ font-size: 20px; }
  .acceptContainer{
    padding: 26px 20px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .login-title{ margin-bottom: 20px; }
  .formDiv{ margin-bottom: 20px; }
}

@media (min-width: 768px){
  .footer-mobile{ display: none; }

  .nav-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }
  .nav-left, .nav-right{ flex: 0 0 auto; gap: 14px; }
  .nav-logo{ flex: 0 0 auto; margin: 0 8px; }
}


/* =========================================================
   POINT AGENT PAGE
========================================================= */
body.point-agent-page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: url("../img/bg/bg.jpg") center center / cover no-repeat fixed;
  background-color: #0c0418;
}

body.point-agent-page main{
  flex: 1 0 auto;
}

body.point-agent-page .site-footer{
  margin-top: auto;
}

.nav-wrap--pointagent{
  background: linear-gradient(180deg, rgba(124, 34, 177, 0.98), rgba(114, 13, 209, 0.98));
}

.nav-inner--pointagent{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.pa-brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.pa-logo{
  height: 32px;
  width: auto;
}

.pa-divider{
  opacity: .7;
  font-weight: 400;
}

.pa-title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .3px;
}

.pa-hero{
  padding: 22px 0 28px;
}

.pa-support-btn{
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  border-radius: 12px;
  transition: transform .15s ease, opacity .15s ease;
}

.pa-support-btn:hover{
  transform: translateY(-2px);
  opacity: .85;
}

.pa-support-ico{
  width: 24px;
  height: 24px;
}

.pa-shell{
  width: min(880px, 100%);
  margin: 20px auto 40px;
}

.pa-list{
  display: grid;
  gap: 18px;
}

.pa-card{
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 100px 1fr 220px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 48px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease;
  padding: 0;
  text-align: left;
}

.pa-card:hover{
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px rgba(127, 57, 207, 0.45),
    0 0 22px rgba(140, 57, 207, 0.25),
    0 0 44px rgba(199, 162, 74, .16);
}

.pa-buy{
  background: linear-gradient(180deg, rgba(97, 18, 170, 0.95), rgba(51, 10, 116, 0.95));
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 0;
  height: 100%;
}

.pa-cart{
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform .3s ease;
}

.pa-card:hover .pa-cart{
  animation: cartWiggle .8s ease-in-out infinite;
}

@keyframes cartWiggle{
  0%{transform:rotate(0deg)}
  25%{transform:rotate(-8deg)}
  50%{transform:rotate(8deg)}
  75%{transform:rotate(-6deg)}
  100%{transform:rotate(0deg)}
}

.pa-buy-text{
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
}

.pa-main{
  background: #fff;
  color: #111;
  padding: 16px 18px;
  display: grid;
  align-content: center;
  justify-items: start;
  text-align: left;
  gap: 10px;
}

.pa-top{
  display: grid;
  gap: 8px;
  width: 100%;
  justify-items: start;
  text-align: left;
}

.pa-tag{
  font-size: 12px;
  font-weight: 500;
  color: #0c0c0c;
  margin-bottom: 8px;
  width: 100%;
  text-align: left;
}

.pa-meta{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
}

.pa-meta-item{
  display: flex;
  align-items: center;
  gap: 6px;
}

.pa-ico{
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: .92;
}

.pa-price{
  font-size: 26px;
  font-weight: 500;
  margin-top: 12px;
  color: rgba(82, 6, 170, 0.98);
  width: 100%;
  text-align: left;
}

.pa-coin{
  background: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.pa-coin-img{
  width: 100%;
  max-height: 110px;
  object-fit: contain;
}

.pa-modal{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.pa-modal.is-open{
  display: block;
}

.pa-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pa-panel{
  position: relative;
  width: min(420px, calc(100vw - 28px));
  margin: 10vh auto 0;
  background: rgba(255,255,255,.95);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  color: #0b0f0e;
  font-weight: 400;
}

.pa-close{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.10);
  cursor:pointer;
}

.pa-close:hover{
  background: rgba(0,0,0,.10);
}

.pa-close-ico{
  width: 16px;
  height: 16px;
  display:block;
}

.pa-panel-head{
  background: #691ccf;
  padding: 18px 18px 14px;
  color: #fff;
}

.pa-panel-title{
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: .2px;
}

.pa-panel-sub{
  margin-top: 3px;
  font-size: 12px;
  color: #fff;
  opacity: .92;
  font-weight: 400;
  letter-spacing: .2px;
}

.pa-panel-body{
  padding: 16px 18px 18px;
}

.pa-field{
  position: relative;
}

.pa-label{
  font-size: 13px;
  color: rgba(0,0,0,.70);
  margin-bottom: 8px;
  font-weight: 500;
}

.pa-dd{
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: 2px solid #8e2de9;
  background: #fff;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 0 12px;
  cursor: pointer;
}

.pa-dd-ico{
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.pa-dd-text{
  font-size: 15px;
  font-weight: 500;
  color: #0b0f0e;
}

.pa-dd-caret{
  margin-left: auto;
  font-size: 14px;
  opacity: .7;
}

.pa-dd-menu{
  position:absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background:#fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  padding: 6px;
  display:none;
  z-index: 5;
}

.pa-dd-menu.is-open{
  display:block;
}

.pa-dd-item{
  width: 100%;
  text-align:left;
  border: 0;
  background: transparent;
  padding: 10px 10px;
  border-radius: 10px;
  cursor:pointer;
  font-size: 14px;
  font-weight: 500;
  color: #0b0f0e;
}

.pa-dd-item:hover{
  background: rgba(15,111,86,.10);
}

.pa-summary{
  margin-top: 14px;
  border-radius: 16px;
  background: rgba(65, 15, 111, 0.08);
  border: 1px solid rgba(68, 15, 111, 0.2);
  padding: 14px 14px 12px;
}

.pa-s-tag{
  font-size: 13px;
  letter-spacing: .3px;
  color: #510f6f;
  font-weight: 500;
}

.pa-s-price{
  margin-top: 6px;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 500;
  color: #4e1094;
}

.pa-s-meta{
  margin-top: 12px;
  display:grid;
  gap: 10px;
}

.pa-s-row{
  display:flex;
  align-items:center;
  gap: 10px;
}

.pa-s-ico{
  width: 18px;
  height: 18px;
  opacity: .9;
}

.pa-s-txt{
  font-size: 16px;
  font-weight: 500;
  color:#0b0f0e;
}

.pa-next{
  margin-top: 14px;
  width: 100%;
  height: 54px;
  border-radius: 14px;
  border: 0;
  background: #7319da;
  color: #fff;
  font-weight: 500;
  letter-spacing: .6px;
  cursor: pointer;
}

.pa-next:hover{
  filter: brightness(1.05);
}

.pa-panel-body--pay{
  padding-top: 14px;
}

.pa-pay-note{
  font-size: 13px;
  color: rgba(0,0,0,.70);
  font-weight: 400;
}

.pa-qr{
  display:flex;
  justify-content:center;
  padding: 14px 0 6px;
}

.pa-qr-img{
  width: 210px;
  height: 210px;
  object-fit: contain;
  background: #fff;
}

.pa-pay-row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  padding: 6px 0 8px;
}

.pa-pay-method,
.pa-pay-amount{
  font-size: 13px;
  color: rgba(0,0,0,.75);
  font-weight: 500;
}

.pa-pay-amount-v{
  color:#0f6f56;
  font-weight: 500;
}

.pa-addr-box{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.10);
}

.pa-addr{
  font-size: 12px;
  font-weight: 500;
  color: rgba(0,0,0,.78);
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pa-copy{
  margin-left:auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 0;
  background: rgba(0,0,0,.08);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.pa-copy:disabled{
  opacity:.45;
  cursor:not-allowed;
}

.pa-copy-ico{
  font-size: 16px;
  line-height: 1;
  opacity: .85;
}

.pa-copied{
  height: 16px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #0f6f56;
  opacity: 0;
  transition: opacity .18s ease;
}

.pa-copied.is-on{
  opacity: 1;
}

.pa-terms{
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(0,0,0,.70);
  font-weight: 400;
}

.pa-terms p{
  margin: 0 0 8px;
}

.pa-timer{
  margin-top: 10px;
}

.pa-timer-bar{
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.12);
  overflow:hidden;
}

.pa-timer-fill{
  height: 100%;
  width: 100%;
  background: #750bd8;
  transition: width .2s linear;
}

.pa-timer-text{
  margin-top: 8px;
  font-size: 11px;
  color: rgba(0,0,0,.70);
  font-weight: 400;
  text-align:center;
}

.pa-expired{
  margin-top: 12px;
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(220,40,40,.08);
  border: 1px solid rgba(220,40,40,.22);
  text-align:center;
  font-size: 20px;
  font-weight: 500;
  color: #d62828;
}

@media (max-width: 900px){
  .pa-shell{ width: min(780px, 100%); }
  .pa-card{ grid-template-columns: 96px 1fr 200px; }
  .pa-price{ font-size: 28px; }
}

@media (max-width: 768px){
  .pa-card{ grid-template-columns: 80px 1fr; }
  .pa-coin{ display: none; }
}

@media (max-width: 720px){
  .pa-card{ grid-template-columns: 90px 1fr; }
  .pa-main{
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
  }
}

@media (max-width: 480px){
  .pa-panel{ margin-top: 9vh; }
  .pa-s-price{ font-size: 30px; }
  .pa-qr-img{ width: 190px; height: 190px; }
}

@media (max-width: 420px){
  .pa-logo{ height: 30px; }
  .pa-title{ font-size: 15px; }
  .pa-buy{ padding: 12px 8px; }
  .pa-cart{
    width: 30px;
    height: 30px;
  }
  .pa-meta-item{ font-size: 12.5px; }
  .pa-price{ font-size: 24px; }
}