:root {
  --bg: #05050a;
  --bg2: #0a0a14;
  --card: #0f0f1e;
  --card2: #141428;
  --accent: #ff6b00;
  --accent2: #ff9500;
  --accent3: #ffcc00;
  --cyan: #00d4ff;
  --green: #00ff88;
  --purple: #8b5cf6;
  --text: #f0f0ff;
  --text2: #9090b0;
  --border: rgba(255,255,255,0.07);
  --glow-orange: rgba(255,107,0,0.3);
  --glow-cyan: rgba(0,212,255,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

#bgCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5,5,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
  height: 56px;
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
}
.logo-icon { font-size: 22px; }
.logo-accent { color: var(--accent); }
.nav-links { display: flex; gap: 20px; }
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.btn-app-small {
  background: var(--accent);
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
}

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 400px; height: 400px;
  background: var(--glow-orange);
  top: -100px; left: -100px;
  animation: glowPulse 4s ease-in-out infinite;
}
.glow-2 {
  width: 300px; height: 300px;
  background: var(--glow-cyan);
  bottom: 0; right: -50px;
  animation: glowPulse 4s ease-in-out infinite 2s;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.hero-badge {
  display: inline-block;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--accent2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(48px, 12vw, 80px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.title-line { display: block; }
.accent-line {
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-sub {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(14px, 3.5vw, 18px);
  font-weight: 400;
  color: var(--text2);
  letter-spacing: 1px;
  margin-top: 8px;
}
.hero-desc {
  font-size: clamp(14px, 3.5vw, 17px);
  color: var(--text2);
  line-height: 1.7;
  margin: 16px auto;
  max-width: 480px;
}
.hero-desc strong { color: var(--text); }
.highlight {
  color: var(--accent);
  font-weight: 700;
}
.hero-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}
.skill-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  transition: all 0.3s;
}
.skill-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000;
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(255,107,0,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 50px rgba(255,107,0,0.6);
}
.pulse-btn {
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 30px rgba(255,107,0,0.4); }
  50% { box-shadow: 0 0 60px rgba(255,107,0,0.8); }
}
.big-btn { font-size: 24px; padding: 18px 48px; }
.btn-icon { font-size: 20px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
}
.stat-label {
  font-size: 11px;
  color: var(--text2);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* PHONE MOCKUP HERO */
.hero-visual { margin-top: 32px; }
.phone-mockup {
  width: 180px;
  height: 320px;
  background: var(--card2);
  border: 2px solid rgba(255,107,0,0.3);
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 0 40px rgba(255,107,0,0.2), inset 0 0 20px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #080810;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-game-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  width: 100%;
}
.preview-bar {
  width: 8px;
  height: 100px;
  background: linear-gradient(to top, #ff6b00, #ffcc00);
  border-radius: 4px;
  animation: barGrow 2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(255,107,0,0.6);
}
@keyframes barGrow {
  0% { height: 20px; }
  70% { height: 110px; }
  85% { height: 115px; }
  90% { height: 0; opacity: 0; }
  91% { height: 20px; opacity: 1; }
  100% { height: 20px; }
}
.preview-mult {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent);
}
.preview-label {
  font-size: 12px;
  color: var(--text2);
  letter-spacing: 1px;
}

/* SECTIONS COMMON */
.video-section, .games-section, .why-section,
.leaderboard-section, .download-section, .cta-section {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  text-align: center;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(255,107,0,0.3);
  padding: 4px 12px;
  border-radius: 20px;
}
.section-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-sub {
  color: var(--text2);
  font-size: 15px;
  margin-bottom: 40px;
}

/* VIDEO */
.video-wrapper { max-width: 600px; margin: 0 auto; }
.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}
.video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0000;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-youtube:hover { background: #cc0000; transform: translateY(-2px); }
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-instagram:hover { opacity: 0.9; transform: translateY(-2px); }

/* GAMES GRID */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.game-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 20px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  text-align: left;
}
.game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity 0.3s;
}
.game-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,107,0,0.1);
}
.game-card:hover::before { opacity: 1; }
.game-card.featured {
  border-color: rgba(255,107,0,0.3);
  background: linear-gradient(135deg, #0f0f1e, #15101a);
  grid-column: span 2;
}
@media (max-width: 600px) {
  .game-card.featured { grid-column: span 1; }
}
.card-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,107,0,0.15), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.card-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.card-badge.elite { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.card-badge.legend { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.card-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255,107,0,0.5));
}
.card-title {
  font-family: 'Teko', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.card-tagline {
  color: var(--accent2);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-skill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 8px;
  padding: 4px 10px;
  width: fit-content;
  margin-bottom: 10px;
}
.skill-icon { font-size: 16px; }
.card-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 12px;
}
.card-stats {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 16px;
}
.btn-play {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000;
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(255,107,0,0.3);
}
.btn-play:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255,107,0,0.5);
}

/* WHY */
.why-section { background: rgba(255,107,0,0.03); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 16px;
  transition: all 0.3s;
}
.why-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-4px);
}
.why-icon { font-size: 32px; margin-bottom: 10px; display: block; }
.why-card h3 {
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.why-card p { font-size: 13px; color: var(--text2); line-height: 1.5; }

/* LEADERBOARD */
.leaderboard-wrap {
  max-width: 500px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.lb-header {
  display: grid;
  grid-template-columns: 50px 1fr 80px 80px;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text2);
  text-transform: uppercase;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.lb-list { padding: 4px 0; }

/* DOWNLOAD */
.download-section {
  background: linear-gradient(135deg, rgba(255,107,0,0.05), rgba(0,212,255,0.03));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.download-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.1), transparent 70%);
  pointer-events: none;
}
.download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}
.download-text { flex: 1; }
.download-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0 24px;
  text-align: left;
}
.feat { font-size: 14px; color: var(--text2); font-weight: 600; }
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(34,197,94,0.3);
}
.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(34,197,94,0.5);
}
.install-note { font-size: 12px; color: var(--text2); margin-top: 10px; }
.phone-mockup-2 {
  width: 160px;
  height: 280px;
  background: var(--card2);
  border: 2px solid rgba(0,212,255,0.3);
  border-radius: 28px;
  padding: 16px 12px 12px;
  box-shadow: 0 0 40px rgba(0,212,255,0.15);
  position: relative;
}
.phone-notch {
  width: 40px; height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin: 0 auto 12px;
}
.phone-screen-2 {
  background: #080810;
  border-radius: 18px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.app-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 8px;
}
.ap-game {
  width: 48px; height: 48px;
  background: var(--card);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.ap-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 2px;
}

/* CTA */
.cta-section { padding: 80px 20px; }
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.15), transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(40px, 10vw, 64px);
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-sub { color: var(--text2); font-size: 16px; margin-bottom: 6px; }
.cta-sub2 {
  color: var(--accent2);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 32px;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}
.social-link.yt { background: #ff0000; color: #fff; }
.social-link.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; }
.social-link:hover { transform: translateY(-2px) scale(1.03); }

/* FOOTER */
.footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid var(--border);
  padding: 32px 20px 16px;
  z-index: 1;
  position: relative;
}
.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand .logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
}
.footer-brand p { color: var(--text2); font-size: 13px; margin-top: 6px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.footer-links a { color: var(--text2); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-note {
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 11px;
  color: var(--text2);
  opacity: 0.7;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}
.footer-copy { text-align: center; font-size: 12px; color: var(--text2); opacity: 0.5; margin-top: 16px; }

/* AD OVERLAY */
.ad-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.ad-overlay.active { opacity: 1; pointer-events: all; }
.ad-box {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: 320px;
  text-align: center;
}
.ad-label {
  font-size: 10px;
  color: var(--text2);
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.ad-placeholder {
  width: 100%;
  height: 250px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  margin-bottom: 16px;
}
.ad-close {
  background: var(--accent);
  color: #000;
  border: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.ad-close:hover { background: var(--accent2); }

/* LEADERBOARD ROWS */
.lb-row {
  display: grid;
  grid-template-columns: 50px 1fr 80px 80px;
  padding: 10px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  align-items: center;
}
.lb-row:last-child { border-bottom: none; }
.lb-row:hover { background: rgba(255,255,255,0.03); }
.lb-rank {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
}
.lb-rank.gold { color: #fbbf24; }
.lb-rank.silver { color: #94a3b8; }
.lb-rank.bronze { color: #f97316; }
.lb-name { font-weight: 600; }
.lb-score { font-family: 'Orbitron', sans-serif; font-size: 14px; color: var(--accent); }
.lb-title {
  font-size: 11px;
  color: var(--purple);
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  padding: 2px 8px;
  border-radius: 10px;
  text-align: center;
}

/* ANIMATIONS */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
