:root {
  --bg-0: #050915;
  --bg-1: #071b3d;
  --bg-2: #210b4f;
  --cyan: #45f6ff;
  --blue: #2787ff;
  --pink: #ff4bd8;
  --gold: #ffd84d;
  --green: #3ef178;
  --ink: #eef6ff;
  --muted: #9eb8df;
  --glass: rgba(13, 38, 82, 0.62);
  --glass-strong: rgba(13, 35, 72, 0.86);
  --line: rgba(126, 215, 255, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(52, 157, 255, 0.44), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 75, 216, 0.26), transparent 24%),
    radial-gradient(circle at 50% 104%, rgba(55, 240, 180, 0.22), transparent 28%),
    linear-gradient(145deg, var(--bg-0), var(--bg-1) 48%, var(--bg-2));
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  opacity: 0.22;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 1px, transparent 1.5px);
  background-size: 46px 46px, 72px 72px;
  animation: drift 28s linear infinite;
}

body::after {
  background:
    radial-gradient(circle at 20% 72%, rgba(69, 246, 255, 0.14), transparent 24%),
    radial-gradient(circle at 82% 74%, rgba(255, 216, 77, 0.12), transparent 20%);
  filter: blur(10px);
  z-index: -3;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
}

.ambient-orbit {
  position: fixed;
  width: 44vw;
  max-width: 620px;
  aspect-ratio: 1;
  border-radius: 999px;
  opacity: 0.5;
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.ambient-orbit.left { left: -16vw; bottom: 5vh; background: radial-gradient(circle, rgba(69,246,255,.24), transparent 64%); }
.ambient-orbit.right { right: -16vw; top: 4vh; background: radial-gradient(circle, rgba(255,75,216,.2), transparent 62%); }

.phone-frame {
  width: min(100%, 430px);
  min-height: min(900px, calc(100vh - 44px));
  max-height: none;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 18px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(8, 25, 57, 0.96), rgba(5, 16, 37, 0.98)),
    url("../assets/store/screenshots/screenshot-1.png") center/cover;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.08), inset 0 0 0 1px rgba(69,246,255,.15);
  isolation: isolate;
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 11, 28, .24), rgba(3, 11, 28, .88)),
    radial-gradient(circle at 50% 0, rgba(69, 246, 255, .18), transparent 44%);
  z-index: -1;
}

.phone-notch {
  width: 124px;
  height: 24px;
  margin: -8px auto 10px;
  border-radius: 0 0 18px 18px;
  background: #020612;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}

.page-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.top-bar,
.game-top,
.action-bar,
.tabbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.icon-btn,
.pill,
.coin-pill,
.neon-btn,
.ghost-btn {
  min-height: 46px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(20, 62, 126, 0.55);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.16);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  font-size: 1.2rem;
}

.coin-pill,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 800;
}

.icon-btn:hover,
.coin-pill:hover,
.neon-btn:hover,
.ghost-btn:hover,
.tile-card:hover {
  transform: translateY(-2px);
  border-color: rgba(69,246,255,.7);
  box-shadow: 0 0 28px rgba(69,246,255,.22), 0 16px 34px rgba(0,0,0,.32);
}

.coin { color: var(--gold); filter: drop-shadow(0 0 7px rgba(255,216,77,.7)); }
.cyan { color: var(--cyan); }
.pink { color: var(--pink); }
.gold { color: var(--gold); }
.green { color: var(--green); }

.glass-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 38px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.13);
}

.hero-card {
  position: relative;
  min-height: 280px;
  padding: 24px;
  text-align: center;
  overflow: hidden;
}

.hero-card::after,
.success-panel::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.15), transparent 58%);
  transform: translateX(-120%);
  animation: shimmer 5s ease-in-out infinite;
}

.brand-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(69,246,255,.45));
}

.display-title {
  margin: 12px 0 4px;
  font-size: clamp(2.25rem, 11vw, 4.1rem);
  line-height: .9;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 6px 0 rgba(0,0,0,.34), 0 0 26px rgba(39,135,255,.4);
}

.title-gold {
  display: block;
  color: var(--gold);
  text-shadow: 0 6px 0 rgba(70, 36, 0, .45), 0 0 28px rgba(255,216,77,.35);
}

.subtitle {
  margin: 0 auto;
  color: #cfe2ff;
  font-weight: 600;
  max-width: 290px;
}

.node-art {
  position: relative;
  width: min(240px, 80%);
  aspect-ratio: 1.15;
  margin: 4px auto 14px;
}

.node-art .path,
.puzzle-board .path {
  position: absolute;
  height: 8px;
  border-radius: 999px;
  background: #ecffff;
  box-shadow: 0 0 14px var(--cyan), 0 0 28px rgba(69,246,255,.72);
  transform-origin: left center;
}

.node-art .path.a { width: 86px; left: 52px; top: 62px; }
.node-art .path.b { width: 72px; left: 130px; top: 98px; transform: rotate(36deg); }
.node-art .path.c { width: 80px; left: 52px; top: 137px; transform: rotate(-31deg); }

.node {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(180deg, #5ee7ff, #1776ff);
  border: 3px solid rgba(255,255,255,.24);
  box-shadow: 0 8px 0 rgba(0,0,0,.28), 0 0 22px rgba(69,246,255,.6);
  animation: floaty 4s ease-in-out infinite;
}

.node.n1 { left: 22px; top: 36px; }
.node.n2 { left: 112px; top: 36px; animation-delay: -.8s; }
.node.n3 { right: 4px; top: 98px; background: linear-gradient(180deg, #ffea73, #ff9f00); animation-delay: -1.4s; }
.node.n4 { left: 54px; bottom: 4px; background: linear-gradient(180deg, #9b6cff, #6230d4); animation-delay: -2s; }

.neon-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 1.05rem;
  font-weight: 900;
  background: linear-gradient(180deg, #68f6ff, #176cff);
  border-color: rgba(255,255,255,.34);
  color: white;
  text-shadow: 0 2px 0 rgba(0,0,0,.26);
}

.neon-btn.gold-btn { background: linear-gradient(180deg, #ffe66c, #ff9f00); color: #241500; }
.neon-btn.green-btn { background: linear-gradient(180deg, #74ff76, #1fac2b); }
.download-highlight {
  color: #241500;
  background: linear-gradient(180deg, #fff6a6, #ffd84d 48%, #ff9f00);
  border-color: rgba(255, 255, 255, .62);
  box-shadow: 0 0 30px rgba(255,216,77,.38), 0 16px 34px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.55);
  text-shadow: none;
}

.download-strip {
  padding: 14px;
  display: grid;
  gap: 10px;
  text-align: center;
}

.download-strip strong {
  font-size: 1rem;
  font-weight: 900;
}

.download-strip p {
  margin: 0;
  color: #cfe2ff;
  font-size: .86rem;
  font-weight: 700;
}
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 15px;
  border-radius: 16px;
  font-weight: 800;
}

.stats-grid,
.menu-grid,
.reward-grid,
.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-card,
.tile-card {
  padding: 14px;
  min-height: 82px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(10, 39, 86, .58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.stat-card span,
.mini-label,
.leader-meta {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.stat-card strong,
.summary-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 1.28rem;
  font-weight: 900;
}

.daily-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 58px 1fr 42px;
  gap: 14px;
  align-items: center;
}

.orb-icon {
  width: 58px;
  height: 58px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  background: radial-gradient(circle at 35% 28%, #fff7ad, #ffb000 56%, #e76c00);
  box-shadow: 0 0 24px rgba(255,216,77,.5);
}

.tile-card {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 800;
}

.tile-card i { font-size: 1.35rem; color: var(--cyan); }

.screen-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
}

.level-panel,
.stats-panel {
  padding: 14px;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: center;
}

.progress {
  height: 10px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
}

.progress-bar {
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--gold));
  box-shadow: 0 0 18px rgba(69,246,255,.6);
}

.puzzle-board {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: 0 auto;
  padding: clamp(10px, 3vw, 14px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(7px, 2.2vw, 10px);
}

.puzzle-tile {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: clamp(12px, 4vw, 18px);
  border: 2px solid rgba(255,255,255,.14);
  color: #09204b;
  background: linear-gradient(180deg, #fff, #dfe5ef);
  box-shadow: 0 7px 0 rgba(0,0,0,.28), inset 0 2px 0 rgba(255,255,255,.9);
  font-size: clamp(1.25rem, 8vw, 2.2rem);
  font-weight: 900;
  cursor: pointer;
  user-select: none;
  transition: transform .18s ease, filter .18s ease;
}

.puzzle-tile.empty {
  background: rgba(7, 28, 64, .5);
  border-color: rgba(69,246,255,.16);
  box-shadow: inset 0 0 0 2px rgba(91, 166, 255, .13);
}

.puzzle-tile.active {
  color: white;
  background: linear-gradient(180deg, #72efff, #1975ff);
  text-shadow: 0 2px 0 rgba(0,0,0,.28);
  box-shadow: 0 7px 0 rgba(0,0,0,.28), 0 0 26px rgba(69,246,255,.7), inset 0 2px 0 rgba(255,255,255,.34);
}

.puzzle-tile.target {
  color: white;
  background: linear-gradient(180deg, #ffe66d, #ff9f00);
  box-shadow: 0 7px 0 rgba(0,0,0,.28), 0 0 24px rgba(255,216,77,.8);
}

.puzzle-tile:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.08); }

.puzzle-board .path.h1 { width: 17%; left: 16%; top: 16%; }
.puzzle-board .path.h2 { width: 17%; left: 36%; top: 16%; }
.puzzle-board .path.h3 { width: 17%; left: 56%; top: 16%; }
.puzzle-board .path.v1 { width: 17%; left: 75%; top: 26%; transform: rotate(90deg); }
.puzzle-board .path.v2 { width: 17%; left: 75%; top: 46%; transform: rotate(90deg); }
.puzzle-board .path.d1 { width: 20%; left: 60%; top: 64%; transform: rotate(135deg); }

.action-bar .icon-btn {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  flex: 1;
  max-width: 70px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.day.done { color: white; background: rgba(62,241,120,.18); border-color: rgba(62,241,120,.45); }
.day.active { color: #1a1200; background: var(--gold); box-shadow: 0 0 18px rgba(255,216,77,.7); }

.podium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: end;
}

.podium-card {
  min-height: 130px;
  padding: 14px 8px;
  text-align: center;
}

.podium-card.first { min-height: 168px; border-color: rgba(255,216,77,.55); }

.avatar {
  width: 52px;
  height: 52px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-weight: 900;
  background: linear-gradient(180deg, #71eaff, #236fff);
}

.leader-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
}

.success-panel {
  position: relative;
  padding: 22px;
  text-align: center;
  overflow: hidden;
}

.trophy {
  width: 112px;
  height: 112px;
  margin: 4px auto 12px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  color: #4b2500;
  font-size: 4rem;
  background: radial-gradient(circle at 35% 28%, #fff4a7, #ffcb29 55%, #e77a00);
  box-shadow: 0 0 44px rgba(255,216,77,.58);
  animation: pulse 2.4s ease-in-out infinite;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
  font-size: 2.6rem;
  filter: drop-shadow(0 0 10px rgba(255,216,77,.7));
}

.preview-grid {
  width: 140px;
  aspect-ratio: 1;
  margin: 14px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.preview-grid span {
  border-radius: 9px;
  background: rgba(255,255,255,.13);
}

.preview-grid span:nth-child(1),
.preview-grid span:nth-child(2),
.preview-grid span:nth-child(6),
.preview-grid span:nth-child(10),
.preview-grid span:nth-child(14) {
  background: linear-gradient(180deg, #72efff, #1975ff);
  box-shadow: 0 0 12px rgba(69,246,255,.5);
}

.modal-content {
  color: var(--ink);
  border: 1px solid rgba(69,246,255,.28);
  background: rgba(8, 21, 49, .9);
  backdrop-filter: blur(20px);
  border-radius: 26px;
}

.modal-backdrop.show { opacity: .78; backdrop-filter: blur(10px); }

.settings-list {
  display: grid;
  gap: 12px;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}

.store-pack {
  padding: 14px;
  text-align: center;
}

.loading-screen {
  min-height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}

.loader-ring {
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 7px solid rgba(255,255,255,.08);
  border-top-color: var(--cyan);
  border-right-color: var(--gold);
  box-shadow: 0 0 34px rgba(69,246,255,.34);
  animation: spin 1s linear infinite;
}

.blog-frame {
  overflow-y: auto;
}

.blog-hero {
  padding: 18px;
}

.blog-hero h2,
.blog-featured-copy h2,
.blog-card h3 {
  margin: 10px 0 8px;
  line-height: 1.12;
  font-weight: 900;
}

.blog-hero h2 {
  font-size: 1.55rem;
}

.blog-hero p,
.blog-featured-copy p,
.blog-card p {
  margin: 0;
  color: #cfe2ff;
  font-size: .9rem;
  font-weight: 600;
}

.blog-search {
  min-height: 48px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
}

.blog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 700;
}

.blog-download {
  margin-top: 14px;
}

.blog-search input::placeholder {
  color: var(--muted);
}

.blog-featured {
  overflow: hidden;
}

.blog-featured a,
.blog-card a {
  color: inherit;
}

.blog-featured-link,
.blog-card-link {
  display: block;
}

.blog-featured-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top center;
}

.blog-featured-copy {
  padding: 16px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
}

.blog-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.blog-filter {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(20, 62, 126, 0.55);
  font-weight: 800;
}

.blog-filter.active {
  color: #071b3d;
  border-color: rgba(255,255,255,.5);
  background: var(--gold);
}

.blog-grid {
  display: grid;
  gap: 12px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(10, 39, 86, .58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(69,246,255,.62);
  box-shadow: 0 0 28px rgba(69,246,255,.18), inset 0 1px 0 rgba(255,255,255,.12);
}

.blog-card img {
  width: 100%;
  height: 124px;
  object-fit: cover;
  object-position: top center;
}

.blog-card-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.blog-tags span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(69,246,255,.1);
  font-size: .72rem;
  font-weight: 800;
}

.blog-read-more {
  min-height: 42px;
  justify-self: start;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.blog-page {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(20, 62, 126, 0.55);
  font-weight: 900;
}

.blog-page.active {
  color: #071b3d;
  border-color: rgba(255,255,255,.5);
  background: var(--gold);
}

.blog-page:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.blog-single {
  overflow: hidden;
}

.blog-back {
  margin: 14px;
  width: calc(100% - 28px);
}

.blog-single-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}

.blog-single-body {
  display: grid;
  gap: 13px;
  padding: 18px;
}

.blog-single-body h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.08;
  font-weight: 900;
}

.blog-single-body p {
  margin: 0;
  color: #dbeaff;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.65;
}

.blog-single-excerpt {
  color: #ffffff;
  font-weight: 800;
}

.video-grid {
  display: grid;
  gap: 14px;
}

.video-card {
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.video-card:hover {
  transform: translateY(-2px);
  border-color: rgba(69,246,255,.62);
  box-shadow: 0 0 28px rgba(69,246,255,.18), inset 0 1px 0 rgba(255,255,255,.12);
}

.video-card a {
  color: inherit;
}

.video-card-link {
  display: block;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(4, 13, 31, .72);
}

.video-embed.video-short {
  aspect-ratio: 9 / 16;
  max-height: 560px;
}

.video-single .video-short {
  max-height: none;
}

.video-player {
  border-bottom: 1px solid var(--line);
}

.video-embed iframe,
.video-embed img {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
  object-position: top center;
}

.video-placeholder {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #071b3d;
  background: var(--gold);
  font-size: .78rem;
  font-weight: 900;
}

.video-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.video-card-body h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.15;
  font-weight: 900;
}

.video-card-body p {
  margin: 0;
  color: #cfe2ff;
  font-size: .9rem;
  font-weight: 600;
}

.video-single {
  overflow: hidden;
}

.video-single-content {
  padding: 18px;
}

.video-single-content h2 {
  font-size: 1.55rem;
}

.particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  left: var(--x);
  top: 105%;
  background: var(--c);
  box-shadow: 0 0 14px var(--c);
  animation: particleRise var(--d) linear infinite;
  animation-delay: var(--delay);
}

.confetti {
  position: fixed;
  width: 10px;
  height: 16px;
  top: -20px;
  left: var(--x);
  background: var(--c);
  transform: rotate(var(--r));
  z-index: 20;
  animation: confettiFall var(--d) ease-in forwards;
}

@keyframes drift { to { background-position: 140px 220px, -160px 180px; } }
@keyframes shimmer { 45%, 100% { transform: translateX(120%); } }
@keyframes floaty { 50% { transform: translateY(-9px); } }
@keyframes pulse { 50% { transform: scale(1.05); filter: brightness(1.12); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes particleRise { to { transform: translateY(-120vh); opacity: 0; } }
@keyframes confettiFall { to { transform: translateY(105vh) rotate(620deg); opacity: 0; } }
