/* ==========================================================
   DIABLO GAMING OFFICIAL STYLESHEET
   Cyber / Obsidian / Crimson Neon Gaming Theme
   ========================================================== */

:root {
  --bg-core: #07070a;
  --bg-surface: #0f0f17;
  --bg-card: rgba(19, 20, 31, 0.75);
  --bg-card-hover: rgba(27, 28, 44, 0.85);
  --border-color: rgba(255, 30, 68, 0.18);
  --border-highlight: rgba(255, 30, 68, 0.6);
  
  --primary-red: #ff1e44;
  --primary-red-glow: rgba(255, 30, 68, 0.45);
  --accent-orange: #ff5722;
  --accent-gold: #ffb300;
  --accent-cyan: #00e5ff;
  --accent-discord: #5865f2;

  --text-primary: #ffffff;
  --text-secondary: #9ea3b5;
  --text-muted: #5e647b;

  --font-heading: 'Orbitron', -apple-system, sans-serif;
  --font-subheading: 'Rajdhani', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 0 25px rgba(255, 30, 68, 0.35);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 16px;
}

body {
  background-color: var(--bg-core);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Ambient Canvas & Glows */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.ambient-glow {
  position: fixed;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  /* Hardware-friendly smooth gradient without heavy CPU filter:blur */
  filter: none;
}

.glow-top {
  top: -180px;
  left: 20%;
  background: radial-gradient(circle, rgba(255, 30, 68, 0.45) 0%, rgba(255, 30, 68, 0.15) 40%, rgba(255, 30, 68, 0.03) 65%, transparent 75%);
}

.glow-bottom {
  bottom: -180px;
  right: 15%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.4) 0%, rgba(255, 87, 34, 0.12) 40%, rgba(255, 87, 34, 0.03) 65%, transparent 75%);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Typography Helpers */
.fire-text {
  background: linear-gradient(135deg, #ff1e44 0%, #ff6b35 50%, #ffa100 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 50, 70, 0.4);
}

/* ==========================================================
   NAVIGATION BAR
   ========================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(7, 7, 10, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 30, 68, 0.15);
  z-index: 1000;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  height: 68px;
  background: rgba(7, 7, 10, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 30, 68, 0.15);
}

.nav-container {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.nav-logo:hover {
  transform: scale(1.03);
}

.logo-avatar-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary-red);
  box-shadow: 0 0 12px var(--primary-red-glow);
}

.logo-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.live-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: #00ff66;
  border: 2px solid #07070a;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff66;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(0, 255, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(255, 30, 68, 0.4);
}

.logo-sub {
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--primary-red);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-subheading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
  transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-icon:hover {
  color: #fff;
  background: rgba(255, 30, 68, 0.15);
  border-color: var(--primary-red);
}

.btn-discord-nav:hover {
  background: rgba(88, 101, 242, 0.25) !important;
  border-color: #5865f2 !important;
  color: #fff !important;
  box-shadow: 0 0 14px rgba(88, 101, 242, 0.5);
}

.btn-tiktok-nav:hover {
  background: rgba(0, 242, 254, 0.2) !important;
  border-color: #00f2fe !important;
  color: #fff !important;
  box-shadow: 0 0 14px rgba(0, 242, 254, 0.5);
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}

.btn-yt-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff0000 0%, #c40000 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.35);
  transition: all var(--transition-fast);
}

.btn-yt-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
  background: linear-gradient(135deg, #ff1e44 0%, #d40027 100%);
}

.yt-icon {
  width: 18px;
  height: 18px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 24px 60px;
  z-index: 2;
  background: radial-gradient(ellipse at center top, rgba(255, 30, 68, 0.08) 0%, transparent 70%);
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 30, 68, 0.1);
  border: 1px solid rgba(255, 30, 68, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-red);
  margin-bottom: 24px;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--primary-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-red);
  animation: pulse-ring 1.8s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 34px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  width: fit-content;
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-orange) 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--primary-red-glow);
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 30, 68, 0.6);
  filter: brightness(1.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 30, 68, 0.12);
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

.btn-icon-svg {
  width: 18px;
  height: 18px;
}

/* Creator Card Visual in Hero */
.creator-card-glow {
  position: relative;
  display: flex;
  justify-content: center;
}

.creator-card-glow::before {
  content: '';
  position: absolute;
  inset: -6px;
  background: linear-gradient(135deg, rgba(255, 30, 68, 0.4), rgba(255, 87, 34, 0.3));
  border-radius: 26px;
  box-shadow: 0 0 25px rgba(255, 30, 68, 0.35);
  opacity: 0.8;
  z-index: 1;
}

.creator-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
}

.creator-banner {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.2);
}

.channel-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 102, 0.4);
  color: #00ff66;
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-indicator {
  width: 6px;
  height: 6px;
  background-color: #00ff66;
  border-radius: 50%;
  box-shadow: 0 0 6px #00ff66;
}

.creator-details {
  padding: 0 24px 28px;
  text-align: center;
  position: relative;
}

.creator-avatar-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--primary-red);
  box-shadow: 0 0 20px var(--primary-red-glow);
  margin: -45px auto 12px;
  position: relative;
  background: var(--bg-core);
  overflow: hidden;
}

.creator-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 2px;
}

.creator-handle {
  font-family: var(--font-subheading);
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.creator-tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.creator-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.creator-social-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.social-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
}

.social-badge-btn svg {
  width: 14px;
  height: 14px;
}

.yt-badge {
  background: rgba(255, 0, 0, 0.12);
  color: #ff3333;
  border: 1px solid rgba(255, 0, 0, 0.3);
}

.yt-badge:hover {
  background: #ff0000;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  transform: translateY(-2px);
}

.discord-badge {
  background: rgba(88, 101, 242, 0.12);
  color: #7289da;
  border: 1px solid rgba(88, 101, 242, 0.3);
}

.discord-badge:hover {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
  transform: translateY(-2px);
}

.tiktok-badge {
  background: rgba(0, 242, 254, 0.12);
  color: #00f2fe;
  border: 1px solid rgba(0, 242, 254, 0.3);
}

.tiktok-badge:hover {
  background: linear-gradient(135deg, #00f2fe 0%, #fe0979 100%);
  color: #fff;
  border-color: #00f2fe;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
  transform: translateY(-2px);
}

.btn-channel-link {
  display: block;
  width: 100%;
  text-align: center;
  background: rgba(255, 30, 68, 0.15);
  border: 1px solid var(--primary-red);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.btn-channel-link:hover {
  background: var(--primary-red);
  box-shadow: 0 4px 15px var(--primary-red-glow);
}

/* ==========================================================
   SECTIONS GENERAL
   ========================================================== */
.section {
  padding: 90px 0;
  position: relative;
  z-index: 2;
}

.section-dark {
  background: linear-gradient(180deg, rgba(15, 15, 23, 0.6) 0%, rgba(7, 7, 10, 0.8) 100%);
  border-top: 1px solid rgba(255, 30, 68, 0.1);
  border-bottom: 1px solid rgba(255, 30, 68, 0.1);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-subtitle {
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary-red);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================================================
   VIDEOS & SHORTS SHOWCASE
   ========================================================== */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: #ffffff;
  border-color: var(--primary-red);
  background: rgba(255, 30, 68, 0.1);
}

.filter-btn.active {
  background: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
  box-shadow: 0 4px 15px var(--primary-red-glow);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-red);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 30, 68, 0.25);
}

.video-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #12121a;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.video-card:hover .video-thumb {
  transform: scale(1.06);
}

.video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 52px;
  height: 52px;
  background: rgba(255, 30, 68, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-fast);
  opacity: 0.9;
}

.video-play-badge svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.video-card:hover .video-play-badge {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary-red);
  box-shadow: 0 0 25px var(--primary-red-glow);
  opacity: 1;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  color: #ffffff;
}

.video-info {
  padding: 18px 20px;
}

.video-tag {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-red);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.video-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.play-cta {
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.yt-link-icon {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.yt-link-icon:hover {
  background: var(--primary-red);
  color: #ffffff;
}

.yt-link-icon svg {
  width: 16px;
  height: 16px;
}

/* Callout Bar */
.channel-callout {
  background: linear-gradient(135deg, rgba(255, 30, 68, 0.15) 0%, rgba(26, 17, 30, 0.7) 100%);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.callout-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 6px;
}

.callout-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==========================================================
   GAMING ARENAS SECTION
   ========================================================== */
.arenas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.arena-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.arena-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.arena-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-red);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 30, 68, 0.2);
}

.arena-card:hover::before {
  opacity: 1;
}

.arena-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.arena-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.arena-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.arena-list {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.arena-list li {
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.arena-list li::before {
  content: '▸';
  color: var(--primary-red);
}

/* ==========================================================
   BATTLESTATION & RIG SPECS
   ========================================================== */
.rig-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}

.spec-card:hover {
  border-color: var(--primary-red);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.spec-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 30, 68, 0.12);
  border: 1px solid rgba(255, 30, 68, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  flex-shrink: 0;
}

.spec-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.spec-type {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-red);
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 4px;
}

.spec-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
}

.spec-sub {
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.rig-banner {
  background: linear-gradient(145deg, rgba(255, 30, 68, 0.12) 0%, rgba(18, 18, 28, 0.9) 100%),
              url('https://images.unsplash.com/photo-1587202372775-e229f172b9d7?w=800&auto=format&fit=crop&q=80') center/cover;
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.rig-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.4) 0%, rgba(7, 7, 10, 0.85) 100%);
  z-index: 1;
}

.rig-banner-content {
  position: relative;
  z-index: 2;
}

.rig-badge {
  display: inline-block;
  background: var(--primary-red);
  color: #fff;
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.rig-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 12px;
}

.rig-banner p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.rig-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rig-tags span {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.8rem;
  font-family: var(--font-subheading);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

/* ==========================================================
   COMMUNITY SECTION
   ========================================================== */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  backdrop-filter: blur(12px);
  position: relative;
  transition: all var(--transition-smooth);
}

.community-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-red);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8);
}

.yt-hero-card {
  border-color: rgba(255, 0, 0, 0.4);
  background: linear-gradient(180deg, rgba(35, 12, 16, 0.7) 0%, rgba(15, 15, 23, 0.8) 100%);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.red-glow {
  background: rgba(255, 0, 0, 0.15);
  color: #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.blue-glow {
  background: rgba(88, 101, 242, 0.15);
  color: var(--accent-discord);
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
}

.cyan-glow {
  background: rgba(0, 242, 254, 0.15);
  color: #00f2fe;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.35);
}

.orange-glow {
  background: rgba(255, 140, 0, 0.15);
  color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.community-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}

.community-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.yt-handle-pill {
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-red);
  background: rgba(255, 30, 68, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 24px;
}

.discord-pill {
  color: var(--accent-discord);
  background: rgba(88, 101, 242, 0.12);
}

.tiktok-pill {
  color: #00f2fe;
  background: rgba(0, 242, 254, 0.12);
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.35);
  transition: all var(--transition-fast);
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
  filter: brightness(1.1);
}

.btn-tiktok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00f2fe 0%, #fe0979 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(254, 9, 121, 0.35);
  transition: all var(--transition-fast);
}

.btn-tiktok:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 9, 121, 0.6);
  filter: brightness(1.15);
}

.full-width {
  width: 100%;
}

/* Contact / Fan Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-textarea {
  min-height: 90px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 12px var(--primary-red-glow);
  background: rgba(0, 0, 0, 0.6);
}

.form-success {
  margin-top: 14px;
  padding: 12px;
  background: rgba(0, 255, 102, 0.12);
  border: 1px solid #00ff66;
  color: #00ff66;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.hidden {
  display: none !important;
}

/* ==========================================================
   VIDEO MODAL PLAYER
   ========================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  background: var(--bg-surface);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 30, 68, 0.35);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-dialog {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 15, 23, 0.8);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #fff;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--primary-red);
}

.modal-body {
  padding: 0;
  background: #000;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-footer {
  padding: 16px 24px;
  display: flex;
  justify-content: flex-end;
  background: rgba(15, 15, 23, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: #050508;
  border-top: 1px solid rgba(255, 30, 68, 0.18);
  padding: 70px 0 30px;
  position: relative;
  z-index: 2;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-left {
  max-width: 380px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.footer-bio {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col h4 {
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--primary-red);
  padding-left: 4px;
}

.footer-muted {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

/* ==========================================================
   RESPONSIVE DESIGN (TABLETS & MOBILE PHONES)
   ========================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-description {
    margin: 0 auto 30px;
  }

  .hero-stats {
    margin: 0 auto 32px;
  }

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

  .rig-layout {
    grid-template-columns: 1fr;
  }

  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation Bar */
  .navbar {
    height: 68px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .logo-avatar-wrap {
    width: 38px;
    height: 38px;
  }

  .logo-name {
    font-size: 1.05rem;
  }

  .logo-sub {
    font-size: 0.65rem;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(9, 9, 14, 0.98);
    flex-direction: column;
    padding: 24px 20px 30px;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-150%);
    transition: transform var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-actions {
    gap: 8px;
  }

  .btn-icon {
    width: 36px;
    height: 36px;
  }

  .btn-yt-nav {
    padding: 7px 12px;
    font-size: 0.85rem;
  }

  /* Mobile Hero Section */
  .hero {
    padding: 95px 16px 40px;
    min-height: auto;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
    margin-bottom: 16px;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  /* 2x2 Grid for Hero Stats on Phones */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    max-width: 440px;
    padding: 14px;
    margin: 0 auto 28px;
  }

  .stat-divider {
    display: none;
  }

  .stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
  }

  .stat-value {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* Stacked Full-Width Buttons */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    gap: 12px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.88rem;
    text-align: center;
    justify-content: center;
  }

  /* Creator Card on Mobile */
  .creator-card {
    max-width: 380px;
  }

  .creator-banner {
    height: 120px;
  }

  .creator-avatar-wrap {
    width: 78px;
    height: 78px;
    margin: -39px auto 10px;
  }

  .creator-name {
    font-size: 1.35rem;
  }

  /* Section Spacing */
  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 30px;
    padding: 0 8px;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  /* Smooth Horizontally-Scrollable Filter Pills */
  .filter-bar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 8px;
    padding: 4px 16px 14px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    padding: 7px 16px;
    font-size: 0.85rem;
  }

  /* 1-Column Video Cards */
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video-info {
    padding: 16px;
  }

  .video-title {
    font-size: 1rem;
  }

  /* Channel Callout */
  .channel-callout {
    flex-direction: column;
    text-align: center;
    padding: 24px 18px;
  }

  .channel-callout .btn-primary {
    width: 100%;
  }

  /* Arenas 1-Column */
  .arenas-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .arena-card {
    padding: 24px 18px;
  }

  /* Rig Specs 1-Column */
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .spec-card {
    padding: 18px 16px;
  }

  .rig-banner {
    padding: 28px 20px;
  }

  .rig-banner h3 {
    font-size: 1.35rem;
  }

  /* Community 1-Column */
  .community-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .community-card {
    padding: 24px 18px;
  }

  /* Video Modal on Mobile */
  .modal {
    padding: 12px;
  }

  .modal-dialog {
    border-radius: var(--radius-sm);
  }

  .modal-header {
    padding: 14px 18px;
  }

  .modal-title {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%;
  }

  .modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-footer {
    padding: 12px 18px;
  }

  .modal-footer .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 50px 0 24px;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .btn-yt-nav span {
    display: none;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
  }
}

/* ==========================================================
   LOW-POWER & GPU-OFF PERFORMANCE MODE
   Automatic fallback when GPU acceleration is disabled
   ========================================================== */
body.low-perf *,
body.low-perf *::before,
body.low-perf *::after {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body.low-perf {
  background-color: #07070a;
}

body.low-perf .ambient-glow {
  display: none !important;
}

body.low-perf .navbar {
  background: #09090e !important;
  border-bottom: 1px solid rgba(255, 30, 68, 0.3) !important;
}

body.low-perf .creator-card,
body.low-perf .hero-stats,
body.low-perf .video-card,
body.low-perf .arena-card,
body.low-perf .spec-card,
body.low-perf .community-card {
  background: #10111a !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

body.low-perf .creator-card-glow::before {
  display: none !important;
}

body.low-perf .fire-text {
  background: none !important;
  -webkit-text-fill-color: #ff3355 !important;
  color: #ff3355 !important;
}

body.low-perf .btn-primary {
  background: #ff1e44 !important;
}

body.low-perf .btn-discord {
  background: #5865f2 !important;
}

body.low-perf .btn-tiktok {
  background: #00f2fe !important;
  color: #000 !important;
}
