/* ===== TOKENS ===== */
:root {
  --bg:        #1F1A14;
  --bg-alt:    #191510;
  --bg-card:   #261F17;
  --green:     #6FBF2F;
  --green-dim: rgba(111, 191, 47, 0.15);
  --green-glow:rgba(111, 191, 47, 0.35);
  --text:      #F2EFE4;
  --text-dim:  #9A9588;
  --border:    rgba(111, 191, 47, 0.25);
  --radius:    12px;
  --nav-h:     64px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(31, 26, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
}
.nav-logo span { color: var(--green); }
.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav-item.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-home-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.nav-home-link:hover,
.nav-projects-link:hover { color: var(--green); }
.nav-projects-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.dropdown-arrow {
  color: var(--text-dim);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.has-dropdown:hover .dropdown-arrow,
.has-dropdown.open .dropdown-arrow { transform: rotate(180deg); color: var(--green); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  z-index: 200;
  flex-direction: column;
}
.nav-dropdown-inner {
  background: rgba(26, 21, 16, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 160px;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown { display: flex; }
.nav-dropdown-inner a {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown-inner a:hover { color: var(--text); background: rgba(111,191,47,0.08); }
.nav-standalone {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav-standalone:hover,
.nav-standalone.active { color: var(--green); }
.setup-page { padding-top: 6rem; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 16px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  padding: 3px 0;
  transition: color 0.2s;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { color: var(--green); }
.lang-sep {
  color: var(--border);
  font-size: 12px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--green);
  color: #0e1a06;
  transition: opacity 0.2s;
}
.social-pill:hover { opacity: 0.85; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(111,191,47,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Concentic rings */
.hero-rings {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
}
.ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid var(--green);
}
.ring-1 { width: 300px; height: 300px; opacity: 0.45; }
.ring-2 { width: 450px; height: 450px; opacity: 0.22; }
.ring-3 { width: 600px; height: 600px; opacity: 0.10; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-avatar-wrap {
  flex-shrink: 0;
  width: 340px;
  filter: drop-shadow(0 0 48px rgba(111,191,47,0.55));
}
.hero-avatar {
  width: 100%;
}
.hero-text { flex: 1; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.live-badge.is-live {
  border-color: var(--green);
  color: var(--green);
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-dim);
}
.live-badge.is-live .live-dot {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(56px, 9vw, 100px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 16px;
}
.title-green { color: var(--green); }
.title-yellow { color: #F5C518; }
.hero-sub {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--green);
  color: #0e1a06;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--green); background: var(--green-dim); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-val {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
}
.stat-lbl {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.stat-sep {
  width: 1px;
  height: 30px;
  background: var(--border);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  opacity: 0.5;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header { margin-bottom: 52px; }
.tag-line {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.section-desc {
  font-size: 14px;
  color: var(--text-dim);
}

/* ===== STREAM LAYOUT ===== */
.stream-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 520px;
}
.player-wrap {
  position: relative;
  background: #000;
}
.player-wrap iframe { width: 100%; height: 100%; }

.embed-fallback {
  position: relative;
  width: 100%;
  height: 100%;
}
.fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.fallback-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(31,26,20,0.55);
}
.fallback-msg {
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}

.chat-wrap {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  background: var(--bg-card);
}
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.chat-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: transparent;
}
.chat-live-dot.live {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 1.4s ease-in-out infinite;
}
.chat-frame { flex: 1; }
.chat-fallback {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 12px;
  text-align: center;
  padding: 24px;
}
.chat-fallback a {
  color: var(--green);
  text-decoration: underline;
  font-size: 12px;
}

/* ===== VIDEOS ===== */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
  gap: 6px;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.video-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.video-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.video-carousel-wrap.fade-alt::after {
  background: linear-gradient(to right, transparent, var(--bg-alt));
}
.video-carousel-wrap.fade-bg::after {
  background: linear-gradient(to right, transparent, var(--bg));
}
.video-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.video-carousel::-webkit-scrollbar { height: 4px; }
.video-carousel::-webkit-scrollbar-track { background: transparent; }
.video-carousel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.video-loading {
  width: 100%;
  padding: 60px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
}
.video-card {
  flex-shrink: 0;
  width: 320px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid rgba(111,191,47,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.video-card:hover {
  border-color: rgba(111,191,47,0.4);
  transform: translateY(-3px);
}
.video-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #0a0a0a;
  overflow: hidden;
}
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.2s;
}
.video-card:hover .video-play { opacity: 1; }
.video-play svg {
  width: 48px; height: 48px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}
.video-info {
  padding: 14px 16px 16px;
}
.video-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-meta {
  font-size: 12px;
  color: var(--text-dim);
}
.video-badge {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.78);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.video-badge.live-badge-vod {
  background: var(--green);
  color: #0e1a06;
}
.video-error {
  width: 100%;
  padding: 60px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
}
.video-error a {
  color: var(--green);
  text-decoration: underline;
}

/* ===== SCHEDULE ===== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  align-items: start;
}
.sched-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(111,191,47,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.sched-card.active { border-color: rgba(111,191,47,0.35); }
.sched-card.today  { border-color: rgba(111,191,47,0.55); }
.sched-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--green);
  z-index: 1;
}
.sched-loading {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
}
.sched-thumb {
  width: 100%;
  padding-top: 75%;
  background-size: cover;
  background-position: center top;
  background-color: #0a0a0a;
  flex-shrink: 0;
}
.sched-body {
  padding: 12px 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sched-day {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.sched-time {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}
.sched-time.off { color: var(--text-dim); font-weight: 400; }
.sched-title {
  font-size: 11px;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sched-game {
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.03em;
}
.today-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  vertical-align: middle;
  margin-left: 4px;
  box-shadow: 0 0 5px var(--green);
}

/* ===== ABOUT ===== */
.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.6fr;
  gap: 48px;
  align-items: start;
}
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(111,191,47,0.12);
}
.about-img-wrap img { width: 100%; }
.about-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.about-text-col p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}
.tag-chip {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
}
.link-list { display: flex; flex-direction: column; gap: 10px; }
.link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.link-card:hover { border-color: var(--green); background: var(--green-dim); }
.link-card-disabled { opacity: 0.5; cursor: default; pointer-events: none; }
.link-icon-wrap {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.twitch-color  { background: rgba(145, 71, 255, 0.18); color: #9147ff; }
.yt-color      { background: rgba(255, 0, 0, 0.15);   color: #ff4444; }
.discord-color { background: rgba(88, 101, 242, 0.18); color: #5865f2; }
.fb-color      { background: rgba(24, 119, 242, 0.18); color: #1877f2; }
.x-color       { background: rgba(242, 239, 228, 0.1); color: var(--text); }
.link-name {
  font-weight: 600;
  font-size: 14px;
  flex: 1;
}
.link-handle {
  font-size: 12px;
  color: var(--text-dim);
  margin-right: auto;
}
.link-arrow { color: var(--text-dim); flex-shrink: 0; }

/* ===== SETUP ===== */
.setup-categories { display: flex; flex-direction: column; gap: 56px; }
.setup-group-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.setup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.setup-card {
  background: var(--bg-card);
  border: 1px solid rgba(111,191,47,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.setup-card:hover {
  border-color: rgba(111,191,47,0.4);
  transform: translateY(-2px);
}
.setup-img {
  position: relative;
  width: 100%;
  padding-top: 70%;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.setup-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.setup-img-product { background: #fff; }
.setup-img-product img { object-fit: contain; padding: 8px; }
.setup-fallback-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  color: rgba(111,191,47,0.3);
}
.setup-img img + .setup-fallback-icon { display: none; }
.setup-info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.setup-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.setup-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.setup-spec {
  font-size: 11px;
  color: var(--text-dim);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: var(--bg-alt);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.footer-logo span { color: var(--green); }
.footer-copy {
  flex: 1;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .schedule-grid { grid-template-columns: repeat(4, 1fr); }
  .stream-layout { grid-template-columns: 1fr; height: auto; }
  .stream-layout .player-wrap { height: 380px; }
  .stream-layout .chat-wrap { height: 360px; border-left: none; border-top: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .hero-content { flex-direction: column; text-align: center; gap: 30px; padding: 40px 24px; }
  .hero-avatar-wrap { width: 220px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-rings { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .schedule-grid { grid-template-columns: 1fr; }
}
