/* =============================================
   RUSHKARO eSPORTS – Global Styles
   ============================================= */

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

:root {
  --lime: #a8ff00;
  --lime-dim: #7acc00;
  --red: #ff2d2d;
  --red-dim: #cc1a1a;
  --bg: #080c14;
  --bg2: #0d1220;
  --bg3: #111827;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(168,255,0,0.12);
  --text: #e8edf5;
  --text-muted: #7a889a;
  --font-title: 'Orbitron', monospace;
  --font-body: 'Rajdhani', sans-serif;
  --glow-lime: 0 0 20px rgba(168,255,0,0.5), 0 0 60px rgba(168,255,0,0.2);
  --glow-red: 0 0 20px rgba(255,45,45,0.5), 0 0 60px rgba(255,45,45,0.2);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--lime) var(--bg2);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 3px; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
  cursor: none;
}

/* ---- CURSOR ---- */
.custom-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
  transform: translate(-50%, -50%);
}

.custom-cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease;
}

body:has(.btn-primary:hover) .custom-cursor,
body:has(.btn-secondary:hover) .custom-cursor,
body:has(.btn-join:hover) .custom-cursor {
  transform: translate(-50%, -50%) scale(1.6);
  background: rgba(168,255,0,0.15);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(8,12,20,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168,255,0,0.08);
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(8,12,20,0.97);
  border-bottom-color: rgba(168,255,0,0.2);
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 1.35rem;
  letter-spacing: 1px;
  user-select: none;
}

.logo-rush { color: var(--lime); }
.logo-karo { color: #fff; }
.logo-tag {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-left: 6px;
  letter-spacing: 4px;
  text-transform: uppercase;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--lime);
}

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

.btn-join {
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-dim) 100%);
  color: #080c14;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.2s;
}

.btn-join:hover {
  box-shadow: var(--glow-lime);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
  transition: 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 50%, #0f1e0a 0%, var(--bg) 70%);
}

.scanline-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.07) 3px,
    rgba(0,0,0,0.07) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleDrift linear infinite;
  opacity: 0;
}

@keyframes particleDrift {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-20vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 600px;
  padding: 0 5%;
  padding-top: 70px;
}

.hero-badge {
  display: inline-block;
  background: rgba(168,255,0,0.1);
  border: 1px solid rgba(168,255,0,0.3);
  color: var(--lime);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
  animation: fadeSlideUp 0.8s ease 0.4s both;
}

.highlight {
  color: var(--lime);
  text-shadow: var(--glow-lime);
}

.highlight-red {
  color: var(--red);
  text-shadow: var(--glow-red);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeSlideUp 0.8s ease 0.8s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-dim) 100%);
  color: #080c14;
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  box-shadow: var(--glow-lime);
  transform: translateY(-3px);
}

.btn-secondary {
  border: 2px solid rgba(168,255,0,0.4);
  color: var(--lime);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(168,255,0,0.1);
  border-color: var(--lime);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeSlideUp 0.8s ease 1s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(168,255,0,0.2);
}

/* HERO 3D */
.hero-3d {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.character-glow {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(168,255,0,0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scaleX(1.2); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeSlideUp 1s ease 1.5s both;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.4; }
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-label {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 5px;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 3rem;
}

/* ABOUT CARDS */
.about-section {
  background: var(--bg2);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.about-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168,255,0,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--glow-lime);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.about-card h3 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--lime);
  margin-bottom: 0.75rem;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* TOURNAMENTS */
.tournaments-section {
  background: var(--bg);
  overflow: hidden;
}

.tournaments-section::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,45,45,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.tournament-card {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tournament-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.tournament-card.featured {
  border-color: rgba(168,255,0,0.25);
}

.tournament-card.featured::before {
  background: linear-gradient(90deg, var(--lime), transparent);
}

.tournament-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.tourn-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.tourn-badge.live   { background: rgba(255,45,45,0.15); color: var(--red); }
.tourn-badge.upcoming { background: rgba(168,255,0,0.12); color: var(--lime); }
.tourn-badge.soon   { background: rgba(255,200,0,0.12); color: #ffc800; }

.tourn-game {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.tourn-name {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.tourn-prize {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--lime);
  margin-bottom: 1rem;
}

.tournament-card.featured .tourn-prize { color: var(--lime); }
.tournament-card:not(.featured) .tourn-prize { color: var(--red); }

.tourn-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.btn-tourn {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid rgba(168,255,0,0.4);
  color: var(--lime);
  transition: background 0.3s, box-shadow 0.3s;
}

.btn-tourn:hover {
  background: rgba(168,255,0,0.12);
  box-shadow: var(--glow-lime);
}

/* TEAM */
.team-section {
  background: var(--bg2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(168,255,0,0.15);
}

.team-avatar {
  height: 180px;
  background: linear-gradient(135deg, #0d1a07, #0e0e1a);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.team-info {
  padding: 1.2rem 1.5rem;
}

.team-name {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--lime);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.team-kills {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- FOOTER ---- */
.footer {
  background: #050810;
  border-top: 1px solid rgba(168,255,0,0.08);
  padding-top: 60px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 40px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--text-muted);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

/* LOOT BOX SECTION */
.loot-box-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 5% 60px;
  position: relative;
  overflow: hidden;
}

.loot-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
  transition: color 0.5s;
}

.loot-title.opening {
  color: var(--lime);
}

.loot-canvas-wrap {
  position: relative;
  width: 240px;
  height: 240px;
}

#loot-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.loot-glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(168,255,0,0.1);
  animation: lootRingPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lootRingPulse {
  0%, 100% { transform: scale(1);   opacity: 0.3; }
  50%       { transform: scale(1.08); opacity: 0.8; }
}

.loot-reveal {
  max-width: 700px;
  width: 100%;
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.loot-reveal.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.loot-reveal-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 3px;
  margin-bottom: 2rem;
  text-shadow: var(--glow-lime);
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: 1px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: lootItemPop 0s ease both;
}

.loot-reveal.visible .social-btn:nth-child(1) { animation-duration: 0.4s; animation-delay: 0.1s; }
.loot-reveal.visible .social-btn:nth-child(2) { animation-duration: 0.4s; animation-delay: 0.2s; }
.loot-reveal.visible .social-btn:nth-child(3) { animation-duration: 0.4s; animation-delay: 0.3s; }
.loot-reveal.visible .social-btn:nth-child(4) { animation-duration: 0.4s; animation-delay: 0.4s; }
.loot-reveal.visible .social-btn:nth-child(5) { animation-duration: 0.4s; animation-delay: 0.5s; }

@keyframes lootItemPop {
  0%   { transform: scale(0.5) translateY(20px); opacity: 0; }
  80%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.social-btn:hover { transform: translateY(-4px) scale(1.05); }

.instagram { background: rgba(225,48,108,0.12); color: #e1306c; border-color: rgba(225,48,108,0.3); }
.instagram:hover { box-shadow: 0 0 30px rgba(225,48,108,0.4); }

.youtube { background: rgba(255,0,0,0.1); color: #ff0000; border-color: rgba(255,0,0,0.25); }
.youtube:hover { box-shadow: 0 0 30px rgba(255,0,0,0.4); }

.discord { background: rgba(88,101,242,0.12); color: #5865f2; border-color: rgba(88,101,242,0.3); }
.discord:hover { box-shadow: 0 0 30px rgba(88,101,242,0.4); }

.twitter { background: rgba(29,161,242,0.1); color: #1da1f2; border-color: rgba(29,161,242,0.25); }
.twitter:hover { box-shadow: 0 0 30px rgba(29,161,242,0.4); }

.support { background: rgba(168,255,0,0.08); color: var(--lime); border-color: rgba(168,255,0,0.25); }
.support:hover { box-shadow: var(--glow-lime); }

.facebook { background: rgba(24,119,242,0.1); color: #1877f2; border-color: rgba(24,119,242,0.25); }
.facebook:hover { box-shadow: 0 0 30px rgba(24,119,242,0.4); }


.social-icon { font-size: 1.2rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 5%;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item:nth-child(1) { transition-delay: 0s; }
.reveal-item:nth-child(2) { transition-delay: 0.1s; }
.reveal-item:nth-child(3) { transition-delay: 0.15s; }
.reveal-item:nth-child(4) { transition-delay: 0.2s; }
.reveal-item:nth-child(5) { transition-delay: 0.25s; }
.reveal-item:nth-child(6) { transition-delay: 0.3s; }

/* About card overrides */
.about-card.reveal-item { transition-delay: calc(var(--i, 0) * 0.1s); }
.about-grid .reveal-item:nth-child(1) { transition-delay: 0.0s; }
.about-grid .reveal-item:nth-child(2) { transition-delay: 0.1s; }
.about-grid .reveal-item:nth-child(3) { transition-delay: 0.2s; }
.about-grid .reveal-item:nth-child(4) { transition-delay: 0.3s; }

.tournament-grid .reveal-item:nth-child(1) { transition-delay: 0.0s; }
.tournament-grid .reveal-item:nth-child(2) { transition-delay: 0.15s; }
.tournament-grid .reveal-item:nth-child(3) { transition-delay: 0.3s; }

.team-grid .reveal-item:nth-child(1) { transition-delay: 0.0s; }
.team-grid .reveal-item:nth-child(2) { transition-delay: 0.1s; }
.team-grid .reveal-item:nth-child(3) { transition-delay: 0.2s; }
.team-grid .reveal-item:nth-child(4) { transition-delay: 0.3s; }

/* ---- KEYFRAMES ---- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-3d {
    width: 100%;
    opacity: 0.4;
    height: 100%;
  }
  .hero-content {
    z-index: 10;
    position: relative;
  }
  .nav-links, .btn-join { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 1.9rem; }
  .hero-stats { gap: 1rem; flex-wrap: wrap; }
  .stat-num { font-size: 1.2rem; }
}

/* ---- LOGO IMAGE ---- */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(168,255,0,0.35));
  transition: filter 0.3s;
}

.nav-logo-img:hover {
  filter: drop-shadow(0 0 16px rgba(168,255,0,0.7));
}

.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 0 12px rgba(168,255,0,0.4));
}

/* ---- SVG ICON SYSTEM ---- */
/* Generic inline SVG size control */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Badge icon (trophy, gift, unlock next to text) */
.badge-icon {
  width: 16px;
  height: 16px;
  color: var(--lime);
  margin-right: 6px;
  vertical-align: text-bottom;
}

/* Button icons */
.btn-icon {
  width: 14px;
  height: 14px;
  color: inherit;
  margin-right: 6px;
  vertical-align: middle;
}

/* About card icons */
.card-icon svg {
  width: 100%;
  height: 100%;
}

/* Tournament badge dot icons */
.badge-dot-icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
  vertical-align: middle;
  color: inherit;
}

/* Tournament meta icons */
.meta-icon {
  width: 13px;
  height: 13px;
  margin-right: 4px;
  vertical-align: middle;
  color: var(--text-muted);
}

/* Team kills skull icon */
.kill-icon {
  width: 14px;
  height: 14px;
  color: var(--red);
  margin-right: 5px;
  vertical-align: middle;
}

/* Loot title icon */
.loot-title-icon {
  width: 18px;
  height: 18px;
  color: inherit;
  margin-right: 8px;
  vertical-align: middle;
}

/* Loot reveal title */
.loot-reveal-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Social btn icon */
.social-icon {
  width: 20px;
  height: 20px;
  color: inherit;
  flex-shrink: 0;
}

/* Footer bottom heart icon */
.inline-icon {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin: 0 3px;
}

.heart-icon {
  color: var(--red);
  animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25); }
}

/* Loot title flex alignment */
.loot-title {
  display: flex;
  align-items: center;
}

/* Social btn uses flex – icon already flex child */
.social-btn { display: flex; }

/* Live badge pulsing dot */
.tourn-badge.live .badge-dot-icon {
  animation: liveP 1.2s ease-in-out infinite;
}

@keyframes liveP {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ---- CONTACT SECTION ---- */
.contact-section {
  background: var(--bg2);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

/* Info panel */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 24px;
  height: 24px;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-label {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-value {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-value:hover { color: var(--lime); }

.contact-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(168,255,0,0.1);
}

/* Form */
.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-family: var(--font-title);
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: var(--lime);
  text-transform: uppercase;
}

.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(168,255,0,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}

.form-input::placeholder { color: rgba(122,136,154,0.6); }

.form-input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(168,255,0,0.1), var(--glow-lime);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8ff00' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--bg3);
  color: var(--text);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--font-body);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-dim) 100%);
  color: #080c14;
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: none;
  transition: box-shadow 0.3s, transform 0.2s;
  width: 100%;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  box-shadow: var(--glow-lime);
  transform: translateY(-2px);
}

.btn-submit:active { transform: translateY(0); }

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(168,255,0,0.1);
  border: 1px solid rgba(168,255,0,0.35);
  border-radius: 8px;
  color: var(--lime);
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 1px;
  animation: fadeSlideUp 0.5s ease;
}

.form-success.visible { display: flex; }

.success-icon {
  width: 16px;
  height: 16px;
  color: var(--lime);
}

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
}

/* ---- FOUNDER SECTION ---- */
.founder-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.founder-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(168,255,0,0.08);
  border-color: rgba(168,255,0,0.25);
}

.founder-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--lime);
  box-shadow: var(--glow-lime);
}

.founder-avatar {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, rgba(168,255,0,0.1), rgba(168,255,0,0.02));
  border: 2px solid rgba(168,255,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(168,255,0,0.05), 0 0 30px rgba(168,255,0,0.1);
}

.founder-avatar-icon {
  width: 50px;
  height: 50px;
  color: var(--lime);
}

.founder-info {
  flex-grow: 1;
}

.founder-name {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 0.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.founder-role {
  font-family: var(--font-title);
  color: var(--lime);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.founder-bio {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  border-left: 2px solid rgba(255,255,255,0.1);
  padding-left: 1rem;
}

.founder-details {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.f-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.f-detail a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.f-detail a:hover {
  color: var(--lime);
}

.f-icon {
  width: 16px;
  height: 16px;
  color: var(--lime);
}

@media (max-width: 768px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }
  .founder-card::before {
    width: 100%; height: 4px;
  }
  .founder-bio {
    border-left: none;
    padding-left: 0;
  }
  .founder-details {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }
}



