:root {
  --bg: #0a0a0c;
  --bg-2: #0e0d10;
  --text: #f6f6f8;
  --muted: #b9b9c4;
  --red: #ff3b3b;
  --orange: #ff8f1f;
  --accent: #ff5e2b;
  --card: rgba(255,255,255,0.06);
  --glass: rgba(255,80,20,0.08);
  --border: rgba(255,120,40,0.35);
  --shadow: 0 20px 50px rgba(255,100,40,0.15), 0 2px 10px rgba(0,0,0,0.6);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% -10%, rgba(255,80,20,0.15), transparent 60%), radial-gradient(1200px 800px at 80% 110%, rgba(255,0,0,0.12), transparent 60%), var(--bg);
  overflow-x: hidden;
}
.bg {
  position: fixed;
  inset: 0;
  background: conic-gradient(from 120deg, rgba(255,59,59,0.18), rgba(255,143,31,0.15), rgba(255,59,59,0.18));
  filter: blur(60px) saturate(130%);
  animation: spin 16s linear infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}
@keyframes spin { to { transform: rotate(1turn); } }
#embers {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(10,10,12,0.85), rgba(10,10,12,0.55));
  border-bottom: 1px solid rgba(255,120,40,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; }
.tiger-badge { font-size: 18px; filter: drop-shadow(0 0 6px rgba(255,120,40,0.6)); }
.logo {
  font-family: "Bebas Neue", Inter, sans-serif;
  letter-spacing: 1px;
  font-size: 28px;
  background: linear-gradient(90deg, #fff, #ffd0c0, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(255,110,40,0.35);
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer { 0%,100%{filter:hue-rotate(0)} 50%{filter:hue-rotate(-10deg)} }
.links a {
  color: var(--text);
  text-decoration: none;
  margin-left: 18px;
  font-weight: 600;
  opacity: 0.9;
  position: relative;
}
.links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 0 12px rgba(255,120,40,0.6);
  transition: width .3s ease;
}
.links a:hover::after { width: 100%; }
.hero {
  position: relative;
  z-index: 1;
  padding: 100px 20px 40px 20px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hero-title {
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.9;
  margin: 0 0 14px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: radial-gradient(120% 200% at 20% 0, #fff, #ffd9c7 35%, #ffae84 55%, #ff6a3d 70%, #ff3b3b 85%, #d81818 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 50px rgba(255,90,40,0.4)) drop-shadow(0 0 12px rgba(255,80,20,0.8));
  transform: translateZ(0);
}
.hero-sub {
  margin: 0 auto 26px auto;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 20px);
}
.cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  letter-spacing: .4px;
  transition: transform .15s ease, box-shadow .3s ease, background .3s ease;
  box-shadow: 0 8px 24px rgba(255,120,40,0.25), inset 0 0 0 1px rgba(255,120,40,0.45);
  transform: translateZ(0);
}
.btn.primary { background: linear-gradient(135deg, var(--orange), var(--red)); }
.btn.secondary { background: linear-gradient(135deg, #ff6a3d, #c71e1e); }
.btn.ghost { background: linear-gradient(135deg, rgba(255,120,40,0.12), rgba(255,60,60,0.12)); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(255,120,40,0.35), 0 0 20px rgba(255,90,30,0.55); }
.btn.pulse { animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{filter: drop-shadow(0 0 0 rgba(255,100,40,0.0))} 50%{filter: drop-shadow(0 0 16px rgba(255,100,40,0.7))} }
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 24px;
}
.stat {
  background: linear-gradient(180deg, var(--glass), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.stat .n { font-weight: 800; color: #fff; }
.stat .d { display: block; color: var(--muted); font-size: 14px; }

.highlights {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}
.section-title {
  text-align: center;
  font-size: clamp(26px, 4vw, 42px);
  margin: 0 0 22px 0;
  letter-spacing: .5px;
  background: linear-gradient(90deg, #fff, #ffd0c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(255,120,40,0.4));
}
.cards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transform: translateZ(0) translateY(8px) scale(0.98);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, background .35s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(600px 120px at var(--x,50%) var(--y,0%), rgba(255,120,40,0.25), transparent 40%);
  mix-blend-mode: screen;
  transition: .2s;
}
.card:hover { transform: translateY(0) scale(1); box-shadow: 0 30px 60px rgba(255,120,40,0.2), 0 6px 16px rgba(0,0,0,0.5); }
.card .icon { color: var(--orange); filter: drop-shadow(0 0 10px rgba(255,120,40,0.6)); }
.card h3 { margin: 10px 0 6px 0; }
.card p { margin: 0; color: var(--muted); }

.videos {
  padding: 60px 20px;
}
.video-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.video-frame {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #0b0b0e;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.video-frame::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: conic-gradient(from 0deg, rgba(255,120,40,0.0), rgba(255,120,40,0.55), rgba(255,0,0,0.5), rgba(255,120,40,0.0));
  filter: blur(18px);
  animation: borderGlow 6s linear infinite;
  pointer-events: none;
}
@keyframes borderGlow { to { transform: rotate(1turn); } }
.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.community {
  padding: 70px 20px 90px;
  position: relative;
}
.community::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 200px at 50% 0, rgba(255,120,40,0.18), transparent 60%);
  pointer-events: none;
}
.community-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.footer {
  border-top: 1px solid rgba(255,120,40,0.2);
  background: linear-gradient(180deg, rgba(10,10,12,0.7), rgba(10,10,12,1));
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}
.footer a { color: var(--text); text-decoration: none; margin-left: 14px; opacity: .9; }
.footer a:hover { opacity: 1; text-shadow: 0 0 12px rgba(255,120,40,0.6); }

.reveal { opacity: 0; transform: translateY(18px) scale(0.98); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0) scale(1); }

.glow-letters span {
  display: inline-block;
  transition: transform .3s ease, text-shadow .3s ease, color .3s ease;
}
.glow-letters span.active {
  transform: translateY(-4px) scale(1.02);
  text-shadow: 0 0 16px rgba(255,120,40,0.9), 0 0 30px rgba(255,60,20,0.7);
  color: #fff;
}

@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .nav-inner { padding: 12px 16px; }
  .footer-inner { flex-direction: column; gap: 10px; }
}
