*{
  box-sizing:border-box;
}

:root{
  --bg:#090909;
  --panel:#121212;
  --panel-2:#181818;
  --line:#2a2a2a;
  --text:#f5f5f5;
  --muted:#bdbdbd;
  --accent:#ff8a1d;
  --accent-2:#ffb347;
  --shadow:0 12px 40px rgba(0,0,0,0.35);
}

body{
  margin:0;
  font-family:Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255,138,29,0.08), transparent 30%),
    linear-gradient(180deg, #0a0a0a 0%, #101010 100%);
  color:var(--text);
}

a{
  color:inherit;
  text-decoration:none;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:18px 32px;
  background:rgba(10,10,10,0.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-logo{
  width:54px;
  height:54px;
  object-fit:contain;
  border-radius:12px;
  box-shadow:0 0 24px rgba(255,138,29,0.15);
}

.brand-text{
  display:flex;
  flex-direction:column;
}

.brand-title{
  font-size:28px;
  font-weight:700;
  color:var(--accent-2);
}

.brand-sub{
  font-size:13px;
  color:var(--muted);
}

.site-nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.site-nav a{
  color:#f0f0f0;
  opacity:0.92;
  transition:0.2s ease;
}

.site-nav a:hover{
  color:var(--accent);
}

.site-main{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
  padding:32px 0 64px;
}

.hero{
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  margin-bottom:32px;
}

.hero-image{
  background:url("/img/levelforge-banner.jpg") center/cover no-repeat;
  min-height:540px;
  position:relative;
  border:1px solid rgba(255,255,255,0.06);
}

.hero-overlay{
  min-height:540px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.88) 0%, rgba(5,5,5,0.58) 45%, rgba(5,5,5,0.35) 100%);
}

.hero-content{
  max-width:720px;
  padding:48px;
}

.hero-badge{
  display:inline-block;
  margin-bottom:16px;
  padding:8px 14px;
  border:1px solid rgba(255,179,71,0.35);
  border-radius:999px;
  background:rgba(255,138,29,0.10);
  color:var(--accent-2);
  font-size:14px;
}

.hero h1{
  font-size:68px;
  line-height:1;
  margin:0 0 18px;
  color:#fff4e7;
  text-shadow:0 2px 16px rgba(255,138,29,0.25);
}

.hero p{
  max-width:620px;
  font-size:19px;
  line-height:1.75;
  color:#eeeeee;
  margin:0;
}

.hero-actions{
  display:flex;
  gap:14px;
  margin-top:28px;
  flex-wrap:wrap;
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:12px;
  font-weight:700;
  transition:0.2s ease;
}

.cta.primary{
  background:linear-gradient(135deg, var(--accent), #ffb347);
  color:#111;
  box-shadow:0 8px 24px rgba(255,138,29,0.22);
}

.cta.primary:hover{
  transform:translateY(-2px);
}

.cta.secondary{
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.04);
  color:#fff;
}

.cta.secondary:hover{
  border-color:rgba(255,179,71,0.5);
  color:var(--accent-2);
}

.feature-section,
.promo-section{
  margin-top:28px;
}

.section-head{
  margin-bottom:22px;
}

.section-head h2{
  margin:0 0 10px;
  font-size:34px;
  color:#fff3df;
}

.section-head p{
  margin:0;
  color:var(--muted);
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:18px;
}

.feature-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border:1px solid rgba(255,255,255,0.06);
  border-radius:18px;
  padding:24px;
  box-shadow:var(--shadow);
  transition:0.2s ease;
}

.feature-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,138,29,0.35);
}

.feature-card h3{
  margin:0 0 12px;
  color:var(--accent-2);
}

.feature-card p{
  margin:0;
  color:#e3e3e3;
  line-height:1.7;
}

.promo-card{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:24px;
  align-items:center;
  padding:28px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(20,20,20,0.95), rgba(15,15,15,0.95));
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:var(--shadow);
}

.promo-text h2{
  margin-top:0;
  margin-bottom:12px;
  font-size:34px;
  color:#fff3df;
}

.promo-text p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:20px;
}

.promo-visual{
  display:flex;
  justify-content:center;
}

.promo-visual img{
  width:min(100%, 280px);
  filter:drop-shadow(0 0 32px rgba(255,138,29,0.22));
}

.content-box,
.dashboard-card,
.price-card,
.login-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border:1px solid rgba(255,255,255,0.06);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.content-box{
  padding:28px;
  line-height:1.75;
}

.content-box pre{
  white-space:pre-wrap;
  word-break:break-word;
  margin:0;
  font-family:inherit;
}

.content-box ul{
  padding-left:20px;
}

.dashboard-grid,
.pricing-grid,
.login-benefits{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
  margin-top:24px;
}

.dashboard-card,
.price-card,
.login-card{
  padding:24px;
}

.dashboard-card h3,
.price-card h3,
.login-card h3{
  margin-top:0;
  color:var(--accent-2);
}

.dashboard-card ul,
.price-card ul{
  padding-left:20px;
}

.block-form{
  display:flex;
  gap:10px;
  margin:16px 0 20px;
  flex-wrap:wrap;
}

.block-form input{
  flex:1;
  min-width:180px;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.08);
  background:#0c0c0c;
  color:#fff;
}

.block-form button,
.block-item button{
  padding:10px 14px;
  border:none;
  border-radius:10px;
  background:linear-gradient(135deg, var(--accent), #ffb347);
  color:#111;
  font-weight:700;
  cursor:pointer;
}

.block-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.block-item form{
  margin:0;
}

.price{
  font-size:28px;
  font-weight:700;
  color:#fff;
}

.featured{
  border-color:rgba(255,138,29,0.45);
}

.site-footer{
  margin-top:48px;
  padding:24px 18px 36px;
  text-align:center;
  color:var(--muted);
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:10px;
}

.footer-links a:hover{
  color:var(--accent-2);
}

@media (max-width: 900px){
  .promo-card{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:48px;
  }
}

@media (max-width: 768px){
  .site-header{
    flex-direction:column;
    align-items:flex-start;
    padding:18px;
  }

  .site-nav{
    gap:14px;
  }

  .hero-overlay{
    min-height:480px;
  }

  .hero-content{
    padding:28px;
  }

  .hero h1{
    font-size:40px;
  }

  .hero p{
    font-size:17px;
  }
}

.hero-small{
  min-height:auto;
  background:none;
  border:none;
  box-shadow:none;
  margin-bottom:12px;
}

.hero-panel{
  padding:28px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:var(--shadow);
}

.hero-panel h2{
  margin:10px 0 14px;
  font-size:38px;
  color:#fff3df;
}

.hero-panel p{
  margin:0;
  max-width:800px;
  color:var(--muted);
  line-height:1.8;
}

.twitch-btn{
  background:linear-gradient(135deg, #9147ff, #a970ff) !important;
  color:#fff !important;
}

.price-card li{
  list-style:none;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.price-card li:last-child{
  border-bottom:none;
}

.dashboard-card p{
  line-height:1.8;
  color:#e8e8e8;
}