:root {
  --bg: #f6f7fb;
  --panel: #ffffff;
  --ink: #0c1020;
  --muted: #5b647a;
  --line: #e7eaf3;
  --accent: #2a5bff;
  --accent2: #00b37d;
  --shadow: 0 18px 60px rgba(8, 12, 28, .12);
  --radius: 18px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
 
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  background: var(--panel);
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 9999;
}

/* ===== Header ===== */
.top {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.2) blur(10px);
}

.top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 247, 251, .72);
  border-bottom: 1px solid rgba(231, 234, 243, .8);
}

.top .container {
  position: relative
}

.top__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}
.brand img{
  height: 60px;
  width: auto;
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(42, 91, 255, .18), rgba(0, 179, 125, .14));
  border: 1px solid rgba(42, 91, 255, .22);
  font-weight: 800;
}

.brand__name {
  display: block;
  font-weight: 800;
  letter-spacing: .2px
}

.brand__tag {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center
}

.nav a {
  font-weight: 600;
  font-size: 14px;
  color: rgba(12, 16, 32, .78);
  padding: 8px 10px;
  border-radius: 12px;
}

.nav a:hover {
  background: rgba(42, 91, 255, .08)
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(8, 12, 28, .06);
}

.btn:hover {
  transform: translateY(-1px)
}

.btn:active {
  transform: translateY(0)
}

.btn--primary {
  border-color: rgba(42, 91, 255, .25);
  background: linear-gradient(180deg, rgba(42, 91, 255, .12), rgba(42, 91, 255, .06));
}

.burger {
  display: none
}

/* mobile nav */
.mobile {
  display: none;
  padding: 10px 0 18px
}

.mobile a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  margin-top: 10px;
  font-weight: 700;
}

/* ===== Hero ===== */
.hero {
  padding: 26px 0 20px
}

.hero__grid {
  display: grid;
      align-items: center;
  grid-template-columns: 1.4fr .9fr;
  gap: 18px;
}

.hero__card {
  /* background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden; */
}

.hero__copy {
  padding: 26px
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
 
  color: rgba(12, 16, 32, .82);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.title {
  margin: 14px 0 10px;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -.6px
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55
}

.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px
}

.badge {
    font-size: 12px;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgb(255 200 0);
    color: rgb(255 255 255 / 78%);
}

.hero__media {
  display: flex;
  flex-direction: column
}

.hero__img {
  height: 260px;

}

.hero__note {
  padding: 16px 18px;
  border-top: 1px dashed rgba(12, 16, 32, .15);
  color: rgba(12, 16, 32, .78);
  font-size: 13px;
  line-height: 1.4;
}

/* ===== Sections ===== */
.section {
   background:
    radial-gradient(1200px 600px at 15% -10%, rgba(42, 91, 255, .12), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(0, 179, 125, .10), transparent 55%),
    var(--bg);
  padding: 48px 15px;
}

.section--alt {
  background: rgba(255, 255, 255, .55);
  border-top: 1px solid rgba(231, 234, 243, .9);
  border-bottom: 1px solid rgba(231, 234, 243, .9);
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px
}

.h2 {
  margin: 0;
  font-size: 44px;
  letter-spacing: -.3px
}

.p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(8, 12, 28, .08);
}

.card--soft {
  box-shadow: none;
  background: rgba(255, 255, 255, .8);
}

.card__t {
  margin: 0 0 8px;
  font-size: 18px
}

.card__p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px
}

.card__mini {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(12, 16, 32, .72);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent2)
}

/* ===== Footer ===== */
.footer {
  padding: 26px 0 34px
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}

.footer__box {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.footer__small {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.footer__links a {
  font-weight: 700;
  font-size: 12.5px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(12, 16, 32, .03);
  border: 1px solid var(--line);
}

.footer__links a:hover {
  background: rgba(42, 91, 255, .08)
}

.footer__copy {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(12, 16, 32, .55)
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr
  }

  .title {
    font-size: 34px
  }

  .grid3 {
    grid-template-columns: 1fr
  }

  .grid2 {
    grid-template-columns: 1fr
  }

  .nav {
    display: block
  }
  .gamesi__item {
    width: 100%;
}
.top__bar {
    display: flex;
            justify-content: center;
    align-items: center;
   
    gap: 14px;
    padding: 14px 0;
    flex-wrap: wrap;
}
  .burger {
    display: inline-flex
  }

  .mobile {
    display: none
  }

  .mobile.is-open {
    display: block
  }

  .footer__grid {
    grid-template-columns: 1fr
  }
}
.faq__q{
font-size: 22px;
font-weight: 700;
}
.faq__a{
font-size: 20px;
font-weight: 300;
}
.gamesi{
  padding: 77px 0;
}
.gamesi h2{
  text-align: center;
  margin-bottom: 40px;
}
.gamesi__items{
  display: flex;
  flex-wrap: wrap;
      justify-content: center;
  gap: 40px;
}
.gamesi__item{
  width: 22%;

}
.gamesi__item img{
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 19px;
}

.field input {
    border-radius: 10px;
    padding: 10px;
    background-color: transparent;
    border: 0;
    color: #ffff;
    border-bottom: 2px solid #fff;
}
.field textarea {
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 10px;
    background-color: transparent;
    border: 0;
    color: #ffff;
    border-bottom: 2px solid #fff;
}
form#frm {
    max-width: 500px;
    background-color: #edede8;
    border-radius: 40px;
    padding: 30px;
    margin: 40px auto;
}
.age-v3{
  position:fixed;
  inset:0;
  background:#050010;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:10001;
}

.age-v3__box{
  position:relative;
  width:500px;
  padding:60px 40px;
  text-align:center;
  background:#100020;
  border:2px solid #ff00ff;
  box-shadow:0 0 40px #ff00ff;
  overflow:hidden;
}
.cookie-v3 span{
  color: #ffff;
}
.cookie-v3__content p{
  color: #fff;
}
.age-v3__scan{
  position:absolute;
  top:-100%;
  left:0;
  width:100%;
  height:200%;
  background:linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,255,255,0.15) 50%,
    transparent 100%
  );
  animation:scan 4s linear infinite;
}

@keyframes scan{
  0%{transform:translateY(0)}
  100%{transform:translateY(50%)}
}

.age-v3 h2{
  color:#00ffff;
  margin-bottom:20px;
  text-shadow:0 0 15px #00ffff;
}

.btn-v3{
  padding:12px 30px;
  margin:10px;
  background:#ff00ff;
  border:none;
  color:#000;
  font-weight:bold;
  cursor:pointer;
  box-shadow:0 0 20px #ff00ff;
}

.btn-v3-outline{
  padding:12px 30px;
  margin:10px;
  background:transparent;
  border:1px solid #00ffff;
  color:#00ffff;
  cursor:pointer;
}
.cookie-v3{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#100020;
  border-top:2px solid #00ffff;
  padding:20px;
  z-index:9999;
}

.cookie-v3__content{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.cookie-v3__buttons button{
  margin-left:15px;
}
@media screen and (max-width:768px) {
  .gamesi__item {
    width: 100%;
}
}