:root{
  --bg:#050505;
  --bg-soft:#0b0b0b;
  --card:#101010;
  --card-2:#141414;
  --text:#f5f5f5;
  --muted:#9a9a9a;
  --orange:#ff7a00;
  --orange-2:#ff9500;
  --border:rgba(255,255,255,0.08);
  --glow:0 0 0 1px rgba(255,122,0,0.18), 0 0 30px rgba(255,122,0,0.10);
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  background:linear-gradient(180deg,#000 0%, #050505 100%);
  color:var(--text);
  font-family:Arial, Helvetica, sans-serif;
}

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

.nt-wrap{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.nt-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(0,0,0,0.88);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(10px);
}

.nt-header .nt-wrap{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.nt-brand{
  font-size:30px;
  font-weight:900;
  letter-spacing:1px;
  color:#fff;
}

.nt-brand span{
  color:var(--orange);
}

.nt-nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.nt-nav a{
  color:#ddd;
  font-weight:700;
}

.nt-nav a:hover{
  color:var(--orange);
}

.nt-main{
  padding:34px 0 60px;
}

.hero-card,
.stat-card,
.panel-card{
  background:linear-gradient(180deg,var(--card) 0%, var(--card-2) 100%);
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--glow);
}

.hero-card{
  padding:34px;
  margin-bottom:24px;
}

.hero-card h1{
  margin:0 0 12px;
  font-size:56px;
  line-height:1;
  font-weight:900;
  letter-spacing:0;
  text-transform:uppercase;
}

.hero-card p{
  margin:0;
  max-width:760px;
  color:var(--muted);
  font-size:18px;
  line-height:1.5;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin-top:22px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:14px;
  font-weight:800;
  border:1px solid var(--border);
}

.btn-orange{
  background:linear-gradient(180deg,var(--orange-2),var(--orange));
  color:#111;
}

.btn-dark{
  background:#0b0b0b;
  color:#fff;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-bottom:24px;
}

.stat-card{
  padding:22px;
}

.stat-label{
  color:var(--muted);
  font-size:14px;
  margin-bottom:10px;
}

.stat-value{
  font-size:34px;
  font-weight:900;
}

.stat-value.online{
  color:var(--orange);
}

.panel-card{
  padding:22px;
}

.panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}

.panel-head h2{
  margin:0;
  font-size:24px;
}

.player-list{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.player-row{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px;
  background:#0b0b0b;
  border:1px solid var(--border);
  border-radius:16px;
}

.avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  background:linear-gradient(180deg,#222,#111);
  border:1px solid var(--border);
  flex:0 0 44px;
}

.player-name{
  font-weight:700;
  color:#f0f0f0;
}

.avatar-img{
  width:32px;
  height:32px;
  border-radius:50%;
  object-fit:cover;
  display:block;
  flex:0 0 32px;
}

.hero-card{
  text-align:center;
}

.hero-actions{
  justify-content:center;
}

.stat-card{
  text-align:center;
}

.panel-head{
  text-align:center;
}

.panel-head h2{
  width:100%;
  margin:0;
}

.hero-card p{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.hero-card h1 span{
  color:var(--orange);
}

.nt-footer{
  margin-top:40px;
  padding:26px 0 34px;
  border-top:1px solid var(--border);
  background:rgba(0,0,0,0.65);
}

.nt-footer-top{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-bottom:14px;
  font-weight:800;
}

.footer-logo{
  height:34px;
  width:auto;
  display:block;
}

.nt-footer-copy{
  text-align:center;
  color:var(--muted);
  font-size:14px;
}

@media (max-width: 900px){
  .stats-grid{
    grid-template-columns:1fr;
  }

  .hero-card h1{
    font-size:36px;
  }
}

@media (max-width: 640px){
  .nt-header .nt-wrap{
    padding:12px 0;
    align-items:flex-start;
    flex-direction:column;
  }

  .nt-brand{
    font-size:24px;
  }

  .nt-nav{
    gap:14px;
  }

  .hero-card{
    padding:22px;
  }
}

