* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #050505;
  font-family: "Hitmarker Text VF", sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.navbar a {
  color: #b9b9b9;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.4px;
  transition: color 0.2s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #ffffff;
}

.nav-center {
  margin-left: auto;
  font-family: "Hitmarker Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #7a7a7a;
  white-space: nowrap;
  text-align: right;
}

/* HERO */
.event-hero {
  position: relative;
  height: 760px;
  margin-top: 60px;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  filter: brightness(0.5) saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 42%, rgba(0,0,0,0.68) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 55%, #050505 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 170px 60px 80px;
}

.hero-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #ff4b4b;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ff3b3b;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 59, 59, 0.9);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.75; }
  100% { transform: scale(1); opacity: 1; }
}

#countdown {
  font-family: "Hitmarker Condensed", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.45);
  color: #fff;
}

.hero-inner h1 {
  margin: 0 0 22px;
  font-family: "Anton", sans-serif;
  font-size: 108px;
  line-height: 0.92;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 700px;
}

.hero-date {
  margin: 0 0 20px;
  font-family: "Hitmarker Condensed", sans-serif;
  font-size: 21px;
  color: #f1f1f1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-desc {
  margin: 0;
  max-width: 700px;
  font-size: 19px;
  line-height: 1.42;
  color: #d0d0d0;
}

.btn {
  margin-top: 34px;
  padding: 18px 28px;
  background: #fff;
  color: #111;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #eaeaea;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-inner h1 {
    font-size: 88px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 18px;
  }

  .nav-left {
    gap: 16px;
  }

  .nav-center {
    display: none;
  }

  .event-hero {
    height: 680px;
  }

  .hero-inner {
    padding: 130px 24px 60px;
  }

  .hero-inner h1 {
    font-size: 58px;
    line-height: 0.95;
  }

  .hero-date {
    font-size: 18px;
  }

  .hero-desc {
    font-size: 17px;
  }

  .hero-top {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ===== GLOBAL SECTION STRUCTURE ===== */
.events,
.reward-track {
  padding: 60px;
}

.section-header {
  margin-bottom: 25px;
}

.section-header h2 {
  font-family: "Anton", sans-serif;
  font-size: 32px;
  margin: 0;
}

.section-header p {
  margin: 6px 0 0;
  color: #888;
  font-size: 14px;
}

/* ===== BUTTON VARIANTS ===== */
.btn.primary {
  background: #fff;
  color: #111;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #555;
  color: #ddd;
  margin-left: 10px;
}

.btn.secondary:hover {
  background: #111;
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

/* ===== REWARD TRACK ===== */
.track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.track::-webkit-scrollbar {
  height: 6px;
}

.track::-webkit-scrollbar-thumb {
  background: #333;
}

.tier {
  min-width: 140px;
  height: 90px;
  background: #0e0e0e;
  border: 1px solid #222;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.2s;
}

.tier strong {
  font-size: 13px;
}

.tier span {
  font-size: 12px;
  color: #aaa;
}

.tier em {
  font-size: 11px;
  color: #666;
  margin-top: 4px;
}

.tier:hover {
  border-color: #666;
  transform: translateY(-2px);
}

/* SPECIAL TIERS */
.tier.epic {
  border-color: #ffaa00;
  box-shadow: 0 0 12px rgba(255,170,0,0.4);
}

.tier.mastery {
  border-color: #00eaff;
  box-shadow: 0 0 14px rgba(0,234,255,0.5);
}

/* ===== SEASON CARD ===== */
.season-card {
  position: relative;
  height: 240px;
  overflow: hidden;
  border: 1px solid #222;
}

.season-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.season-card:hover img {
  transform: scale(1.05);
}

.season-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000 20%, transparent);
}

.season-card .content {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.season-card h3 {
  margin: 0;
  font-size: 26px;
  font-family: "Anton";
}

.season-card p {
  margin: 6px 0 10px;
  color: #bbb;
}

/* ===== EVENT LIST ===== */
.list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.item {
  display: flex;
  gap: 14px;
  background: #0e0e0e;
  border: 1px solid #222;
  padding: 14px;
  width: 340px;
  transition: 0.2s;
}

.item:hover {
  border-color: #555;
}

.item img {
  width: 100px;
  height: 70px;
  object-fit: cover;
}

.info h3 {
  margin: 0;
  font-size: 15px;
}

.info p {
  margin: 4px 0;
  font-size: 12px;
  color: #888;
}

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  font-size: 11px;
  padding: 4px 8px;
  border: 1px solid #444;
  margin-top: 4px;
}

.tag.live {
  border-color: #ff3b3b;
  color: #ff3b3b;
}

.tag.upcoming {
  border-color: #ffaa00;
  color: #ffaa00;
}

.tag.past {
  border-color: #555;
  color: #777;
}

/* ===== STATES ===== */
.upcoming {
  border-color: #ffaa00;
}

.past {
  opacity: 0.5;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 30px;
  color: #555;
  border-top: 1px solid #222;
  font-size: 13px;
}