:root {
  --purple: #6a1b9a;
  --purple-dark: #38006b;
  --purple-deep: #1a0033;
  --yellow: #ffcc00;
  --cyan: #00e5ff;
  --pink: #ff2d78;
  --white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Rubik', sans-serif;
  background: linear-gradient(160deg, var(--purple-deep) 0%, var(--purple-dark) 50%, #4a0e78 100%);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---------- NAV ---------- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(26, 0, 51, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--yellow);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-weight: 900; font-size: 1.3rem; }
.logo span { color: var(--yellow); }
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  color: var(--white); text-decoration: none; font-weight: 600;
  transition: color .2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,0,51,.55), rgba(26,0,51,.85)); }
.hero-content { position: relative; z-index: 2; padding: 40px 20px; }
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.8rem); font-weight: 900;
  text-shadow: 0 4px 0 #000, 0 8px 24px rgba(0,0,0,.5);
  letter-spacing: -1px;
}
.hero h1 .hl { color: var(--yellow); }
.hero-sub { font-size: clamp(1.05rem, 2.5vw, 1.4rem); margin: 18px auto 30px; max-width: 620px; font-weight: 600; text-shadow: 0 2px 8px rgba(0,0,0,.7); }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 14px;
  font-weight: 800; font-size: 1.1rem; text-decoration: none;
  transform: skew(-3deg); transition: transform .15s, box-shadow .15s;
  box-shadow: 0 5px 0 rgba(0,0,0,.4);
}
.btn:hover { transform: skew(-3deg) translateY(-3px); box-shadow: 0 8px 0 rgba(0,0,0,.4); }
.btn-yellow { background: var(--yellow); color: #3a2b00; }
.btn-purple { background: var(--pink); color: var(--white); }

/* ---------- STATS ---------- */
.stats-bar {
  display: flex; justify-content: center; gap: 8vw; flex-wrap: wrap;
  padding: 26px 20px; background: rgba(0,0,0,.35);
  border-top: 3px solid var(--cyan); border-bottom: 3px solid var(--cyan);
}
.stat { text-align: center; }
.stat b { display: block; font-size: 2rem; color: var(--yellow); font-weight: 900; }
.stat span { font-size: .9rem; opacity: .85; }

/* ---------- SECTIONS ---------- */
.section { max-width: 1100px; margin: 0 auto; padding: 70px 20px; }
.section-alt {
  max-width: none;
  background: rgba(0,0,0,.25);
}
.section-alt > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.section h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 12px; text-align: center; }
.section-sub { text-align: center; opacity: .85; max-width: 700px; margin: 0 auto 30px; }
.section-img {
  display: block; width: 100%; max-width: 850px; margin: 24px auto;
  border-radius: 20px; border: 4px solid var(--yellow);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.section-img-small { max-width: 520px; }

/* ---------- TIER LIST ---------- */
.tier {
  display: flex; margin: 14px 0; border-radius: 16px; overflow: hidden;
  background: var(--card-bg); border: 2px solid rgba(255,255,255,.12);
}
.tier-label {
  flex: 0 0 70px; display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; font-weight: 900; color: #1a0033;
}
.tier-s .tier-label { background: linear-gradient(135deg, #ffd700, #ff9500); }
.tier-a .tier-label { background: linear-gradient(135deg, #b388ff, #7c4dff); color: #fff; }
.tier-b .tier-label { background: linear-gradient(135deg, #00e5ff, #00b0ff); }
.tier-c .tier-label { background: linear-gradient(135deg, #b0bec5, #78909c); }
.tier-brawlers { display: flex; flex-wrap: wrap; gap: 10px; padding: 14px; }
.brawler {
  background: rgba(255,255,255,.1); border-radius: 12px; padding: 10px 16px;
  font-weight: 800; font-size: 1.05rem;
  border: 1px solid rgba(255,255,255,.15);
  transition: transform .15s, background .15s;
}
.brawler:hover { transform: translateY(-3px); background: rgba(255,255,255,.18); }
.brawler small { display: block; font-weight: 400; font-size: .78rem; opacity: .75; margin-top: 2px; }
.note {
  margin-top: 24px; padding: 16px 20px; border-radius: 14px;
  background: rgba(255, 204, 0, .12); border: 1px solid rgba(255,204,0,.4);
}

/* ---------- CARDS ---------- */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 36px;
}
.card {
  background: var(--card-bg); border-radius: 18px; padding: 26px;
  border: 2px solid rgba(255,255,255,.12);
  transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-6px); border-color: var(--yellow); }
.card-emoji { font-size: 2.4rem; margin-bottom: 10px; }
.card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; color: var(--yellow); }
.card ul { padding-right: 18px; margin-top: 10px; }
.card li { margin-bottom: 8px; font-size: .95rem; }

/* ---------- TIPS ---------- */
.tips-list { max-width: 760px; margin: 30px auto 0; padding-right: 24px; counter-reset: tip; list-style: none; }
.tips-list li {
  position: relative; margin-bottom: 18px; padding: 18px 64px 18px 20px;
  background: var(--card-bg); border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  counter-increment: tip;
}
.tips-list li::before {
  content: counter(tip);
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--yellow); color: #3a2b00;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem;
}
.tips-list b { color: var(--cyan); }

/* ---------- ABOUT ---------- */
.about-box {
  max-width: 700px; margin: 20px auto 0; text-align: center;
  background: var(--card-bg); padding: 34px; border-radius: 20px;
  border: 2px solid rgba(255,255,255,.15);
}
.about-box p { margin-bottom: 12px; }
.disclaimer { font-size: .8rem; opacity: .6; margin-top: 18px; }
.disclaimer a { color: var(--cyan); }

/* ---------- FOOTER ---------- */
footer {
  text-align: center; padding: 30px 20px;
  background: rgba(0,0,0,.5); border-top: 3px solid var(--yellow);
  font-weight: 600;
}

/* ---------- MOBILE ---------- */
@media (max-width: 720px) {
  .nav-links {
    display: none; position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; background: rgba(26,0,51,.97);
    padding: 18px 24px; gap: 14px; border-bottom: 3px solid var(--yellow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .tier { flex-direction: column; }
  .tier-label { flex: 0 0 48px; }
}
