@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-main: #05070d;
  --bg-soft: #0b1020;
  --bg-card: rgba(14, 18, 34, 0.96);
  --bg-card-2: rgba(10, 12, 24, 0.96);

  --text-main: #ffffff;
  --text-soft: #cfd8ff;
  --text-muted: #aab4d6;

  --accent-cyan: #2df6ff;
  --accent-teal: #29ffd0;
  --accent-pink: #ff4fd8;
  --accent-purple: #8b5cf6;
  --accent-violet: #a855f7;

  --glass-border: rgba(45, 246, 255, 0.18);
  --glass-glow-cyan: rgba(45, 246, 255, 0.08);
  --glass-glow-pink: rgba(255, 79, 216, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top, rgba(168, 85, 247, 0.10), transparent 25%),
    radial-gradient(circle at bottom right, rgba(45, 246, 255, 0.10), transparent 28%),
    var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===================== NAVBAR ===================== */

.navbar {
  width: 100%;
  padding: 26px 42px 0;
  position: relative;
  z-index: 1000;
}

.navbar-scroll {
  max-width: 1780px;
  margin: 0 auto;
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 26px 0 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 14, 28, 0.96), rgba(6, 10, 20, 0.94));
  border: 1px solid var(--glass-border);
  box-shadow:
    0 0 0 1px rgba(45, 246, 255, 0.04) inset,
    0 0 24px var(--glass-glow-cyan),
    0 0 65px var(--glass-glow-pink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.brand-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.brand-divider {
  width: 1px;
  height: 76px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.02)
  );
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.brand-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-main);
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(45, 246, 255, 0.12),
    0 0 22px rgba(168, 85, 247, 0.16);
}

.brand-subtext {
  margin-top: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--accent-pink);
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(255, 79, 216, 0.22),
    0 0 20px rgba(45, 246, 255, 0.12);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.nav-menu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 98px;
  padding: 0 28px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f2f2f2;
  transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.nav-menu a:not(.join-btn)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 1px;
  height: 50px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
}

.nav-menu a:first-child::before {
  display: none;
}

.nav-menu a:not(.join-btn):hover {
  color: var(--accent-cyan);
  text-shadow:
    0 0 10px rgba(45, 246, 255, 0.45),
    0 0 18px rgba(255, 79, 216, 0.18);
}

.nav-menu a.active {
  color: var(--accent-pink);
  text-shadow:
    0 0 10px rgba(255, 79, 216, 0.45),
    0 0 24px rgba(45, 246, 255, 0.18);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
  box-shadow:
    0 0 10px rgba(255, 79, 216, 0.55),
    0 0 22px rgba(45, 246, 255, 0.25);
}

.join-btn {
  min-width: 200px;
  height: 74px !important;
  margin-left: 26px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 45%, var(--accent-cyan) 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--text-main) !important;
  box-shadow:
    0 0 18px rgba(255, 79, 216, 0.22),
    0 0 40px rgba(45, 246, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-size: 1.2rem !important;
}

.join-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow:
    0 0 22px rgba(255, 79, 216, 0.34),
    0 0 54px rgba(45, 246, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}


/* ===================== HERO ===================== */

.hero,
.page-hero {
  text-align: center;
  background:
    linear-gradient(rgba(4, 6, 12, 0.60), rgba(4, 6, 12, 0.78)),
    url('images/hero.jpg') center/cover no-repeat;
}

.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.page-hero {
  padding: 110px 20px 70px;
}

.hero h1,
.page-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-main);
  letter-spacing: 1px;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  text-shadow:
    0 0 10px rgba(45, 246, 255, 0.16),
    0 0 26px rgba(255, 79, 216, 0.20);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: 3.2rem;
}

.hero p,
.page-hero p {
  color: #d5dcf5;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 700px;
}

.page-hero p {
  margin-top: 18px;
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===================== BUTTONS ===================== */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 45%, var(--accent-cyan) 100%);
  color: var(--text-main);
  box-shadow:
    0 0 12px rgba(255, 79, 216, 0.22),
    0 0 30px rgba(45, 246, 255, 0.16);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 18px rgba(255, 79, 216, 0.30),
    0 0 40px rgba(45, 246, 255, 0.22);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(45, 246, 255, 0.20);
}

/* ===================== HOME SECTIONS ===================== */

.features,
.showcase,
.cta {
  padding: 80px 60px;
}

.features {
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.96), rgba(6, 9, 18, 0.96));
}

.showcase {
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.96), rgba(5, 8, 16, 0.96));
  text-align: center;
}

.cta {
  text-align: center;
  background:
    radial-gradient(circle at left, rgba(255, 79, 216, 0.14), transparent 20%),
    radial-gradient(circle at right, rgba(45, 246, 255, 0.14), transparent 22%),
    linear-gradient(135deg, #0c1020, #090d18);
}

.features h2,
.showcase h2,
.cta h2,
.rules-section h2 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  text-shadow:
    0 0 8px rgba(45, 246, 255, 0.12),
    0 0 18px rgba(255, 79, 216, 0.12);
}

.features h2,
.showcase h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.05rem;
  color: #e5ecff;
  margin-bottom: 28px;
}

.showcase ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.showcase li {
  font-size: 1.05rem;
  color: #d4dcf7;
  margin: 14px 0;
}

/* ===================== FEATURE CARDS ===================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid rgba(45, 246, 255, 0.10);
  padding: 28px;
  border-radius: 16px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 16px rgba(45, 246, 255, 0.04);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 79, 216, 0.24);
  box-shadow:
    0 0 18px rgba(255, 79, 216, 0.12),
    0 0 28px rgba(45, 246, 255, 0.08);
}

.feature-card h3 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.feature-card p {
  color: #c7d1ef;
  font-size: 0.96rem;
}

/* ===================== RULES PAGE ===================== */

.rules-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px 90px;
}

.rules-section {
  margin-bottom: 38px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 18, 34, 0.96), rgba(9, 12, 22, 0.96));
  border: 1px solid rgba(45, 246, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(45, 246, 255, 0.03) inset,
    0 0 24px rgba(255, 79, 216, 0.05);
}

.rules-section h2 {
  margin-bottom: 20px;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--accent-pink);
}

.rules-list {
  display: grid;
  gap: 14px;
}

.rule-card {
  padding: 18px 18px 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--accent-cyan);
  color: #e8eeff;
  line-height: 1.75;
  font-size: 0.98rem;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 12px rgba(45, 246, 255, 0.04);
}

.rule-card strong {
  color: var(--text-main);
}

.final-rules-note p {
  color: #d4dcf7;
  line-height: 1.8;
}

/* ===================== STAFF PAGE ===================== */

.staff-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px 90px;
}

.staff-intro {
  margin-bottom: 38px;
}

.staff-intro-card {
  padding: 32px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 18, 34, 0.96), rgba(9, 12, 22, 0.96));
  border: 1px solid rgba(45, 246, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(45, 246, 255, 0.03) inset,
    0 0 24px rgba(255, 79, 216, 0.05);
}

.staff-intro-card h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.9rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  color: var(--text-main);
  text-shadow:
    0 0 8px rgba(45, 246, 255, 0.12),
    0 0 18px rgba(255, 79, 216, 0.12);
}

.staff-intro-card p {
  color: #d4dcf7;
  max-width: 900px;
  line-height: 1.8;
}

.staff-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.staff-section {
  margin-bottom: 38px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 18, 34, 0.96), rgba(9, 12, 22, 0.96));
  border: 1px solid rgba(45, 246, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(45, 246, 255, 0.03) inset,
    0 0 24px rgba(255, 79, 216, 0.05);
}

.staff-section h2 {
  margin-bottom: 22px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-pink);
  text-shadow:
    0 0 8px rgba(255, 79, 216, 0.18),
    0 0 16px rgba(45, 246, 255, 0.10);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.staff-card {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 23, 42, 0.96), rgba(10, 13, 26, 0.96));
  border: 1px solid rgba(45, 246, 255, 0.10);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 16px rgba(45, 246, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.staff-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 79, 216, 0.24);
  box-shadow:
    0 0 18px rgba(255, 79, 216, 0.12),
    0 0 28px rgba(45, 246, 255, 0.08);
}

.staff-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple), var(--accent-cyan));
  box-shadow:
    0 0 14px rgba(255, 79, 216, 0.20),
    0 0 24px rgba(45, 246, 255, 0.14);
}

.staff-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.staff-role {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 79, 216, 0.12);
  border: 1px solid rgba(255, 79, 216, 0.16);
}

.staff-card p {
  color: #d0d9f6;
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ===================== MEDIA / HOME MEDIA ===================== */

.media-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px 90px;
}

.media-section,
.media-featured {
  margin-bottom: 38px;
}

.home-media-section {
  padding: 60px 50px;
}

.media-submit-section {
  margin-top: 20px;
}

.media-section h2,
.media-feature-content h2,
.media-submit-card h2 {
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-pink);
  text-shadow:
    0 0 8px rgba(255, 79, 216, 0.18),
    0 0 16px rgba(45, 246, 255, 0.10);
}

.media-feature-card,
.media-submit-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 18, 34, 0.96), rgba(9, 12, 22, 0.96));
  border: 1px solid rgba(45, 246, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(45, 246, 255, 0.03) inset,
    0 0 24px rgba(255, 79, 216, 0.05);
}

.media-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(45, 246, 255, 0.10);
}

.media-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-feature-content p,
.media-submit-card p {
  color: #d4dcf7;
  line-height: 1.8;
}

.media-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.tiktok-embed,
.media-clip-card blockquote {
  border-radius: 16px;
  overflow: hidden;
  margin: 0 !important;
  max-width: 100% !important;
}

.media-clip-card iframe {
  width: 100% !important;
  border: 0;
}

.media-video {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(45, 246, 255, 0.15);
  background: #000;
}

.media-video iframe,
.media-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


.media-clips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.media-clip-card {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 23, 42, 0.96), rgba(10, 13, 26, 0.96));
  border: 1px solid rgba(45, 246, 255, 0.10);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 16px rgba(45, 246, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.media-clip-card:hover,
.media-gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 79, 216, 0.24);
  box-shadow:
    0 0 18px rgba(255, 79, 216, 0.12),
    0 0 28px rgba(45, 246, 255, 0.08);
}

.media-clip-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  margin: 16px 0 10px;
  color: var(--text-main);
}

.media-clip-card p {
  color: #d0d9f6;
  line-height: 1.75;
  font-size: 0.95rem;
}

.media-placeholder {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 79, 216, 0.10), rgba(45, 246, 255, 0.10)),
    rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(45, 246, 255, 0.18);
  color: #d9e0ff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.media-section {
  max-width: 1700px;
  margin: 0 auto; /* THIS centers it */
  padding: 60px 20px;
}

.media-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(45, 246, 255, 0.10);
  background: linear-gradient(180deg, rgba(18, 23, 42, 0.96), rgba(10, 13, 26, 0.96));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.media-gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 7, 13, 0.88), rgba(5, 7, 13, 0.18));
  display: flex;
  align-items: end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.media-gallery-item:hover .media-overlay {
  opacity: 1;
}

.media-overlay span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.media-submit-card {
  grid-template-columns: 1fr;
  text-align: center;
}

.media-submit-card .btn {
  margin: 8px auto 0;
}

.media-slideshow {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  border-radius: 18px;
}

.media-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.media-slideshow .slide.active {
  opacity: 1;
}

/* ===================== SUBSCRIPTIONS / STATS ===================== */

.subscriptions-section,
.player-stats-section {
  padding: 80px 60px;
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.96), rgba(5, 8, 16, 0.96));
}

.subscriptions-header,
.player-stats-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px;
}

.subscriptions-header h2,
.player-stats-header h2 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  text-shadow:
    0 0 8px rgba(45, 246, 255, 0.12),
    0 0 18px rgba(255, 79, 216, 0.12);
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.subscriptions-section {
  padding: 80px 20px;
}

.subscriptions-container {
  max-width: 1300px;
  margin: 0 auto;
}

.subscriptions-header p,
.player-stats-header p {
  color: #d4dcf7;
  line-height: 1.8;
}

.subscriptions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.subscription-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(14, 18, 34, 0.96), rgba(9, 12, 22, 0.96));
  border: 1px solid rgba(45, 246, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(45, 246, 255, 0.03) inset,
    0 0 24px rgba(255, 79, 216, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.subscription-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 79, 216, 0.24);
  box-shadow:
    0 0 18px rgba(255, 79, 216, 0.12),
    0 0 28px rgba(45, 246, 255, 0.08);
}

.featured-subscription {
  border-color: rgba(255, 79, 216, 0.28);
  box-shadow:
    0 0 18px rgba(255, 79, 216, 0.12),
    0 0 28px rgba(45, 246, 255, 0.08);
}

.subscription-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 79, 216, 0.12);
  border: 1px solid rgba(255, 79, 216, 0.18);
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.subscription-tier {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem;
  color: var(--accent-pink);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.subscription-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  color: var(--text-main);
  margin-bottom: 18px;
}

.subscription-price span {
  font-size: 1rem;
  color: #cfd8ff;
}

.subscription-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.subscription-card li {
  color: #d4dcf7;
  margin-bottom: 10px;
  line-height: 1.7;
}

.player-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.player-stat-card {
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14, 18, 34, 0.96), rgba(9, 12, 22, 0.96));
  border: 1px solid rgba(45, 246, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(45, 246, 255, 0.03) inset,
    0 0 24px rgba(255, 79, 216, 0.05);
  text-align: center;
}

.player-stat-label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  color: #cfd8ff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.player-stat-value {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  color: var(--accent-cyan);
  text-shadow:
    0 0 10px rgba(45, 246, 255, 0.18),
    0 0 18px rgba(255, 79, 216, 0.10);
}

/* ===================== FOOTER ===================== */

footer {
  text-align: center;
  padding: 24px 20px;
  background: #060811;
  color: #9eabd1;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===================== PARTICLES ===================== */

#particle-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.particle {
  position: absolute;
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2df6ff, #ff4fd8, #8b5cf6);
  box-shadow:
    0 0 6px rgba(45, 246, 255, 0.9),
    0 0 12px rgba(255, 79, 216, 0.7),
    0 0 18px rgba(139, 92, 246, 0.5);
  opacity: 1;
  transform: translate(-50%, -50%) rotate(var(--rotate));
  animation: sparkFly 650ms ease-out forwards;
}

.particle::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  background: inherit;
  filter: blur(4px);
  opacity: 0.9;
}

@keyframes sparkFly {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--rotate)) scale(1);
  }
  100% {
    opacity: 0;
    transform:
      translate(
        calc(-50% + var(--x)),
        calc(-50% + var(--y))
      )
      rotate(var(--rotate))
      scale(0.4);
  }
}
.discount-sticker {
  position: fixed;
  top: 120px;
  right: 24px;
  z-index: 2000;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #ff4fd8 25%, #8b5cf6 60%, #2df6ff 100%);
  color: #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 18px rgba(255, 79, 216, 0.30),
    0 0 34px rgba(45, 246, 255, 0.22),
    inset 0 0 18px rgba(255, 255, 255, 0.10);
  transform: rotate(12deg);
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.discount-sticker:hover {
  transform: rotate(12deg) scale(1.06);
  filter: brightness(1.06);
  box-shadow:
    0 0 22px rgba(255, 79, 216, 0.38),
    0 0 42px rgba(45, 246, 255, 0.28),
    inset 0 0 18px rgba(255, 255, 255, 0.12);
}

.discount-top {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.95;
}

.discount-main {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  margin: 4px 0;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.18),
    0 0 14px rgba(0, 0, 0, 0.18);
}

.discount-bottom {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .discount-sticker {
    width: 92px;
    height: 92px;
    top: 105px;
    right: 14px;
  }

  .discount-top {
    font-size: 0.48rem;
  }

  .discount-main {
    font-size: 1.08rem;
  }

  .discount-bottom {
    font-size: 0.52rem;
  }
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1100px) {
  .navbar {
    padding: 18px 16px 0;
  }

  .navbar-scroll {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    min-height: auto;
    gap: 18px;
  }

  .navbar-brand {
    justify-content: center;
  }

  .brand-divider {
    height: 58px;
  }

  .nav-menu {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-menu a {
    min-width: 120px;
    height: 58px;
    border-radius: 12px;
  }

  .nav-menu a:not(.join-btn)::before {
    display: none;
  }

  .nav-menu a.active::after {
    bottom: 6px;
  }

  .join-btn {
    height: 58px !important;
    margin-left: 0;
    min-width: 150px;
  }

  .feature-grid,
  .staff-grid,
  .media-clips-grid,
  .media-gallery-grid,
  .subscriptions-grid,
  .player-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .media-feature-card,
  .media-submit-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 75vh;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .hero p,
  .page-hero p {
    font-size: 0.98rem;
  }

  .features,
  .showcase,
  .cta,
  .subscriptions-section,
  .player-stats-section {
    padding: 60px 20px;
  }

  .home-media-section {
    padding: 50px 20px;
  }

  .feature-grid,
  .staff-grid,
  .media-clips-grid,
  .media-gallery-grid,
  .subscriptions-grid,
  .player-stats-grid {
    grid-template-columns: 1fr;
  }

  .cta h2,
  .subscriptions-header h2,
  .player-stats-header h2 {
    font-size: 1.8rem;
  }

  .rules-page,
  .staff-page,
  .media-page {
    padding: 40px 14px 70px;
  }

  .rules-section,
  .staff-intro-card,
  .staff-section,
  .media-feature-card,
  .media-submit-card,
  .media-clip-card {
    padding: 20px;
  }

  .rules-section h2,
  .staff-section h2,
  .media-section h2,
  .media-feature-content h2,
  .media-submit-card h2 {
    font-size: 1.2rem;
  }

  .rule-card {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .staff-buttons,
  .media-buttons {
    flex-direction: column;
  }

  .media-feature-image img,
  .media-gallery-item img,
  .media-placeholder,
  .media-video,
  .media-slideshow {
    height: 220px;
    min-height: 220px;
  }

  .subscription-price {
    font-size: 2rem;
  }

  .player-stat-value {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .brand-logo {
    width: 84px;
  }

  .brand-text {
    font-size: 1.9rem;
  }

  .brand-subtext {
    font-size: 0.75rem;
    letter-spacing: 5px;
  }

  .nav-menu a {
    min-width: 100px;
    font-size: 0.82rem;
    padding: 0 12px;
  }
}