:root {
  color-scheme: dark;
  --bg-1: #030112;
  --bg-2: #17082f;
  --bg-3: #611d74;
  --surface: rgba(14, 18, 36, 0.92);
  --surface-soft: rgba(19, 24, 48, 0.86);
  --surface-muted: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f8f7ff;
  --muted: rgba(245, 244, 255, 0.62);
  --accent: #8c6bff;
  --accent-2: #66ffe7;
  --danger: #ff6f91;
  --success: #59f1c0;
  --warning: #ffd166;
  --shadow: 0 25px 70px rgba(4, 1, 22, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: 'Manrope', 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 0% -20%, rgba(140, 107, 255, 0.35), transparent 45%),
    radial-gradient(circle at 100% 0%, rgba(255, 111, 147, 0.25), transparent 45%),
    radial-gradient(circle at 60% 120%, rgba(102, 255, 231, 0.25), transparent 40%), var(--bg-1);
  line-height: 1.55;
  scroll-behavior: smooth;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.background-glow {
  position: fixed;
  inset: -30% -15% -25% -15%;
  background: radial-gradient(circle at 15% 20%, rgba(140, 107, 255, 0.45), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 111, 147, 0.35), transparent 50%),
    radial-gradient(circle at 45% 80%, rgba(102, 255, 231, 0.4), transparent 55%);
  background-size: 120% 120%;
  filter: blur(65px);
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

img {
  max-width: 100%;
  display: block;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 1500px) {
  .shell {
    width: min(1360px, calc(100% - 80px));
  }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 0 18px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(120deg, var(--accent-2), #9cd3ff, var(--accent));
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoGlow 6s ease infinite;
}

.site-nav {
  display: flex;
  gap: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.site-nav a {
  color: var(--muted);
  padding-bottom: 4px;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), #5f87ff);
  color: #050212;
  box-shadow: 0 12px 30px rgba(95, 135, 255, 0.35);
}

.btn.secondary,
.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn.pill {
  background: rgba(5, 10, 30, 0.85);
  color: #f8f7ff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn.pill:hover {
  background: rgba(5, 10, 30, 1);
}

.btn.pill:active {
  background: rgba(5, 10, 30, 0.92);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn.secondary:hover,
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn.secondary:active,
.btn.ghost:active {
  background: rgba(255, 255, 255, 0.03);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.theme main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 80px;
}

.hero {
  margin: 36px 0 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  margin: 0 0 20px;
}

.hero-text p {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  background: var(--surface);
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-status {
  min-height: 110px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}

.remember {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
}

.section-head.compact {
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.muted {
  color: var(--muted);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.notice {
  border-radius: 16px;
  padding: 12px 16px;
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 14px;
}

.mod-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.mod-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 230px;
  position: relative;
  overflow: hidden;
}

.mod-card .tag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.tag.ok {
  background: rgba(95, 255, 213, 0.15);
  color: var(--success);
}

.tag.bad {
  background: rgba(255, 107, 124, 0.15);
  color: var(--danger);
}

.tag.soon {
  background: rgba(255, 209, 102, 0.18);
  color: var(--warning);
}

.mod-card h3 {
  margin: 0;
  font-size: 20px;
}

.mod-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mod-price {
  margin: 14px 0;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mod-price span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.mod-price strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.mod-price.compact {
  margin: 10px 0;
  padding: 10px 14px;
}

.price-note {
  margin-top: 6px;
  font-size: 13px;
}

.mod-card .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mod-card .notice {
  margin: 0;
}

.mod-cover {
  border-radius: 20px;
  overflow: hidden;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mod-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mod-cover.blurred img {
  filter: blur(3px) saturate(55%);
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.profile-card img {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  object-fit: cover;
}

.status-pill {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-pill.ok {
  background: rgba(70, 255, 185, 0.2);
  color: var(--success);
}

.status-pill.bad {
  background: rgba(255, 90, 122, 0.18);
  color: var(--danger);
}

.license-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.license-badges .status-pill {
  font-size: 12px;
  padding: 5px 12px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab.active {
  background: linear-gradient(120deg, var(--accent), #5f87ff);
  border-color: transparent;
  color: #050212;
}

.tab-panels .tab-panel {
  display: none;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  background: var(--surface-soft);
  gap: 14px;
}

.tab-panels .tab-panel.active {
  display: flex;
  flex-direction: column;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chip button {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.chip button:hover {
  color: var(--danger);
  transform: scale(1.1);
}

.ip-manager {
  margin-top: 24px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
}

.ip-form-global {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  align-items: center;
}

.ip-form-global input {
  flex: 1;
  min-width: 0;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 16px;
  color: var(--text);
}

.ip-form-global .btn {
  min-width: 150px;
}

.mod-form,
.promo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mod-form label,
.promo-form label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.mod-form input:not([type='checkbox']),
.mod-form textarea,
.mod-form select,
.promo-form input:not([type='checkbox']),
.promo-form textarea,
.promo-form select {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 14px;
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left top, calc(100% - 14px) 50%;
  background-size: auto, 12px 8px;
  padding-right: 42px;
}

.mod-form textarea,
.promo-form textarea {
  resize: vertical;
  min-height: 110px;
}

.mod-form select option,
.promo-form select option {
  background: rgba(10, 13, 30, 0.95);
  color: var(--text);
}

.mod-form input[type='checkbox'],
.promo-form input[type='checkbox'] {
  width: auto;
  margin-right: 8px;
  accent-color: var(--accent);
  appearance: auto;
  -webkit-appearance: auto;
  padding: 0;
}

.ip-status {
  font-size: 13px;
  color: var(--muted);
}

.promo-box {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-end;
}

.promo-box label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.promo-box input {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 16px;
  color: var(--text);
}

.promo-feedback {
  font-size: 14px;
  margin-top: 8px;
  color: var(--muted);
}

.promo-feedback.success {
  color: var(--success);
}

.promo-feedback.error {
  color: var(--danger);
}

.promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 3, 14, 0.9);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.promo-overlay.show {
  display: flex;
  animation: overlayFade 0.35s ease forwards;
}

.promo-overlay-inner {
  position: relative;
  width: min(560px, calc(100% - 40px));
  padding: 52px;
  border-radius: 40px;
  background: radial-gradient(circle at top, rgba(140, 107, 255, 0.25), transparent 60%),
    rgba(15, 17, 34, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 35px 90px rgba(3, 1, 15, 0.75);
  text-align: center;
  overflow: hidden;
}

.promo-overlay-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 255, 231, 0.45), transparent 70%);
  filter: blur(30px);
  opacity: 0.7;
  animation: glowPulse 4s ease infinite;
}

.promo-overlay-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.promo-overlay-card .eyebrow {
  color: var(--accent-2);
  letter-spacing: 0.4em;
}

.promo-overlay-card h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 0;
}

.promo-overlay-card p {
  margin: 0 auto;
  max-width: 420px;
  color: var(--muted);
}

.promo-overlay-card .badge {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.promo-overlay-card .actions {
  margin-top: 8px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.promo-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.promo-confetti span {
  position: absolute;
  width: 14px;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(180deg, #fffb8f, var(--accent));
  opacity: 0;
  animation: confettiFall 1.6s ease forwards;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.35));
  mix-blend-mode: screen;
}

.promo-confetti span:nth-child(odd) {
  background: linear-gradient(180deg, var(--accent-2), #ff9afd);
}

.promo-confetti span:nth-child(1) { left: 5%;  animation-delay: 0s;    --drift: -50px; }
.promo-confetti span:nth-child(2) { left: 12%; animation-delay: 0.12s; --drift: 40px; }
.promo-confetti span:nth-child(3) { left: 20%; animation-delay: 0.25s; --drift: -60px; }
.promo-confetti span:nth-child(4) { left: 30%; animation-delay: 0.05s; --drift: 60px; }
.promo-confetti span:nth-child(5) { left: 38%; animation-delay: 0.18s; --drift: -30px; }
.promo-confetti span:nth-child(6) { left: 46%; animation-delay: 0.32s; --drift: 35px; }
.promo-confetti span:nth-child(7) { left: 54%; animation-delay: 0.08s; --drift: -45px; }
.promo-confetti span:nth-child(8) { left: 62%; animation-delay: 0.22s; --drift: 55px; }
.promo-confetti span:nth-child(9) { left: 70%; animation-delay: 0.15s; --drift: -35px; }
.promo-confetti span:nth-child(10){ left: 78%; animation-delay: 0.28s; --drift: 45px; }
.promo-confetti span:nth-child(11){ left: 86%; animation-delay: 0.1s;  --drift: -55px; }
.promo-confetti span:nth-child(12){ left: 94%; animation-delay: 0.34s; --drift: 50px; }
.promo-confetti span:nth-child(13){ left: 2%;  animation-delay: 0.2s;  --drift: 30px; }
.promo-confetti span:nth-child(14){ left: 50%; animation-delay: 0.26s; --drift: -25px; }
.promo-confetti span:nth-child(15){ left: 98%; animation-delay: 0.4s;  --drift: -60px; }

.admin-layout {
  display: grid;
  gap: 28px;
}

@media (min-width: 1180px) {
  .admin-layout {
    grid-template-columns: 1.1fr 0.9fr;
    grid-auto-rows: min-content;
  }

  .admin-layout .mod-manager,
  .admin-layout > section:last-of-type,
  .promo-manager {
    grid-column: span 2;
  }
}

#admin-table {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

td.avatar {
  display: flex;
  align-items: center;
  gap: 12px;
}

td.avatar img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
}

.log-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.log-entry {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
}

.log-entry.ok {
  border-left: 4px solid var(--success);
}

.log-entry.bad {
  border-left: 4px solid var(--danger);
}

.log-entry .meta {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.mod-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
}

@media (max-width: 980px) {
  .mod-grid {
    grid-template-columns: 1fr;
  }
}

.promo-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: var(--surface-soft);
}

.promo-uses {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.promo-uses strong {
  font-size: 18px;
}

.admin-ip-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.admin-ip-form input {
  flex: 1;
  min-width: 240px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 16px;
  color: var(--text);
}

#promo-panel {
  position: relative;
  overflow: hidden;
}

.site-footer {
  padding: 40px 0 60px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero {
    margin-top: 16px;
  }

  .panel {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 640px;
  }

  .mod-grid {
    grid-template-columns: 1fr;
  }

  .promo-grid,
  .promo-manager {
    margin-top: 12px;
  }

  .promo-card {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .site-nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .ip-form-global {
    flex-direction: column;
    align-items: stretch;
  }

  .ip-form-global .btn {
    width: 100%;
  }

  .promo-box {
    flex-direction: column;
    align-items: stretch;
  }

  .promo-box button {
    width: 100%;
  }

  .admin-ip-form {
    flex-direction: column;
  }

  .admin-ip-form input,
  .admin-ip-form .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .shell {
    width: calc(100% - 32px);
  }

  .site-header {
    padding: 28px 0 12px;
  }

  .hero-card,
  .panel {
    padding: 22px;
    border-radius: 28px;
  }

  .mod-card,
  .promo-card {
    padding: 18px;
  }

  .tabs {
    overflow-x: auto;
  }

  .tab {
    flex: 0 0 auto;
  }

  .promo-card {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 20px;
    letter-spacing: 0.12em;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .profile-card {
    flex-direction: column;
    align-items: flex-start;
  }

  table {
    font-size: 13px;
  }

  th,
  td {
    padding: 10px 8px;
  }
}

@keyframes logoGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes overlayFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes glowPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.85;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.6;
  }
}

@keyframes confettiFall {
  0% {
    opacity: 0;
    transform: translate(0, -60px) rotate(0deg);
  }
  12% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(var(--drift, 0), 240px) rotate(540deg);
  }
}


