/* Pusulabet Theme - style.css */
:root{
  --bg:#070a12;
  --bg2:#0b0f19;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.09);
  --text:#e9eefc;
  --muted:rgba(233,238,252,.72);
  --line:rgba(255,255,255,.12);
  --glow:rgba(124,92,255,.45);
  --accent:#7c5cff;
  --accent2:#00d4ff;
  --radius:18px;
  --shadow:0 18px 50px rgba(0,0,0,.35);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
  color:var(--text);
  background:radial-gradient(1200px 800px at 20% 10%, rgba(124,92,255,.22), transparent 60%),
             radial-gradient(1000px 700px at 80% 15%, rgba(0,212,255,.14), transparent 55%),
             linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
ul{margin:0; padding:0; list-style:none;}
p{line-height:1.65; color:var(--muted);}

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

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background:rgba(7,10,18,.55);
  border-bottom:1px solid var(--line);
}
.header-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:10px;}
.brand-icon{
  width:38px; height:38px;
  border-radius:12px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow:0 0 0 6px rgba(124,92,255,.12);
  font-weight:800;
}
.brand-name{font-weight:800; letter-spacing:.06em;}

.menu{display:flex; gap:18px; align-items:center;}
.menu-link{
  font-size:14px;
  color:rgba(233,238,252,.78);
  padding:8px 10px;
  border-radius:12px;
  transition:background .2s, color .2s;
}
.menu-link:hover{background:rgba(255,255,255,.06); color:var(--text);}
.menu-link.active{background:rgba(124,92,255,.18); color:var(--text);}

.header-cta{display:flex; gap:10px; align-items:center;}
.btn-header{
  display:inline-flex;
  padding:10px 14px;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  transition:transform .15s, background .2s;
}
.btn-header:hover{transform:translateY(-1px); background:rgba(255,255,255,.08);}
.btn-signup{border-color:rgba(124,92,255,.55); box-shadow:0 0 0 6px rgba(124,92,255,.10);}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
}
.burger span{
  display:block;
  height:2px;
  width:18px;
  margin:4px auto;
  background:rgba(233,238,252,.85);
  border-radius:2px;
}

.hero{position:relative; padding:70px 0 40px;}
.hero-visual{
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 420px at 20% 20%, rgba(124,92,255,.35), transparent 62%),
    radial-gradient(600px 420px at 80% 25%, rgba(0,212,255,.22), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  mask-image:linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,.86) 45%, rgba(0,0,0,0) 100%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
  align-items:start;
}
.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:rgba(233,238,252,.86);
  font-size:13px;
}
.tag-dot{
  width:10px; height:10px;
  border-radius:50%;
  background:var(--accent2);
  box-shadow:0 0 18px rgba(0,212,255,.6);
}
.hero h1{
  margin:18px 0 10px;
  font-size:54px;
  line-height:1.05;
  letter-spacing:-.03em;
}
.gradient-text{
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-btns{display:flex; gap:12px; align-items:center; margin:18px 0 14px; flex-wrap:wrap;}
.btn-hero{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:12px 16px;
  border-radius:16px;
  font-weight:800;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  transition:transform .15s, background .2s;
}
.btn-hero:hover{transform:translateY(-1px); background:rgba(255,255,255,.08);}
.btn-primary-hero{
  background:linear-gradient(135deg, rgba(124,92,255,.95), rgba(0,212,255,.55));
  border-color:rgba(255,255,255,.12);
}
.btn-primary-hero:hover{background:linear-gradient(135deg, rgba(124,92,255,1), rgba(0,212,255,.7));}
.arrow{font-weight:900;}

.hero-trust{display:flex; gap:14px; flex-wrap:wrap; margin-top:14px;}
.trust-item{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.trust-icon{
  width:26px; height:26px;
  border-radius:10px;
  display:grid; place-items:center;
  background:rgba(0,212,255,.12);
  border:1px solid rgba(0,212,255,.28);
}

.stats-box{
  display:grid;
  gap:12px;
  padding:18px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
}
.stat-card{
  display:flex;
  gap:14px;
  align-items:center;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
}
.stat-icon{
  width:42px; height:42px;
  border-radius:16px;
  display:grid; place-items:center;
  background:rgba(124,92,255,.12);
  border:1px solid rgba(124,92,255,.25);
}
.stat-number{
  font-size:22px;
  font-weight:900;
  letter-spacing:-.02em;
}
.stat-label{color:var(--muted); font-size:13px; margin-top:2px;}

.mini-note{
  margin-top:14px;
  padding:14px 16px;
  border-radius:var(--radius);
  border:1px dashed rgba(255,255,255,.18);
  background:rgba(255,255,255,.02);
  color:rgba(233,238,252,.78);
}

.section-head{
  text-align:center;
  margin:0 auto 26px;
  max-width:760px;
}
.section-badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(124,92,255,.14);
  border:1px solid rgba(124,92,255,.28);
  color:rgba(233,238,252,.9);
  font-weight:800;
  font-size:12px;
  letter-spacing:.06em;
}
.section-head h2{
  margin:12px 0 8px;
  font-size:36px;
  letter-spacing:-.02em;
}
.section-head.light p{color:rgba(233,238,252,.82);}
.white{color:var(--text);}

.anchor-section{padding:44px 0 18px;}
.panel-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.panel-card{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  padding:18px;
}
.panel-card h3{margin:0 0 10px; font-size:18px;}
.panel-steps{margin:0; padding-left:18px; color:rgba(233,238,252,.78); line-height:1.7;}
.panel-list{display:grid; gap:8px; color:rgba(233,238,252,.78); padding-left:18px; list-style:disc;}
.panel-card.highlight{
  background:linear-gradient(135deg, rgba(124,92,255,.12), rgba(0,212,255,.08));
  border-color:rgba(124,92,255,.22);
}
.panel-badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px;}
.pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
  font-weight:700;
  font-size:12px;
}
.btn-inline{
  display:inline-flex;
  margin-top:12px;
  font-weight:900;
  color:rgba(233,238,252,.92);
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
}

.features{padding:52px 0;}
.features-layout{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.feature-card{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.feature-card.featured{
  background:linear-gradient(135deg, rgba(124,92,255,.16), rgba(0,212,255,.10));
  border-color:rgba(124,92,255,.22);
}
.feature-badge{
  position:absolute;
  top:16px;
  right:16px;
  font-size:12px;
  font-weight:900;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
}
.feature-icon-box{
  width:46px; height:46px;
  border-radius:18px;
  display:grid; place-items:center;
  background:rgba(0,212,255,.10);
  border:1px solid rgba(0,212,255,.22);
  margin-bottom:10px;
  font-size:20px;
}
.feature-card h3{margin:0 0 8px; font-size:18px;}
.feature-list{display:grid; gap:6px; margin-top:12px;}
.feature-list li{color:rgba(233,238,252,.78);}

.games{
  padding:56px 0;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.games-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.game-box{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:18px;
  box-shadow:var(--shadow);
}
.game-icon-large{font-size:34px;}
.game-box h3{margin:10px 0 8px;}
.game-stats{display:flex; gap:14px; margin:14px 0 10px;}
.game-stat{
  flex:1;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  padding:10px 12px;
}
.game-stat strong{display:block; font-size:18px;}
.game-stat span{color:rgba(233,238,252,.75); font-size:12px;}
.game-btn{
  display:inline-flex;
  margin-top:4px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  font-weight:900;
}

.promotions{padding:56px 0;}
.promo-grid{display:grid; grid-template-columns:1.25fr .75fr; gap:16px; align-items:start;}
.promo-main{
  border-radius:var(--radius);
  border:1px solid rgba(124,92,255,.22);
  background:linear-gradient(135deg, rgba(124,92,255,.16), rgba(0,212,255,.08));
  box-shadow:var(--shadow);
  padding:22px;
  overflow:hidden;
  position:relative;
}
.promo-label{font-weight:900; letter-spacing:.06em; font-size:12px; color:rgba(233,238,252,.92);}
.promo-value{
  font-size:56px;
  font-weight:900;
  margin:6px 0 2px;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.promo-details{
  display:grid;
  gap:10px;
  margin:14px 0 16px;
}
.detail-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
}
.btn-promo{
  display:inline-flex;
  padding:12px 16px;
  border-radius:16px;
  font-weight:900;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);
}
.promo-sidebar{display:grid; gap:12px;}
.promo-mini{
  display:flex;
  gap:12px;
  align-items:center;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:14px;
  box-shadow:var(--shadow);
}
.mini-icon{
  width:44px; height:44px;
  border-radius:18px;
  display:grid; place-items:center;
  background:rgba(124,92,255,.12);
  border:1px solid rgba(124,92,255,.22);
}
.mini-text h4{margin:0 0 4px; font-size:14px;}
.mini-text p{margin:0; font-size:13px;}

.info{padding:56px 0;}
.info-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}
.info-card{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:18px;
  box-shadow:var(--shadow);
}
.info-card h3{margin:0 0 8px; font-size:18px;}
.info-card p{margin:0;}

.faq{padding:56px 0;}
.faq-container{display:grid; gap:12px; max-width:860px; margin:0 auto;}
.faq-item{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.faq-question{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  cursor:pointer;
  font-weight:900;
}
.faq-toggle{
  width:34px; height:34px;
  border-radius:12px;
  display:grid; place-items:center;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  font-size:18px;
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{margin:0; padding:0 18px 16px;}

.cta-final{padding:56px 0 70px;}
.cta-content{
  text-align:center;
  padding:26px 22px;
  border-radius:calc(var(--radius) + 6px);
  border:1px solid rgba(255,255,255,.14);
  background:radial-gradient(900px 320px at 50% 0%, rgba(124,92,255,.22), transparent 60%),
             rgba(255,255,255,.03);
  box-shadow:var(--shadow);
}
.btn-cta-final{
  display:inline-flex;
  margin-top:12px;
  padding:12px 16px;
  border-radius:16px;
  font-weight:900;
  background:linear-gradient(135deg, rgba(124,92,255,.95), rgba(0,212,255,.55));
  border:1px solid rgba(255,255,255,.12);
}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:34px 0;
}
.footer-content{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:18px;
  align-items:start;
}
.footer-col h4{margin:10px 0 10px; font-size:14px;}
.footer-col a{color:rgba(233,238,252,.78);}
.footer-col a:hover{color:rgba(233,238,252,.95);}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:18px;
  padding-top:16px;
  color:rgba(233,238,252,.68);
  text-align:center;
}

.scroll-to-top{
  position:fixed;
  right:18px;
  bottom:18px;
  width:44px;
  height:44px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(233,238,252,.92);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:60;
}
.scroll-to-top.show{display:flex;}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .55s ease, transform .55s ease;
}
.reveal.show{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; gap:18px;}
  .features-layout{grid-template-columns:1fr 1fr;}
  .games-grid{grid-template-columns:1fr;}
  .promo-grid{grid-template-columns:1fr;}
  .info-grid{grid-template-columns:1fr;}
  .footer-content{grid-template-columns:1fr 1fr;}
}

@media (max-width: 720px){
  .menu{
    position:fixed;
    top:72px;
    left:16px;
    right:16px;
    background:rgba(7,10,18,.92);
    border:1px solid rgba(255,255,255,.14);
    border-radius:18px;
    padding:12px;
    display:none;
    flex-direction:column;
    gap:8px;
  }
  .menu.open{display:flex;}
  .burger{display:inline-block;}
  .header-cta{display:none;}
  .hero h1{font-size:42px;}
  .panel-grid{grid-template-columns:1fr;}
  .footer-content{grid-template-columns:1fr;}
}
