/* =============================================
   NINJA SPORT — style.css
   Workout · Street Art · Solid Mindset
   ============================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&family=Inter:wght@300;400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-primary:    #080808;
  --bg-secondary:  #0f0f0f;
  --bg-card:       #141414;
  --bg-card-hover: #1a1a1a;
  --fire-orange:   #ff4500;
  --fire-amber:    #ff8c00;
  --fire-gold:     #ffc107;
  --text-primary:  #f0f0f0;
  --text-muted:    #777;
  --text-dim:      #444;
  --border:        rgba(255, 69, 0, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --glow-sm:       0 0 15px rgba(255, 69, 0, 0.35);
  --glow-md:       0 0 30px rgba(255, 69, 0, 0.5);
  --glow-lg:       0 0 60px rgba(255, 69, 0, 0.7);
  --radius:        12px;
  --radius-lg:     20px;
  --nav-h:         68px;
  --ease:          0.3s ease;
}

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--fire-orange); border-radius: 3px; }

/* ── Selection ── */
::selection { background: rgba(255, 69, 0, 0.35); color: #fff; }

/* ══════════════════════════════════════════════
   LAYOUT HELPERS
══════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad { padding: 100px 0; }

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0 40px;
}

/* ── Section Labels ── */
.label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--fire-orange);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.85;
  margin-bottom: 55px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--ease);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-amber));
  color: #fff;
  box-shadow: 0 4px 24px rgba(255, 69, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 69, 0, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--fire-orange);
  color: var(--fire-orange);
  background: rgba(255, 69, 0, 0.06);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.6));
  transition: filter var(--ease);
}

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

.nav-logo span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--fire-orange);
  letter-spacing: 3px;
}

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

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--fire-orange);
  transform: scaleX(0);
  transition: transform var(--ease);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--fire-orange) !important;
  color: #fff !important;
  padding: 7px 18px;
  border-radius: 20px;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: background var(--ease), box-shadow var(--ease) !important;
}

.nav-cta:hover {
  background: var(--fire-amber) !important;
  box-shadow: var(--glow-sm) !important;
  color: #fff !important;
}

.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--ease);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 40px 120px;
  position: relative;
  overflow: hidden;
}

/* Grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,69,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,69,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Radial glow from center */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,69,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: clamp(100px, 16vw, 180px);
  filter: drop-shadow(0 0 30px rgba(255,69,0,0.5));
  animation: logoPulse 4s ease-in-out infinite;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(255,69,0,0.4)); }
  50%       { filter: drop-shadow(0 0 50px rgba(255,140,0,0.85)); }
}

.hero-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--fire-orange);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.8rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  background: linear-gradient(160deg, #ffffff 0%, #ff8c00 55%, #ff4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.6rem, 2vw, 1rem);
  font-weight: 400;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.9;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.badge {
  padding: 5px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--fire-amber);
  background: rgba(255,140,0,0.07);
  text-transform: uppercase;
  transition: all var(--ease);
}

.badge:hover {
  border-color: var(--fire-amber);
  background: rgba(255,140,0,0.14);
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
}

/* Animated scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 1;
  animation: bounceHint 2s ease-in-out infinite;
}

.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fire-orange), transparent);
}

@keyframes bounceHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Marquee strip */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, var(--bg-primary), transparent 10%, transparent 90%, var(--bg-primary));
}

.hero-marquee img {
  height: 50px;
  width: auto;
  display: inline-block;
  animation: marqueeScroll 18s linear infinite;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}

/* ══════════════════════════════════════════════
   MANIFESTO
══════════════════════════════════════════════ */
.manifesto {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 100px 40px;
  text-align: center;
}

.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
}

.manifesto-body {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 2.1;
}

.manifesto-body strong {
  color: var(--fire-amber);
  font-weight: 700;
}

.fire-headline {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 28px 0;
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════════
   DISCIPLINES SECTION
══════════════════════════════════════════════ */
.disciplines-section {
  padding: 100px 0;
}

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.discipline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px 28px 36px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: block;
}

/* Glow line at bottom on hover */
.discipline-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fire-orange), var(--fire-amber));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

/* Radial glow on hover */
.discipline-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,69,0,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.discipline-card:hover {
  border-color: var(--border);
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,69,0,0.2);
  background: var(--bg-card-hover);
}

.discipline-card:hover::after { transform: scaleX(1); }
.discipline-card:hover::before { opacity: 1; }

.discipline-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 22px;
  filter: brightness(0.85);
  transition: filter 0.4s ease, transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.discipline-card:hover img {
  filter: brightness(1) drop-shadow(0 0 16px rgba(255,140,0,0.7));
  transform: scale(1.08);
}

.discipline-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 12px;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}

.discipline-card:hover h3 { color: var(--fire-amber); }

.discipline-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.card-arrow {
  display: inline-block;
  margin-top: 18px;
  color: var(--fire-orange);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.discipline-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════════════
   VALUES / PILLARS
══════════════════════════════════════════════ */
.values-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.value-item {
  padding: 50px 30px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  transition: background var(--ease);
}

.value-item:last-child { border-right: none; }

.value-item:hover { background: rgba(255,69,0,0.04); }

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.value-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire-orange);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 200px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════ */
.cta-band {
  padding: 100px 40px;
  text-align: center;
  background: linear-gradient(135deg,
    rgba(255,69,0,0.08) 0%,
    rgba(255,140,0,0.04) 50%,
    rgba(255,69,0,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,69,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band .section-title {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-band p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.cta-band .btn { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════
   SIDEBAR (social fixed right)
══════════════════════════════════════════════ */
.sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(8px);
  padding: 10px 8px;
  border-radius: 10px 0 0 10px;
  border: 1px solid var(--border-subtle);
  border-right: none;
  z-index: 900;
}

.sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  transition: background var(--ease);
}

.sidebar a:hover { background: rgba(255,69,0,0.12); }

.sidebar a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0.6);
  transition: filter var(--ease), transform var(--ease);
}

.sidebar a:hover img {
  filter: brightness(1) drop-shadow(0 0 5px var(--fire-orange));
  transform: scale(1.15);
}

/* ══════════════════════════════════════════════
   SITE FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 40px 30px;
  text-align: center;
}

.footer-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--fire-orange);
  letter-spacing: 4px;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 4px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--ease);
}

.footer-nav a:hover { color: var(--fire-orange); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.footer-social a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0.5);
  transition: filter var(--ease), transform var(--ease);
}

.footer-social a:hover img {
  filter: brightness(1) drop-shadow(0 0 4px var(--fire-orange));
  transform: scale(1.15);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════════
   INNER PAGES (Disciplines / Documentary)
══════════════════════════════════════════════ */
.page-hero {
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 40px 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,69,0,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.page-hero .label { position: relative; z-index: 1; }
.page-hero .section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.video-section {
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-frame {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 80px rgba(255,69,0,0.15), 0 40px 80px rgba(0,0,0,0.5);
  margin-bottom: 40px;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ══════════════════════════════════════════════
   CONTACT / CHATBOT PAGE
══════════════════════════════════════════════ */
.chat-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-primary);
  overflow: hidden;
}

.chat-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  flex: 1;
  height: calc(100vh - var(--nav-h));
  margin-top: var(--nav-h);
  overflow: hidden;
}

/* ── Avatar Zone ── */
/* ────────────────────────────────────────
   Avatar Zone — "Street Community" backdrop
   Layered to feel like a night street:
   ① deep navy night sky at top
   ② warm street-lamp glow rising from below
   ③ soft orange spotlight behind the avatar
   ④ dark asphalt base
──────────────────────────────────────── */
.avatar-zone {
  position: relative;
  overflow: hidden;
  background:
    /* orange spotlight halo behind the avatar */
    radial-gradient(ellipse 60% 50% at 50% 55%,
      rgba(255,120,40,0.22) 0%,
      rgba(255,80,20,0.08) 35%,
      transparent 70%),
    /* vertical gradient: night sky → street glow → asphalt */
    linear-gradient(to bottom,
      #05060a 0%,
      #0a0a12 35%,
      #120a08 65%,
      #1a0f06 85%,
      #080604 100%);
}

/* Concrete / brick wall grid texture (behind avatar) */
.avatar-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,140,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,140,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Warm street-lamp glow rising from the floor (on top of canvas for atmosphere) */
.avatar-zone::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background:
    radial-gradient(ellipse 80% 100% at 50% 100%,
      rgba(255,90,20,0.35) 0%,
      rgba(255,140,0,0.12) 40%,
      transparent 75%);
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
}

#sceneContainer {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.avatar-name-tag {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  pointer-events: none;
}

.avatar-name-tag h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fire-orange);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255,69,0,0.8), 0 0 40px rgba(255,69,0,0.4);
  margin-bottom: 4px;
}

.avatar-name-tag p {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.avatar-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #22c55e;
  animation: statusPulse 2.5s ease-in-out infinite;
}

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

/* ── Chat Panel ── */
.chat-panel {
  display: flex;
  flex-direction: column;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-subtle);
  overflow: hidden;
}

.chat-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  background: rgba(8,8,8,0.8);
}

.chat-header-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.chat-header-info span {
  font-size: 0.7rem;
  color: #22c55e;
  letter-spacing: 1px;
}

.chat-header-logo {
  margin-left: auto;
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255,69,0,0.5));
}

.messages-feed {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

.messages-feed::-webkit-scrollbar { width: 3px; }
.messages-feed::-webkit-scrollbar-track { background: transparent; }
.messages-feed::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ── Chat Bubbles ── */
.message {
  max-width: 88%;
  padding: 11px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.65;
  word-wrap: break-word;
  animation: msgIn 0.3s ease forwards;
}

@keyframes msgIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.message.bot {
  background: rgba(255,69,0,0.09);
  border: 1px solid rgba(255,69,0,0.18);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.message.bot a {
  color: var(--fire-amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.message.user {
  background: rgba(255,140,0,0.12);
  border: 1px solid rgba(255,140,0,0.25);
  color: var(--text-primary);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Typing dots */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
}

.typing-indicator span {
  width: 7px;
  height: 7px;
  background: var(--fire-orange);
  border-radius: 50%;
  opacity: 0.4;
  animation: typeDot 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typeDot {
  0%, 80%, 100% { transform: scale(1); opacity: 0.4; }
  40%           { transform: scale(1.4); opacity: 1; }
}

/* ── Chat Input ── */
.chat-input-area {
  padding: 14px 16px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  flex-shrink: 0;
}

.chat-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 30px;
  padding: 6px 6px 6px 18px;
  transition: border-color var(--ease);
}

.chat-input-row:focus-within {
  border-color: var(--border);
  box-shadow: 0 0 0 2px rgba(255,69,0,0.1);
}

.chat-input-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.92rem;
  min-width: 0;
}

.chat-input-row input::placeholder { color: var(--text-dim); }

.send-btn {
  width: 38px;
  height: 38px;
  background: var(--fire-orange);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.send-btn:hover {
  background: var(--fire-amber);
  transform: scale(1.1);
  box-shadow: var(--glow-sm);
}

/* ── Start Overlay ── */
#startOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 16px;
  transition: opacity 0.5s ease;
}

.overlay-logo {
  width: 80px;
  filter: drop-shadow(0 0 20px rgba(255,69,0,0.6));
  animation: logoPulse 3s ease-in-out infinite;
  margin-bottom: 8px;
}

#startOverlay h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--fire-orange);
  letter-spacing: 5px;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(255,69,0,0.6);
}

#startOverlay p {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

#startBtn {
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-amber));
  border: none;
  border-radius: 50px;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  box-shadow: 0 8px 40px rgba(255,69,0,0.5);
  transition: all var(--ease);
  cursor: pointer;
  margin-top: 8px;
}

#startBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 60px rgba(255,69,0,0.7);
}

.hide-overlay {
  opacity: 0;
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   STORE PAGE
══════════════════════════════════════════════ */
.store-wrapper {
  margin-top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
}

.store-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .disciplines-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid      { grid-template-columns: repeat(2, 1fr); }

  .value-item {
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }
  .value-item:nth-child(2n) { border-right: none; }
  .value-item:nth-child(3),
  .value-item:nth-child(4)  { border-bottom: none; }

  .chat-layout {
    grid-template-columns: 1fr 380px;
  }
}

@media (max-width: 900px) {
  .chat-layout {
    grid-template-columns: 1fr;
    grid-template-rows: 50vh 1fr;
    height: auto;
    min-height: calc(100vh - var(--nav-h));
    overflow: auto;
  }

  .chat-panel {
    border-left: none;
    border-top: 1px solid var(--border-subtle);
    min-height: 55vh;
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(8,8,8,0.98);
    border-bottom: 1px solid var(--border);
    padding: 24px 20px;
    gap: 18px;
    align-items: flex-start;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .container { padding: 0 20px; }
  .section-pad { padding: 70px 0; }
  .hero { padding: calc(var(--nav-h) + 40px) 20px 100px; }
  .manifesto { padding: 70px 20px; }
  .video-section { padding: 50px 20px; }
  .cta-band { padding: 70px 20px; }
  .site-footer { padding: 50px 20px 24px; }

  .hero-cta { flex-direction: column; align-items: center; }

  .disciplines-grid { grid-template-columns: 1fr; gap: 14px; }

  .sidebar { display: none; }

  .page-hero { padding: calc(var(--nav-h) + 40px) 20px 40px; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-item { border-right: none; }
  .discipline-card { padding: 36px 22px 28px; }
}

/* ══════════════════════════════════════════════════════════════
     THEME — LIGHT MODE OVERRIDES
   ══════════════════════════════════════════════════════════════ */
:root { --theme-transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; }

body, .navbar, .site-footer, .sidebar, .chat-panel, .chat-input-area,
.discipline-card, .cta-band, .manifesto, .event-card, .community-card,
.comm-step, .map-continent, .theme-toggle, .lang-toggle, .lang-menu {
  transition: var(--theme-transition);
}

html[data-theme="light"] {
  --bg-primary:    #fafaf7;
  --bg-secondary:  #ffffff;
  --bg-card:       #ffffff;
  --bg-card-hover: #f5f5f0;
  --text-primary:  #1a1a1a;
  --text-muted:    #666;
  --text-dim:      #aaa;
  --border:        rgba(255, 69, 0, 0.35);
  --border-subtle: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] body { background: var(--bg-primary); color: var(--text-primary); }
html[data-theme="light"] .navbar { background: rgba(255,255,255,0.94); border-bottom: 1px solid var(--border-subtle); }
html[data-theme="light"] .nav-links a { color: #555; }
html[data-theme="light"] .nav-links a:hover, html[data-theme="light"] .nav-links a.active { color: #111; }
html[data-theme="light"] .manifesto { background: #f5f2ea; }
html[data-theme="light"] .discipline-card,
html[data-theme="light"] .event-card,
html[data-theme="light"] .community-card,
html[data-theme="light"] .comm-step { background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
html[data-theme="light"] .site-footer { background: #f5f2ea; border-top: 1px solid var(--border-subtle); }
html[data-theme="light"] .sidebar { background: rgba(255,255,255,0.92); border-color: var(--border-subtle); }
html[data-theme="light"] .sidebar a img { filter: brightness(0.4); }
html[data-theme="light"] .sidebar a:hover img { filter: brightness(1) drop-shadow(0 0 4px var(--fire-orange)); }
html[data-theme="light"] .home-btn, html[data-theme="light"] .theme-toggle, html[data-theme="light"] .lang-toggle { background: #fff; border-color: var(--border-subtle); }
html[data-theme="light"] .home-btn img { filter: brightness(0.3); }
html[data-theme="light"] .hero::before { opacity: 0.4; }
html[data-theme="light"] .chat-panel, html[data-theme="light"] .chat-input-area { background: #fff; }
html[data-theme="light"] .chat-input-row { background: #f7f7f2; border-color: var(--border-subtle); }
html[data-theme="light"] .chat-input-row input { color: #1a1a1a; }
html[data-theme="light"] .messages-feed { background: #fafaf7; }

/* ══════════════════════════════════════════════════════════════
     RTL SUPPORT
   ══════════════════════════════════════════════════════════════ */
html[dir="rtl"] body { font-family: 'Rajdhani', 'Tajawal', 'Cairo', sans-serif; }
html[dir="rtl"] .sidebar { right: auto; left: 0; border-radius: 0 12px 12px 0; border-left: 1px solid var(--border); border-right: none; }
html[dir="rtl"] .home-btn { left: auto; right: 20px; }
html[dir="rtl"] .discipline-card .card-arrow { transform: scaleX(-1); }

/* ══════════════════════════════════════════════════════════════
     NAVBAR EXTRAS — lang switcher + theme toggle
   ══════════════════════════════════════════════════════════════ */
.nav-extras { display: flex; align-items: center; gap: 10px; margin-left: 16px; }

.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.theme-toggle:hover { transform: rotate(-15deg) scale(1.08); border-color: var(--fire-orange); }
.theme-icon { font-size: 1rem; line-height: 1; }

.lang-switcher { position: relative; }
.lang-toggle {
  height: 38px; padding: 0 12px; border-radius: 19px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: 'Rajdhani', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px;
  transition: border-color 0.25s ease;
}
.lang-toggle:hover { border-color: var(--fire-orange); }
.lang-current-flag { font-size: 1.15rem; line-height: 1; }
.lang-current-code { letter-spacing: 1.5px; }
.lang-caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.25s ease; }
.lang-switcher.open .lang-caret { transform: rotate(-135deg) translateY(2px); }

.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 170px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2000; box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.lang-switcher.open .lang-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
html[dir="rtl"] .lang-menu { right: auto; left: 0; }

.lang-option {
  width: 100%; padding: 10px 14px;
  background: transparent; border: none; color: var(--text-primary);
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; font-family: 'Rajdhani', sans-serif; font-size: 0.9rem; font-weight: 600;
  text-align: left; transition: background 0.15s ease;
}
html[dir="rtl"] .lang-option { text-align: right; }
.lang-option:hover { background: rgba(255,69,0,0.08); }
.lang-option.active { background: rgba(255,69,0,0.12); color: var(--fire-orange); }
.lang-option .flag { font-size: 1.3rem; line-height: 1; }
.lang-option .name { flex: 1; }
.lang-option .code { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 1px; }

html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .lang-toggle { background: #fff; color: #1a1a1a; }
html[data-theme="light"] .lang-menu { background: #fff; }
html[data-theme="light"] .lang-option { color: #1a1a1a; }

/* ══════════════════════════════════════════════════════════════
     EVENTS PAGE
   ══════════════════════════════════════════════════════════════ */
.events-section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.events-section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-primary); margin-bottom: 8px;
  display: flex; align-items: center; gap: 14px;
}
.events-section-title::before {
  content: ''; width: 6px; height: 26px;
  background: var(--fire-orange); border-radius: 2px;
}

.events-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 40px;
}

.event-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.event-card:hover { transform: translateY(-6px); border-color: var(--fire-orange); box-shadow: 0 16px 50px rgba(255,69,0,0.18); }

.event-media { position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #2a1010); }
.event-media img, .event-media iframe { width: 100%; height: 100%; object-fit: cover; display: block; border: none; }

.event-date-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--fire-orange); color: #fff;
  padding: 6px 12px; border-radius: 20px;
  font-family: 'Orbitron', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.event-badge-past { background: var(--text-dim); }

.event-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.event-title { font-family: 'Orbitron', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text-primary); letter-spacing: 1px; }
.event-meta { font-size: 0.85rem; color: var(--fire-amber); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.event-desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }
.event-links { margin-top: auto; padding-top: 12px; display: flex; gap: 10px; flex-wrap: wrap; }
.event-link {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--fire-orange); padding: 6px 12px;
  border: 1px solid var(--border); border-radius: 20px;
  transition: background 0.25s ease;
}
.event-link:hover { background: rgba(255,69,0,0.12); }

.events-empty {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted); font-size: 1.05rem;
  border: 1px dashed var(--border); border-radius: var(--radius);
}

.contact-form-wrap {
  max-width: 700px; margin: 60px auto 0;
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 40px;
}
.contact-form-title { font-family: 'Orbitron', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.contact-form-desc { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.contact-form { display: grid; gap: 16px; }
.contact-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) {
  .contact-form .row-2 { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  background: var(--bg-secondary); border: 1px solid var(--border-subtle);
  color: var(--text-primary); font-family: 'Rajdhani', sans-serif; font-size: 0.95rem;
  transition: border-color 0.25s ease;
}
html[data-theme="light"] .contact-form input,
html[data-theme="light"] .contact-form textarea { background: #f7f7f2; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--fire-orange); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  justify-self: start; padding: 14px 34px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-amber));
  color: #fff; font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; border-radius: 30px; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,69,0,0.45); }
html[dir="rtl"] .contact-form button { justify-self: end; }

/* ══════════════════════════════════════════════════════════════
     COMMUNITIES PAGE
   ══════════════════════════════════════════════════════════════ */
.comm-hero { padding: calc(var(--nav-h) + 60px) 40px 20px; text-align: center; }
.comm-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900;
  color: var(--text-primary); letter-spacing: 2px; margin-bottom: 14px;
}
.comm-hero p { color: var(--text-muted); max-width: 620px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }

.comm-steps {
  max-width: 900px; margin: 40px auto 20px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; padding: 0 40px;
}
.comm-step {
  padding: 14px 18px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: 10px;
  text-align: center; font-size: 0.88rem; font-weight: 600;
  color: var(--text-muted); transition: all 0.3s ease;
}
.comm-step.active { border-color: var(--fire-orange); color: var(--text-primary); box-shadow: 0 0 20px rgba(255,69,0,0.2); }
.comm-step .step-num {
  display: inline-block; width: 24px; height: 24px;
  background: var(--fire-orange); color: #fff;
  border-radius: 50%; font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem; line-height: 24px; font-weight: 700;
  margin-right: 8px; vertical-align: middle;
}
html[dir="rtl"] .comm-step .step-num { margin-right: 0; margin-left: 8px; }
@media (max-width: 700px) {
  .comm-steps { grid-template-columns: 1fr; padding: 0 20px; }
}

.world-map-wrap {
  max-width: 1100px; margin: 30px auto 40px; padding: 40px;
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}
@media (max-width: 700px) { .world-map-wrap { padding: 22px; margin: 20px 16px 30px; } }
.world-map { width: 100%; height: auto; max-height: 520px; display: block; }

.map-continent {
  fill: var(--bg-secondary);
  stroke: var(--fire-orange); stroke-width: 1.5;
  cursor: pointer;
  transition: fill 0.3s ease, transform 0.3s ease;
}
.map-continent:hover { fill: rgba(255, 69, 0, 0.18); }
.map-continent.active { fill: var(--fire-orange); filter: drop-shadow(0 0 12px rgba(255,140,0,0.6)); }
.map-continent-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px; font-weight: 700;
  fill: var(--text-primary); pointer-events: none;
  text-anchor: middle; letter-spacing: 1.5px;
}
html[data-theme="light"] .map-continent { fill: #efe9dc; }
html[data-theme="light"] .map-continent:hover { fill: rgba(255, 69, 0, 0.25); }

.comm-picker {
  max-width: 900px; margin: 0 auto 30px; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 700px) { .comm-picker { grid-template-columns: 1fr; padding: 0 20px; } }
.comm-picker select {
  width: 100%; padding: 14px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: border-color 0.25s ease;
}
.comm-picker select:focus { outline: none; border-color: var(--fire-amber); }
.comm-picker select:disabled { opacity: 0.4; cursor: not-allowed; }

.comm-result { max-width: 900px; margin: 20px auto 60px; padding: 0 40px; }
@media (max-width: 700px) { .comm-result { padding: 0 20px; } }

.community-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
@media (max-width: 700px) {
  .community-card { grid-template-columns: 1fr; padding: 26px; text-align: center; }
}
.community-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-amber));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 2rem; color: #fff;
  justify-self: center;
}
.community-info h3 { font-family: 'Orbitron', sans-serif; font-size: 1.3rem; color: var(--text-primary); letter-spacing: 1px; margin-bottom: 6px; }
.community-loc { color: var(--fire-amber); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.community-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.community-stats { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-muted); }
.community-stats strong { color: var(--text-primary); }

.comm-empty {
  background: var(--bg-card); border: 1px dashed var(--border);
  border-radius: var(--radius-lg); padding: 50px 30px; text-align: center;
}
.comm-empty h3 { font-family: 'Orbitron', sans-serif; font-size: 1.2rem; color: var(--text-primary); margin-bottom: 12px; letter-spacing: 1px; }
.comm-empty p { color: var(--text-muted); margin-bottom: 26px; font-size: 1rem; }
.comm-empty .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.comm-empty a {
  padding: 12px 26px; border-radius: 30px;
  font-family: 'Orbitron', sans-serif; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.comm-empty a.primary { background: linear-gradient(135deg, var(--fire-orange), var(--fire-amber)); color: #fff; }
.comm-empty a.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,69,0,0.45); }
.comm-empty a.secondary { border: 1px solid var(--border); color: var(--text-primary); }
.comm-empty a.secondary:hover { border-color: var(--fire-orange); }
