*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  min-height:100vh;
  color:white;
  overflow-x:hidden;
  background:black;
}

.dynamic-background{
  position:fixed;
  inset:0;
  z-index:0;
  overflow:hidden;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  opacity:.10;
  pointer-events:none;
}

.dynamic-background::after{
  content:'';
  position:absolute;
  inset:0;
  background:
  linear-gradient(to bottom,rgba(0,0,0,.92),rgba(0,0,0,.97));
}

.dynamic-background img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:blur(2px);
  transform:scale(1.08);
}

.page{
  position:relative;
  z-index:2;
  width:100%;
  max-width:820px;
  margin:auto;
  padding:40px 20px 80px;
}

.logo{
  text-align:center;
  font-size:14px;
  font-weight:800;
  letter-spacing:8px;
  color:#f5c518;
  margin-bottom:18px;
}

.hero-title{
  text-align:center;
  font-size:34px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:28px;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}

.buttons{
  display:flex;
  flex-direction:column;
  gap:12px;
  width:100%;
  max-width:340px;
  margin:0 auto 50px;
}

.btn{
  display:flex;
  justify-content:center;
  align-items:center;
  height:54px;
  border-radius:12px;
  font-size:15px;
  font-weight:700;
  letter-spacing:.5px;
  text-decoration:none;
  transition:.25s ease;
  border:1px solid rgba(255,255,255,.08);
}

.btn:hover{
  transform:translateY(-3px);
}

.btn-primary{
  background:#f5c518;
  color:black;
}

.btn-secondary{
  background:rgba(255,255,255,.08);
  color:white;
  backdrop-filter:blur(12px);
}

.separator{
  display:flex;
  align-items:center;
  gap:15px;
  margin:55px 0 30px;
}

.separator::before,
.separator::after{
  content:'';
  flex:1;
  height:1px;
  background:
  linear-gradient(to right,transparent,rgba(255,255,255,.15),transparent);
}

.separator span{
  font-size:11px;
  letter-spacing:4px;
  color:#888;
  font-weight:600;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:18px;
}

.card h3{
  font-size:15px;
  line-height:1.3;
  margin-bottom:10px;
  font-weight:700;
}

.card p{
  color:#bdbdbd;
  line-height:1.6;
  font-size:13px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.stat-card{
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:24px;
  text-align:center;
}

.stat-number{
  font-size:42px;
  font-weight:900;
  margin-bottom:10px;
}

.stat-label{
  color:#aaa;
  font-size:14px;
  letter-spacing:1px;
}

.poster-section{
  margin-top:60px;
}

.poster-wrapper{
  display:flex;
  gap:15px;
  overflow-x:auto;
  padding-bottom:10px;
}

.poster-wrapper::-webkit-scrollbar{
  height:8px;
}

.poster-wrapper::-webkit-scrollbar-thumb{
  background:#333;
  border-radius:999px;
}

.poster{
  min-width:160px;
  border-radius:16px;
  overflow:hidden;
  transition:.25s ease;
}

.poster:hover{
  transform:scale(1.05);
}

.poster img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

footer{
  margin-top:70px;
  text-align:center;
  color:#888;
  font-size:14px;
}

@media(max-width:768px){

.hero-title{
  font-size:28px;
}

  .cards{
    grid-template-columns:1fr;
  }

  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .btn{
    font-size:22px;
  }

  .dynamic-background{
    grid-template-columns:repeat(3,1fr);
  }

}