*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
html{
  height:100%;
  overflow:hidden;
  background:#fff0c8;
}
body{
  font-family:Arial,sans-serif;
  background:#fff0c8;
  height:100%;
  overflow:hidden;
  color:#50323c;
}
.page-scroll{
  position:fixed;
  inset:0;
  overflow-x:hidden;
  overflow-y:auto;
  overscroll-behavior:contain;
  scrollbar-width:thin;
  scrollbar-color:rgba(255,175,56,.65) transparent;
}
.page-scroll::-webkit-scrollbar{
  width:6px;
}
.page-scroll::-webkit-scrollbar-track{
  background:transparent;
}
.page-scroll::-webkit-scrollbar-thumb{
  background:rgba(255,175,56,.55);
  border-radius:999px;
}
.page-scroll::-webkit-scrollbar-thumb:hover{
  background:rgba(255,175,56,.75);
}
a{
  color:inherit;
}
.site-container{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding-left:20px;
  padding-right:20px;
}
/* ── Header ── */
.site-header{
  width:100%;
  background:#f0de9e;
  border-bottom:1px solid rgba(255,190,80,.35);
  box-shadow:0 4px 14px rgba(255,185,70,.15);
  position:sticky;
  top:0;
  z-index:100;
}
.site-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:56px;
  padding-top:12px;
  padding-bottom:12px;
}
.site-logo{
  flex-shrink:0;
  display:flex;
  align-items:center;
  text-decoration:none;
}
.site-logo img,
.brand-logo{
  display:block;
  height:44px;
  width:auto;
}
.nav-toggle{
  display:none;
}
.site-nav{
  display:flex;
  align-items:center;
  justify-content:center;
}
.nav-menu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  list-style:none;
  flex-wrap:nowrap;
  padding:0;
}
.nav-menu a{
  text-decoration:none;
  font-size:12px;
  font-weight:800;
  color:#50323c;
  letter-spacing:.6px;
  transition:color .2s;
}
.nav-menu a:hover,
.nav-menu a.active{
  color:#7d4300;
}
.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-shrink:0;
}
.btn-register{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 18px;
  border-radius:10px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.5px;
  text-decoration:none;
  color:#7d4300;
  background:linear-gradient(180deg,#ffd770,#ffaf38);
  transition:background .2s ease;
  white-space:nowrap;
}
.btn-register:hover{
  background:linear-gradient(180deg,#ffaf38,#ffd770);
}
/* ── Hero (full width, banner 1920×613) ── */
.hero-banner{
  position:relative;
  width:100%;
  aspect-ratio:1920 / 613;
  background:#f5b848;
  text-align:center;
  color:#7d4300;
  overflow:hidden;
}
.hero-banner-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
  background:#f5b848;
}
.hero-banner-img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.hero-banner-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(255,255,255,.1), rgba(255,255,255,.02));
  pointer-events:none;
}
.hero-inner{
  position:absolute;
  inset:0;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:720px;
  margin:0 auto;
  padding:24px 20px;
  box-sizing:border-box;
}
.hero-tag{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
  font-size:11px;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:16px;
  backdrop-filter:blur(4px);
}
.hero-banner h1{
  font-size:clamp(28px,6vw,42px);
  font-weight:900;
  line-height:1.15;
  margin-bottom:14px;
  text-shadow:0 2px 12px rgba(255,255,255,.3);
}
.hero-banner p{
  font-size:15px;
  line-height:1.65;
  max-width:520px;
  margin:0 auto 28px;
  opacity:.9;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}
.btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:10px;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
  letter-spacing:.3px;
  transition:transform .2s, box-shadow .2s;
  border:none;
  cursor:pointer;
}
.btn:hover{
  transform:translateY(-2px);
}
.btn-primary{
  background:linear-gradient(180deg,#ffd770,#ffaf38);
  color:#7d4300;
  transition:background .2s ease, transform .2s, box-shadow .2s;
}
.btn-primary:hover{
  background:linear-gradient(180deg,#ffaf38,#ffd770);
  transform:none;
  box-shadow:none;
}
.btn-outline{
  background:linear-gradient(180deg,#ffd770,#ffaf38);
  color:#7d4300;
  border:none;
  transition:background .2s ease, transform .2s, box-shadow .2s;
}
.btn-outline:hover{
  background:linear-gradient(180deg,#ffaf38,#ffd770);
  transform:none;
  box-shadow:none;
}
.hero-stats{
  display:flex;
  justify-content:center;
  gap:32px;
  margin-top:36px;
  flex-wrap:wrap;
}
.hero-stat strong{
  display:block;
  font-size:22px;
  font-weight:900;
}
.hero-stat span{
  font-size:11px;
  opacity:.85;
  letter-spacing:.5px;
  text-transform:uppercase;
}
/* ── Main content ── */
.home-content{
  padding-top:28px;
  padding-bottom:40px;
}
.section-head{
  margin-bottom:20px;
}
.section-head-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:6px;
}
.section-head-top h2{
  margin-bottom:0;
}
.section-head h2{
  font-size:20px;
  font-weight:900;
  color:#50323c;
  margin-bottom:6px;
}
.section-head p{
  font-size:13px;
  color:#9b7b87;
  line-height:1.5;
}
.section-view-all{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  padding:8px 16px;
  border-radius:999px;
  border:1px solid rgba(255,190,80,.45);
  font-size:12px;
  font-weight:800;
  color:#50323c;
  text-decoration:none;
  background:linear-gradient(180deg,#ffffff,#fff5e6);
  letter-spacing:.3px;
  white-space:nowrap;
  transition:background .2s ease, border-color .2s ease;
}
.section-view-all:hover{
  background:linear-gradient(180deg,#fff8ee,#ffffff);
  border-color:rgba(255,175,56,.7);
}
/* ── Games ── */
.games-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-bottom:40px;
}
.game-card{
  display:flex;
  flex-direction:column;
  color:inherit;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(255,185,70,.18);
  transition:transform .2s ease, box-shadow .2s ease;
  cursor:default;
}
.game-card:hover{
  transform:scale(1.015);
  box-shadow:0 14px 30px rgba(255,185,70,.24);
}
.game-card.disabled{
  opacity:.7;
  pointer-events:none;
}
.game-card-visual{
  width:100%;
  aspect-ratio:16 / 9;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:clamp(48px,14vw,64px);
}
.game-card-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.game-card-visual.baccarat{
  background:linear-gradient(180deg,#79dfb8,#43ba8a);
}
.game-card-visual.slot{
  background:linear-gradient(180deg,#ffd770,#ffaf38);
}
.game-card-body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:18px 20px 20px;
}
.game-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
}
.game-card h3{
  font-size:18px;
  font-weight:900;
  color:#7d4300;
}
.game-badge{
  font-size:10px;
  font-weight:800;
  padding:4px 10px;
  border-radius:10px;
  background:#e8fff4;
  color:#2f8666;
}
.game-badge.soon{
  background:#fff8e8;
  color:#b86a00;
}
.game-card p{
  font-size:13px;
  line-height:1.6;
  color:#9b7b87;
  margin-bottom:16px;
  flex:1;
}
.game-card-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:14px;
  border-top:1px solid rgba(255,190,80,.25);
}
.game-card-label{
  display:inline-block;
  padding:5px 10px;
  border-radius:8px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.4px;
  text-transform:uppercase;
  border:1px solid transparent;
}
.game-card-label.casino{
  background:#e8fff4;
  color:#2f8666;
  border-color:rgba(67,186,138,.35);
}
.game-card-label.slot{
  background:#fff8e8;
  color:#b86a00;
  border-color:rgba(255,175,56,.45);
}
.game-card-play{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 18px;
  border-radius:10px;
  font-size:12px;
  font-weight:900;
  color:#7d4300;
  background:linear-gradient(180deg,#ffd770,#ffaf38);
  letter-spacing:.3px;
  text-decoration:none;
  cursor:pointer;
  transition:background .2s ease;
}
.game-card-play:hover{
  background:linear-gradient(180deg,#ffaf38,#ffd770);
}
/* ── About intro ── */
.about-section{
  margin-bottom:40px;
}
.about-section .section-intro{
  font-size:14px;
  line-height:1.75;
  color:#7a5f6a;
}
.features{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:20px;
}
.feature-item{
  background:#fff;
  border-radius:10px;
  padding:22px 18px;
  box-shadow:0 6px 18px rgba(255,185,70,.12);
  text-align:center;
}
.feature-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  margin:0 auto 12px;
  border-radius:12px;
  background:linear-gradient(180deg,#fff8e8,#fff);
  border:1px solid rgba(255,175,56,.35);
  color:#e89a00;
}
.feature-icon svg{
  width:26px;
  height:26px;
  display:block;
}
.feature-item h3{
  font-size:15px;
  font-weight:900;
  color:#50323c;
  margin-bottom:6px;
}
.feature-item p{
  font-size:13px;
  line-height:1.55;
  color:#9b7b87;
}
/* ── Characters ── */
.characters{
  margin-bottom:40px;
}
.character-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.character-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(255,185,70,.14);
  transition:transform .2s ease, box-shadow .2s ease;
}
.character-card:hover{
  transform:scale(1.015);
  box-shadow:0 10px 26px rgba(255,185,70,.2);
}
.character-visual{
  position:relative;
  aspect-ratio:3 / 4;
  overflow:hidden;
  background:linear-gradient(180deg,#fff8e8,#ffe8b8);
}
.character-visual.c1{
  background:linear-gradient(180deg,#ffe090,#f5b848);
}
.character-visual.c2{
  background:linear-gradient(180deg,#79dfb8,#43ba8a);
}
.character-visual.c3{
  background:linear-gradient(180deg,#ffd770,#ffaf38);
}
.character-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
}
.character-body{
  padding:16px 18px 18px;
  text-align:center;
}
.character-body h3{
  font-size:16px;
  font-weight:900;
  color:#50323c;
  margin-bottom:6px;
}
.character-body p{
  font-size:13px;
  line-height:1.6;
  color:#9b7b87;
}
/* ── CTA strip ── */
.cta-strip{
  background:#fff;
  border-radius:10px;
  padding:28px 22px;
  text-align:center;
  box-shadow:0 10px 28px rgba(255,185,70,.16);
  margin-bottom:8px;
}
.cta-strip h2{
  font-size:18px;
  font-weight:900;
  color:#50323c;
  margin-bottom:8px;
}
.cta-strip p{
  font-size:13px;
  color:#9b7b87;
  line-height:1.55;
  margin-bottom:18px;
}
/* ── Footer ── */
.site-footer{
  width:100%;
  background:#fff;
  border-top:1px solid rgba(255,190,80,.35);
  padding-top:40px;
  padding-bottom:24px;
}
.footer-top{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  margin-bottom:32px;
}
.footer-brand .brand-logo{
  height:40px;
  margin-bottom:10px;
}
.footer-brand p{
  font-size:13px;
  line-height:1.6;
  color:#9b7b87;
  max-width:280px;
}
.footer-col h4{
  font-size:12px;
  font-weight:900;
  color:#50323c;
  letter-spacing:.8px;
  margin-bottom:14px;
  text-transform:uppercase;
}
.footer-links{
  list-style:none;
}
.footer-links li{
  margin-bottom:10px;
}
.footer-links a{
  font-size:13px;
  color:#9b7b87;
  text-decoration:none;
  transition:color .2s;
}
.footer-links a:hover{
  color:#7d4300;
}
.footer-bottom{
  padding-top:24px;
  border-top:1px solid rgba(255,190,80,.25);
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:center;
  text-align:center;
}
.footer-bottom p{
  font-size:12px;
  color:#b89aa6;
}
/* ── Desktop ── */
@media (min-width:768px){
  .site-header-inner{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    padding-top:14px;
    padding-bottom:14px;
  }
  .site-logo{
    grid-column:1;
    justify-self:start;
  }
  .site-nav{
    grid-column:2;
  }
  .header-actions{
    grid-column:3;
    justify-self:end;
  }
  .nav-toggle{
    display:none;
  }
  .btn-register{
    padding:10px 20px;
    font-size:12px;
  }
  .nav-menu{
    gap:28px;
  }
  .nav-menu a{
    font-size:13px;
  }
  .hero-inner{
    padding:32px 24px;
  }
  .home-content{
    padding-top:40px;
    padding-bottom:48px;
  }
  .games-grid{
    grid-template-columns:1fr 1fr;
  }
  .features{
    grid-template-columns:repeat(3,1fr);
  }
  .character-grid{
    grid-template-columns:repeat(3,1fr);
  }
  .footer-top{
    grid-template-columns:1.4fr 1fr 1fr 1fr;
  }
  .footer-bottom{
    flex-direction:row;
    justify-content:space-between;
    text-align:left;
  }
}
/* ── Mobile nav ── */
@media (max-width:767px){
  .page-scroll{
    scrollbar-width:none;
    -ms-overflow-style:none;
  }
  .page-scroll::-webkit-scrollbar{
    display:none;
  }
  .hero-banner{
    aspect-ratio:unset;
    min-height:max(calc(100vw * 613 / 1920), 460px);
  }
  .hero-inner{
    padding:28px 20px;
  }
  .site-header-inner{
    min-height:52px;
  }
  .site-logo img{
    height:38px;
  }
  .btn-register{
    display:none;
  }
  .nav-toggle{
    display:block;
    position:relative;
    width:40px;
    height:40px;
    border:none;
    background:transparent;
    cursor:pointer;
    padding:0;
    flex-shrink:0;
  }
  .nav-toggle span{
    position:absolute;
    left:9px;
    right:9px;
    top:50%;
    height:3px;
    margin-top:-1.5px;
    background:#7d4300;
    border-radius:1px;
    transform-origin:center;
    transition:transform .25s, opacity .25s;
  }
  .nav-toggle span:nth-child(1){
    transform:translateY(-8px);
  }
  .nav-toggle span:nth-child(2){
    transform:translateY(0);
  }
  .nav-toggle span:nth-child(3){
    transform:translateY(8px);
  }
  .site-header.menu-open .nav-toggle span:nth-child(1){
    transform:translateY(0) rotate(45deg);
  }
  .site-header.menu-open .nav-toggle span:nth-child(2){
    opacity:0;
  }
  .site-header.menu-open .nav-toggle span:nth-child(3){
    transform:translateY(0) rotate(-45deg);
  }
  .site-nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#f0de9e;
    border-bottom:1px solid rgba(255,190,80,.35);
    box-shadow:0 10px 20px rgba(255,185,70,.14);
  }
  .site-header.menu-open .site-nav{
    display:block;
  }
  .nav-menu{
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:8px 0;
  }
  .nav-menu li{
    border-bottom:1px solid rgba(255,190,80,.25);
  }
  .nav-menu li:last-child{
    border-bottom:none;
  }
  .nav-menu a{
    display:block;
    padding:14px 20px;
    font-size:13px;
    letter-spacing:.5px;
  }
}
