:root {
  --bg: #03040a;
  --card: rgba(7, 10, 24, 0.72);
  --magenta: #c026ff;
  --purple: #7c3aed;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --gold: #f0c14b;
  --ink: #eef4ff;
  --muted: #9aa8c7;
  --line: rgba(34, 211, 238, 0.22);
  --go: #34f5a0;
  --maybe: #f5c542;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Orbitron", sans-serif;
  --sport: "Rajdhani", sans-serif;
  --grad: linear-gradient(120deg, #c026ff 0%, #6366f1 48%, #22d3ee 100%);
  --glow: 0 0 18px rgba(192, 38, 255, 0.35), 0 0 36px rgba(34, 211, 238, 0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #a5f3fc; }
img { max-width: 100%; display: block; }
button, select, input, textarea { font: inherit; color: var(--ink); }

#fx, .aurora, .grid-bg, .scan, .cursor-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}
.grid-bg {
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 38, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 78%);
}
.aurora {
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(192, 38, 255, 0.28), transparent 55%),
    radial-gradient(800px 480px at 92% 8%, rgba(34, 211, 238, 0.18), transparent 50%),
    radial-gradient(700px 420px at 70% 110%, rgba(99, 102, 241, 0.16), transparent 55%);
  animation: aurora 14s ease-in-out infinite alternate;
}
.scan {
  background: repeating-linear-gradient(transparent 0 3px, rgba(255,255,255,0.015) 3px 4px);
  opacity: 0.28;
  z-index: 2;
  mix-blend-mode: overlay;
}
.cursor-glow {
  z-index: 2;
  background: radial-gradient(220px 220px at var(--mx, 50%) var(--my, 20%), rgba(192, 38, 255, 0.16), transparent 60%);
}
#fx { z-index: 1; }

.site-header, main, .site-footer { position: relative; z-index: 3; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 4, 10, 0.72);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 8;
}
.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--ink); flex-shrink: 0; position: relative; z-index: 2; }
.brand img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  filter: drop-shadow(0 0 10px rgba(192, 38, 255, 0.45));
}
.brand small { display: block; font-size: 0.62rem; letter-spacing: 0.32em; color: var(--cyan); }
.brand { font-family: var(--display); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.brand em { font-style: normal; display: block; font-size: 0.7rem; letter-spacing: 0.24em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav { display: flex; flex-wrap: nowrap; gap: 0.2rem 0.65rem; min-width: 0; justify-content: flex-end; }
.nav a {
  color: var(--muted);
  font-family: var(--sport);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.15rem;
  position: relative;
}
.nav a.active, .nav a:hover { color: #fff; }
.nav a.active::after, .nav a:hover::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--grad);
  box-shadow: var(--glow);
}
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: stretch;
  gap: 5px; width: 2.5rem; height: 2.5rem; padding: 0.45rem 0.5rem;
  background: transparent; border: 1px solid var(--cyan); border-radius: 10px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--cyan); border-radius: 2px; }
[hidden] { display: none !important; }
.team-gate { display: flex; align-items: center; gap: 0.35rem; }
.team-gate input {
  width: 8.6rem; background: #070a14; border: 1px solid var(--line);
  border-radius: 999px; padding: 0.3rem 0.7rem;
}
.lock-card { max-width: 28rem; margin: 2rem auto; }
.lock-form { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-top: 1rem; }
.lock-form input {
  background: #070a14; border: 1px solid var(--line); border-radius: 10px;
  padding: 0.55rem 0.7rem; width: 11rem;
}

main { width: min(1160px, calc(100% - 2rem)); margin: 1.5rem auto 3rem; min-height: 62vh; }
.site-footer {
  text-align: center; padding: 1.4rem 1rem 2.4rem; color: var(--muted);
  border-top: 1px solid var(--line);
  background: linear-gradient(transparent, rgba(34, 211, 238, 0.04));
}
.motto {
  font-family: var(--display); letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.82rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.3rem;
  align-items: stretch;
  margin-bottom: 1.4rem;
}
.hero-copy, .card, .panel, .model-pick {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 0 0 1px rgba(192, 38, 255, 0.08), var(--glow);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover, .hero-copy:hover, .model-pick:hover, .hero-art:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 28px rgba(192, 38, 255, 0.35), 0 0 48px rgba(34, 211, 238, 0.18);
}
.kicker {
  color: var(--cyan); font-family: var(--sport); letter-spacing: 0.22em;
  text-transform: uppercase; font-size: 0.86rem; margin: 0 0 0.45rem;
}
h1, h2, h3 { font-family: var(--display); margin: 0 0 0.55rem; letter-spacing: 0.04em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); line-height: 1.05; }
.grad-text, h1 span {
  background: var(--grad);
  background-size: 200% 200%;
  animation: flow 6s linear infinite;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { color: var(--muted); font-size: 1.06rem; max-width: 40rem; }

.hero-stage { position: relative; min-height: 340px; }
.hero-art {
  position: relative; min-height: 280px; height: 100%; overflow: hidden;
  border-radius: 18px; border: 1px solid var(--line);
  box-shadow: var(--glow);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.15) contrast(1.05); }
.hero-art figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.7rem 1rem;
  background: linear-gradient(transparent, #03040a);
  font-size: 0.85rem; color: var(--muted);
}
.hero-stage::before, .hero-stage::after {
  content: "";
  position: absolute; border: 1px solid rgba(34, 211, 238, 0.25); border-radius: 50%;
  inset: 8% 10%;
  animation: spin 28s linear infinite;
  pointer-events: none;
  z-index: 2;
}
.hero-stage::after { inset: 18% 20%; animation-duration: 18s; animation-direction: reverse; border-color: rgba(192, 38, 255, 0.25); }
.hud {
  position: absolute; z-index: 3;
  min-width: 148px;
  background: rgba(3, 6, 16, 0.78);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--glow);
  animation: float 5.5s ease-in-out infinite;
}
.hud b { display: block; font-family: var(--display); font-size: 1.05rem; color: #fff; }
.hud small { color: var(--cyan); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.68rem; }
.hud-tl { top: 12px; left: -8px; }
.hud-br { bottom: 28px; right: -6px; animation-delay: -2s; }
.ring {
  width: 42px; height: 42px; border-radius: 50%;
  border: 3px solid rgba(34, 211, 238, 0.25);
  border-top-color: var(--cyan);
  display: inline-block; vertical-align: middle; margin-right: 0.45rem;
  animation: spin 2.4s linear infinite;
}

.actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.1rem; }
.btn, button.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad); background-size: 200% 200%;
  animation: flow 5s linear infinite;
  color: #fff; font-family: var(--sport); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; border: 0; border-radius: 999px;
  padding: 0.62rem 1.15rem; cursor: pointer;
  box-shadow: var(--glow);
}
.btn.ghost {
  background: transparent; color: var(--cyan);
  border: 1px solid var(--cyan); box-shadow: none; animation: none;
}
.btn:hover { filter: brightness(1.12); box-shadow: 0 0 28px rgba(34, 211, 238, 0.55); }
.btn.ghost:hover { background: rgba(34, 211, 238, 0.08); }

.grid-3, .grid-2, .media-grid, .day-grid, .roster-grid, .feature-rail { display: grid; gap: 1rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.stat { text-align: center; }
.stat b {
  display: block; font-family: var(--display); font-size: 1.85rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.muted { color: var(--muted); }
.tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--line); padding: 0.15rem 0.45rem; border-radius: 999px; color: var(--cyan); margin-right: 0.3rem;
}

.feature-rail { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); margin: 1.2rem 0 0.4rem; }
.feature {
  min-height: 148px;
  display: grid; align-content: start; gap: 0.3rem;
}
.feature .icon { font-size: 1.1rem; color: var(--cyan); }
.sparks { display: flex; align-items: flex-end; gap: 4px; height: 42px; margin-top: 0.5rem; }
.spark {
  flex: 1; height: 100%; background: rgba(34, 211, 238, 0.12); border-radius: 3px 3px 0 0;
  display: flex; align-items: flex-end;
}
.spark i {
  display: block; width: 100%; background: var(--grad);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.6);
  border-radius: 3px 3px 0 0;
}

.player-card header { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; }
.num { font-family: var(--display); font-size: 1.05rem; color: var(--cyan); }
.role { color: var(--magenta); font-weight: 700; font-size: 0.78rem; }
.roster-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 1rem; margin-top: 0.7rem; align-items: start; }
.squad-switch { display: flex; gap: 0.4rem; }
.roster-list { display: grid; gap: 0.35rem; }
.roster-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 3rem 6.6rem 5rem 5.6rem;
  gap: 0.5rem;
  align-items: center;
  padding: 0.38rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  font-size: 0.88rem;
}
.roster-row > * { min-width: 0; }
.roster-row strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.roster-row .num { text-align: center; font-variant-numeric: tabular-nums; }
.roster-row .tag { margin-right: 0; justify-self: start; }
.roster-row .muted { text-align: right; }
.diamond-card { padding: 0.9rem; }
.diamond { position: relative; width: 100%; aspect-ratio: 1; max-height: 420px; }
.diamond-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.spot {
  position: absolute;
  transform: translate(-50%, -50%);
  min-width: 96px;
  white-space: nowrap;
  text-align: center;
  background: rgba(3, 6, 16, 0.82);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.2rem 0.35rem;
  box-shadow: var(--glow);
}
.spot small { display: block; color: var(--cyan); letter-spacing: 0.12em; font-size: 0.62rem; }
.spot b { display: block; font-size: 0.72rem; font-weight: 600; }
.spot.empty { opacity: 0.45; box-shadow: none; min-width: 42px; padding: 0.12rem 0.25rem; }

.timeline { display: grid; gap: 0.35rem; }
.event {
  display: grid; grid-template-columns: 7.2rem 1fr; gap: 0.25rem 0.7rem; padding: 0.4rem 0.65rem;
  border: 1px solid var(--line); border-radius: 10px; background: rgba(5, 8, 20, 0.7);
  align-items: baseline;
}
.event time { font-family: var(--sport); color: var(--cyan); letter-spacing: 0.04em; font-size: 0.88rem; }
.event h3 { margin: 0; font-size: 0.95rem; }
.event p { margin: 0; font-size: 0.82rem; line-height: 1.35; }
.event.played { opacity: 0.7; }
.kind { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--magenta); }

.media-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.media-grid a, .media-grid figure {
  margin: 0; overflow: hidden; border-radius: 14px; border: 1px solid var(--line); background: #070a14;
}
.media-grid img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.6s ease; }
.media-grid a:hover img { transform: scale(1.06); }
.media-grid figcaption { padding: 0.55rem 0.7rem 0.8rem; font-size: 0.85rem; color: var(--muted); }

.form-row { display: grid; gap: 0.45rem; margin-bottom: 0.8rem; }
.form-row input, .form-row select, .form-row textarea {
  background: #070a14; border: 1px solid var(--line); border-radius: 10px; padding: 0.55rem 0.7rem;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}
.chat-shell {
  margin-top: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 8, 20, 0.72);
  box-shadow: var(--glow);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 62vh;
}
.chat-thread {
  overflow-y: auto;
  padding: 1rem 1rem 0.6rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  max-height: 62vh;
}
.chat-empty { text-align: center; padding: 2rem 1rem; }
.bubble-row { display: flex; gap: 0.55rem; align-items: flex-end; max-width: 86%; }
.bubble-row.mine { margin-left: auto; flex-direction: row-reverse; }
.avatar {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  background: var(--grad); color: #fff;
}
.bubble {
  background: rgba(12, 16, 36, 0.95);
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  padding: 0.5rem 0.7rem;
}
.bubble-row.mine .bubble {
  border-radius: 14px 14px 4px 14px;
  background: linear-gradient(160deg, rgba(192, 38, 255, 0.22), rgba(34, 211, 238, 0.12));
}
.bubble-meta { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.2rem; }
.bubble p { margin: 0; }
.bubble strong { display: block; font-size: 0.85rem; margin-bottom: 0.15rem; }
.chat-composer {
  border-top: 1px solid var(--line);
  padding: 0.7rem 0.8rem 0.85rem;
  background: rgba(3, 4, 10, 0.85);
}
.chat-who, .chat-send { display: flex; gap: 0.45rem; }
.chat-who { margin-bottom: 0.45rem; }
.chat-who select, .chat-send input {
  background: #070a14; border: 1px solid var(--line); border-radius: 10px; padding: 0.5rem 0.65rem;
}
.chat-who select { font-size: 0.85rem; }
.chat-send input { flex: 1; }
.chat-send .btn { padding-inline: 1.1rem; }

.day-grid { grid-template-columns: repeat(7, 1fr); gap: 0.55rem; }
.day {
  background: rgba(5, 8, 20, 0.75); border: 1px solid var(--line); border-radius: 14px;
  padding: 0.5rem 0.45rem 0.55rem; min-height: 0;
}
.day.go { border-color: var(--go); box-shadow: 0 0 22px rgba(52, 245, 160, 0.28); }
.day.close { border-color: var(--maybe); }
.day .btn { margin-top: 0.4rem; width: 100%; font-size: 0.72rem; padding: 0.35rem; }
.day h3 { font-family: var(--sport); font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 0.3rem; }
.win-line { display: flex; gap: 0.2rem; margin-bottom: 0.4rem; }
.win-count {
  flex: 1; text-align: center; font-size: 0.62rem; letter-spacing: 0.04em;
  border: 1px solid var(--line); border-radius: 8px; padding: 0.15rem 0;
  color: var(--muted);
}
.win-count b { display: block; font-family: var(--display); font-size: 1.05rem; color: var(--ink); }
.win-count i { font-style: normal; color: var(--maybe); font-size: 0.58rem; }
.win-count.on { border-color: var(--cyan); color: var(--cyan); }
.win-count.go { border-color: var(--go); }
.win-count.go b { color: var(--go); }
.who-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem;
  margin: 0.8rem 0 0.9rem;
}
.who-bar select { background: #070a14; border: 1px solid var(--line); border-radius: 10px; padding: 0.45rem 0.6rem; min-width: 12rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.25rem; margin-top: 0.35rem; }
.chip { font-size: 0.68rem; padding: 0.1rem 0.35rem; border-radius: 999px; background: #1e1b4b; }
.chip.yes { background: #064e3b; }
.chip.maybe { background: #4a3b08; }
.seg { display: flex; gap: 0.2rem; flex-wrap: wrap; }
.day .seg label, .day .windows label {
  border: 1px solid var(--line); border-radius: 999px; padding: 0.08rem 0.32rem; cursor: pointer; font-size: 0.68rem;
}
.day .seg label.on { border-color: var(--cyan); color: var(--cyan); }
.windows { display: flex; flex-wrap: wrap; gap: 0.2rem; margin-top: 0.28rem; }
.seg input, .windows input { accent-color: var(--cyan); }
.banner {
  background: linear-gradient(90deg, rgba(52, 245, 160, 0.18), rgba(3, 4, 10, 0.4));
  border: 1px solid var(--go); border-radius: 14px; padding: 0.8rem 1rem; margin-bottom: 1rem;
}
.rules li { margin: 0.35rem 0; color: var(--muted); }
.twitch-wrap { position: relative; padding-top: 56.25%; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.twitch-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.notice { background: rgba(192, 38, 255, 0.12); border: 1px solid var(--magenta); border-radius: 10px; padding: 0.7rem 0.9rem; color: var(--muted); }
.ok { color: var(--go); font-weight: 700; }
.warn { color: var(--maybe); font-weight: 700; }
a.card { color: inherit; }
.dues-table { width: 100%; border-collapse: collapse; }
.dues-table th, .dues-table td { text-align: left; padding: 0.45rem 0.4rem; border-bottom: 1px solid rgba(34, 211, 238, 0.1); }
.model-grid { display: grid; gap: 0.6rem; }
.model-pick { display: grid; gap: 0.2rem; cursor: pointer; }
.model-pick.on, .model-pick:has(input:checked) { border-color: var(--cyan); }

.sched-bar { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin: 0.8rem 0; }
.cal-nav h2 { margin: 0; font-size: 1.1rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.35rem; }
.cal-h { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); text-align: center; }
.cal-cell {
  min-height: 78px; border: 1px solid var(--line); border-radius: 10px;
  padding: 0.28rem; background: rgba(5, 8, 20, 0.7);
}
.cal-cell.mute { opacity: 0.25; }
.cal-cell.has { border-color: var(--cyan); box-shadow: var(--glow); }
.cal-n { display: block; font-size: 0.75rem; color: var(--muted); }
.cal-pill {
  display: block; margin-top: 0.2rem; font-size: 0.68rem; line-height: 1.2;
  padding: 0.15rem 0.28rem; border-radius: 6px; background: rgba(192, 38, 255, 0.25);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cal-pill.tournament { background: rgba(34, 211, 238, 0.22); }
.cal-pill.played { opacity: 0.65; }
.reveal { opacity: 0; transform: translateY(18px); animation: rise 0.7s ease forwards; }
.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }

@keyframes flow { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes aurora { from { transform: scale(1) translateY(0); } to { transform: scale(1.08) translateY(-12px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 1400px) {
  .nav-toggle { display: inline-flex; flex-direction: column; margin-left: auto; }
  .team-gate { order: 3; }
  .nav {
    display: none; position: absolute; top: 72px; right: 12px; flex-direction: column;
    background: #070a14; padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: 12px;
    z-index: 9;
  }
  .nav.open { display: flex; }
}
@media (max-width: 900px) {
  .hero, .grid-3, .grid-2, .day-grid, .event, .week-edit .row, .feature-rail, .roster-layout { grid-template-columns: 1fr; }
  .roster-row { grid-template-columns: minmax(0, 1.4fr) 2.8rem 5.8rem 4.4rem 5.2rem; font-size: 0.8rem; }
  .cal-cell { min-height: 56px; }
  .hud-tl, .hud-br { position: static; margin: 0.4rem 0; animation: none; }
  .hero-stage::before, .hero-stage::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
