*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

.hub-grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:30px;
  margin-top:60px;
}

.hub-card{
  background:#161b22;
  border:2px solid #222;
  border-radius:20px;
  padding:40px;
  text-decoration:none;
  color:white;
  transition:0.25s;
}

.hub-card:hover{
  transform:translateY(-6px);
  border-color:#00ffe1;
  box-shadow:
  0 0 25px rgba(0,255,225,0.25);
}

.hub-card h2{
  margin-bottom:15px;
  color:#00ffe1;
}

.info-section{
  margin-top:50px;
  background:#161b22;
  border:2px solid #222;
  border-radius:20px;
  padding:30px;
}

.info-section h2{
  color:#00ffe1;
  margin-bottom:15px;
}

.info-section p{
  color:#d1d5db;
  line-height:1.6;
}

.staff-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:20px;
}

.staff-card{
  background:#0d1117;
  border:2px solid #222;
  border-radius:16px;
  padding:20px;
}

.staff-card h3{
  color:white;
  margin-bottom:8px;
}

.staff-card p{
  color:#9ca3af;
}

.back-button{
  display:inline-block;
  margin-bottom:30px;
  padding:12px 18px;

  background:#161b22;

  border:2px solid #222;
  border-radius:14px;

  color:white;
  text-decoration:none;

  transition:0.2s;
}

.back-button:hover{
  border-color:#00ffe1;

  box-shadow:
  0 0 15px rgba(0,255,225,0.2);

  transform:translateY(-2px);
}

body{
  background:#0d1117;
  color:white;
  padding:40px;
}

h1{
  text-align:center;
  font-size:3rem;
  color:#00ffe1;
  margin-bottom:10px;
  text-shadow:0 0 20px #00ffe1;
}

.subtitle{
  text-align:center;
  color:#9ca3af;
  margin-bottom:50px;
}

.tier-section{
  margin-bottom:50px;
}

.tier-title{
  font-size:2rem;
  margin-bottom:20px;
  padding-bottom:10px;
  border-bottom:3px solid #222;
}

.level-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.card{
  background:#161b22;
  border-radius:16px;
  padding:20px;
  border:2px solid #222;
  transition:0.25s;
}

.card:hover{
  transform:translateY(-5px);
  border-color:#00ffe1;
  box-shadow:0 0 25px rgba(0,255,225,0.25);
}


.level-name{
  font-size:1.5rem;
  margin-bottom:10px;
}

.creator{
  color:#9ca3af;
  margin-bottom:12px;
}

.gamemode{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  font-size:0.9rem;
  font-weight:bold;
  margin-bottom:15px;
}

.wave{
  background:#00b0ff;
}

.ship{
  background:#ff6d00;
}

.ufo{
  background:#d500f9;
}

.ball{
  background:#00c853;
}

.spam-bar{
  width:100%;
  height:10px;
  background:#222;
  border-radius:999px;
  overflow:hidden;
  margin-bottom:15px;
}

.fill{
  height:100%;
  background:#00ffe1;
}

.desc{
  color:#d1d5db;
  line-height:1.5;
}

.wood{
  color:#8b5a2b;
}

.bronze{
  color:#cd7f32;
}

.silver{
  color:#c0c0c0;
}

.gold{
  color:#ffd700;
}

.amber{
  color:#ffbf00;
}

.platinum{
  color:#e5e4e2;
}

.sapphire{
  color:#0f52ba;
}

.jade{
  color:#00a86b;
}

.emerald{
  color:#00e676;
}

.ruby{
  color:#ff1744;
}

.diamond{
  color:#00e5ff;
}

.titanium{
  color:#8f8f8f;
}

.amethyst{
  color:#9966cc;
}

.obsidian{
  color:#2b2b2b;
}

.uranium{
  color:#7fff00;
  text-shadow:0 0 10px #7fff00;
}

.bedrock{
  color:#8a8a8a;
  text-shadow:0 0 4px #9aa0a6;
}

.tier-view{
  margin-top:40px;
}

.tier-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:25px;
  margin-bottom:10px;
}

.tier-nav button{
  width:52px;
  height:52px;
  border-radius:50%;
  border:2px solid #222;
  background:#161b22;
  color:white;
  font-size:1.8rem;
  cursor:pointer;
  transition:0.2s;
}

.tier-nav button:hover{
  border-color:#00ffe1;
  box-shadow:0 0 18px rgba(0,255,225,0.25);
  transform:translateY(-2px);
}

.tier-count{
  text-align:center;
  color:#9ca3af;
  margin-bottom:30px;
}

.bottom-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-top:70px;
}

.discord-box{
  background:#161b22;
  border:2px solid #222;
  border-radius:20px;
  padding:20px;
}

.discord-box iframe{
  width:100%;
  height:400px;
  border:none;
  border-radius:14px;
  margin-top:15px;
}

@media(max-width:800px){
  .bottom-section{
    grid-template-columns:1fr;
  }
}

.section-divider{
  width:100%;
  height:2px;

  background:linear-gradient(
    to right,
    transparent,
    #222,
    #00ffe1,
    #222,
    transparent
  );

  margin-top:70px;
  margin-bottom:70px;

  border-radius:999px;

  box-shadow:
  0 0 12px rgba(0,255,225,0.15);
}