:root {
  --bg: #050816;
  --bg-soft: #0b1124;
  --panel: rgba(10, 16, 34, 0.88);
  --panel-strong: rgba(9, 15, 29, 0.96);
  --panel-light: rgba(255, 255, 255, 0.05);
  --line: rgba(122, 149, 255, 0.18);
  --text: #f4f7ff;
  --muted: #bcc8eb;
  --blue: #34b8ff;
  --blue-deep: #176dff;
  --purple: #b23dff;
  --purple-soft: #d67aff;
  --green: #7af6d4;
  --shadow: 0 30px 90px rgba(2, 5, 14, 0.5);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(52, 184, 255, 0.2), transparent 26%),
    radial-gradient(circle at top right, rgba(178, 61, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #060b17 0%, #091122 42%, #050813 100%);
}

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

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

button,
input {
  font: inherit;
}

.announcement-bar {
  overflow: hidden;
  border-bottom: 1px solid rgba(156, 179, 255, 0.12);
  background: linear-gradient(90deg, rgba(20, 112, 255, 0.22), rgba(178, 61, 255, 0.22));
}

.announcement-marquee {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
  will-change: transform;
}

.announcement-track {
  display: flex;
  flex-shrink: 0;
  gap: 2.5rem;
  width: max-content;
  padding: 0.34rem 0.95rem;
}

.announcement-item {
  color: #eef4ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-shell {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  width: 25rem;
  height: 25rem;
  border-radius: 999px;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.28;
}

.page-shell::before {
  top: 2rem;
  left: -10rem;
  background: rgba(52, 184, 255, 0.4);
}

.page-shell::after {
  right: -8rem;
  bottom: 8rem;
  background: rgba(178, 61, 255, 0.35);
}

.hero,
.quick-strip,
.competitions-section,
.stats-section,
.faq-section,
.site-footer {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 1.15rem;
  margin: 0;
  padding: 0.16rem clamp(1rem, 3vw, 2.75rem) 0.18rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 143, 255, 0.2), rgba(178, 61, 255, 0.18), transparent);
  pointer-events: none;
}

.site-header::after {
  content: none;
}

.site-header.is-scrolled {
  transform: translateY(0);
  background:
    linear-gradient(90deg,
      rgba(7, 13, 29, 0.94) 0%,
      rgba(10, 13, 31, 0.92) 38%,
      rgba(18, 11, 38, 0.92) 100%);
  box-shadow: 0 8px 20px rgba(2, 5, 14, 0.14);
  backdrop-filter: blur(14px);
}

.brand img,
.footer-brand img {
  width: 255px;
}

.brand {
  justify-self: start;
  position: relative;
  z-index: 1;
}

.brand img {
  width: 268px;
}

.site-nav,
.header-actions,
.quick-strip,
.card-footer,
.footer-links {
  display: flex;
  align-items: center;
}

.site-nav,
.header-actions,
.footer-links {
  gap: 1rem;
}

.site-nav {
  justify-content: center;
  justify-self: center;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
  min-height: 46px;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(161, 181, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.mobile-nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav-toggle strong {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header-actions {
  justify-self: end;
  position: relative;
  z-index: 1;
}

.site-header > .site-nav {
  grid-column: 2;
}

.site-header > .header-actions {
  grid-column: 3;
}

.site-nav a,
.plain-link,
.footer-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.5rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--purple-soft));
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.member-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 40px;
  padding: 0.42rem 0.82rem 0.42rem 0.62rem;
  border: 1px solid rgba(161, 181, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.member-balance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.42rem 0.82rem;
  border: 1px solid rgba(161, 181, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.member-pill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.member-pill::-webkit-details-marker {
  display: none;
}

.member-menu {
  position: relative;
  z-index: 40;
}

.basket-link {
  font-weight: 700;
  min-width: 42px;
  padding-inline: 0.72rem;
}

.basket-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.basket-icon svg {
  width: 20px;
  height: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.member-dropdown {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  z-index: 50;
  min-width: 220px;
  padding: 0.55rem;
  border: 1px solid rgba(161, 181, 255, 0.18);
  border-radius: 18px;
  background: rgba(9, 15, 29, 0.98);
  box-shadow: 0 24px 50px rgba(2, 5, 14, 0.45);
  backdrop-filter: blur(16px);
}

.member-dropdown a,
.member-dropdown button {
  display: flex;
  width: 100%;
  align-items: center;
  min-height: 44px;
  padding: 0.8rem 0.9rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.member-dropdown a:hover,
.member-dropdown button:hover {
  background: rgba(255, 255, 255, 0.06);
}

.member-dropdown form {
  margin: 0;
}

.site-nav a:hover,
.plain-link:hover,
.footer-links a:hover {
  color: var(--text);
}

.site-nav a:hover {
  transform: none;
  border-color: transparent;
  background: transparent;
}

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

.header-actions > * {
  position: relative;
  z-index: 1;
}

.header-actions .plain-link,
.header-actions .button,
.header-actions .basket-link,
.header-actions .member-balance,
.header-actions .member-pill {
  min-height: 40px;
}

.header-actions .plain-link,
.header-actions .basket-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.92rem;
  border: 1px solid rgba(138, 163, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 700;
}

.header-actions .plain-link:hover,
.header-actions .basket-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(138, 163, 255, 0.26);
}

.header-auth-split {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.header-auth-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.48rem 0.95rem;
  border: 1px solid rgba(138, 163, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-auth-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.38rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--purple-soft));
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.header-auth-link:hover {
  transform: translateY(-1px);
  border-color: rgba(138, 163, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.header-auth-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-auth-link.is-signup {
  border-color: rgba(52, 184, 255, 0.4);
  background: linear-gradient(135deg, rgba(52, 184, 255, 0.96), rgba(23, 109, 255, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-auth-link.is-signup::after {
  content: none;
}

.header-auth-link.is-signup:hover {
  border-color: rgba(52, 184, 255, 0.56);
  background: linear-gradient(135deg, rgba(68, 190, 255, 1), rgba(34, 121, 255, 0.96));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 46%, var(--purple) 100%);
  box-shadow: 0 18px 38px rgba(49, 117, 255, 0.34);
}

.button-disabled {
  color: rgba(244, 247, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  cursor: not-allowed;
}

.button-secondary {
  border-color: rgba(161, 181, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.hero {
  padding: 2.2rem 0 2rem;
}

.competitions-hero {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: 3rem 0 1rem;
}

.competitions-hero h1 {
  max-width: 13ch;
  margin: 1rem 0 0;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.competitions-hero p {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.competitions-page-section {
  padding-top: 2rem;
}

.label-pill,
.card-status,
.card-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.82rem;
  border: 1px solid rgba(158, 179, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(3.1rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.4rem;
}

p,
span,
li,
a {
  line-height: 1.65;
}

.competition-card p,
.winner-panel p,
.faq-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.featured-meta strong,
.price-row strong,
.stat-card strong {
  display: block;
  font-size: 1.08rem;
}

.featured-meta span,
.price-row span,
.stat-card span,
.form-note {
  color: var(--muted);
}

.hero-featured {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.2rem;
}

.featured-slider {
  position: relative;
  z-index: 2;
  width: 100%;
}

.featured-slider-stage {
  width: 100%;
}

.featured-slider-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 560px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  padding: 0.2rem 0;
  --featured-drag-offset: 0px;
}

.featured-slider-viewport.is-dragging {
  cursor: grabbing;
}

.featured-slider-dots {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.featured-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.featured-dot.active {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 10px 24px rgba(92, 92, 255, 0.42);
  transform: scale(1.15);
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.78;
}

.glow-blue {
  top: 12%;
  left: 6%;
  width: 220px;
  height: 220px;
  background: rgba(52, 184, 255, 0.38);
}

.glow-purple {
  right: 5%;
  bottom: 18%;
  width: 250px;
  height: 250px;
  background: rgba(178, 61, 255, 0.34);
}

.featured-card,
.competition-card,
.stat-card,
.winner-panel,
.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(14, 22, 44, 0.96), rgba(8, 13, 27, 0.98));
  box-shadow: var(--shadow);
}

.featured-card {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 540px;
  padding: 2.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(178, 61, 255, 0.18), transparent 32%),
    radial-gradient(circle at left center, rgba(52, 184, 255, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(16, 26, 54, 0.98), rgba(10, 15, 31, 0.98));
  cursor: pointer;
}

.featured-card > * {
  position: relative;
  z-index: 2;
}

.featured-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 280px);
  opacity: var(--featured-opacity, 0);
  transform: translate3d(calc(-50% + var(--featured-offset, 0%) + var(--featured-drag-offset, 0px)), 22px, 0) scale(var(--featured-scale, 0.9));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 300ms ease;
  filter: saturate(0.9);
  z-index: 1;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.featured-slider-viewport.is-dragging .featured-slide,
.featured-slider-viewport:not(.is-animating) .featured-slide {
  transition: none;
}

.featured-slide.is-prev {
  pointer-events: none;
}

.featured-slide.is-next,
.featured-slide.is-far {
  pointer-events: none;
}

.featured-card.has-banner-image {
  background:
    linear-gradient(90deg, rgba(7, 12, 25, 0.84), rgba(7, 12, 25, 0.55)),
    radial-gradient(circle at top right, rgba(178, 61, 255, 0.18), transparent 32%);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.featured-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

.featured-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 12, 25, 0.84), rgba(7, 12, 25, 0.55)),
    radial-gradient(circle at top right, rgba(178, 61, 255, 0.18), transparent 32%);
}

.featured-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.featured-card h2 {
  max-width: 8ch;
  margin-top: 1rem;
  font-size: clamp(3.5rem, 8vw, 6.4rem);
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.featured-card p {
  max-width: 700px;
  margin: 1.2rem 0 0;
  color: #dce6ff;
  font-size: 1.15rem;
}

.featured-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 1rem;
  margin: 2rem 0 1.8rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(159, 180, 255, 0.13);
}

.featured-card-hint {
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  color: #dce6ff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  opacity: 0.9;
}

.sales-progress-block {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.35rem;
}

.sales-progress-labels,
.sales-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.sales-progress-labels strong,
.sales-meta strong {
  color: var(--text);
}

.sales-progress {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.sales-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  box-shadow: 0 8px 22px rgba(60, 128, 255, 0.28);
}

.timer-pill {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, #de1515, #b40000);
  color: white;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(180, 0, 0, 0.3);
}

.timer-pill-main {
  background: linear-gradient(135deg, rgba(45, 119, 255, 0.95), rgba(178, 61, 255, 0.92));
  box-shadow: 0 16px 34px rgba(79, 73, 255, 0.28);
}

.quick-strip {
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.quick-strip div {
  display: grid;
  gap: 0.28rem;
  color: var(--muted);
  font-weight: 700;
}

.quick-strip strong {
  color: var(--text);
  font-size: 1rem;
}

.quick-strip span {
  color: var(--muted);
  font-size: 0.96rem;
}

.homepage-strip {
  margin-top: 0.2rem;
}

.browse-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.browse-feature-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(178, 61, 255, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(14, 22, 44, 0.94), rgba(8, 13, 27, 0.98));
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.browse-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 149, 255, 0.3);
  box-shadow: 0 28px 64px rgba(2, 5, 14, 0.44);
}

.browse-feature-card p {
  margin: 0;
  color: var(--muted);
}

.competitions-section,
.stats-section,
.faq-section {
  padding: 4rem 0 0;
}

.unified-browse-section {
  padding-top: 2.8rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.competition-grid,
.stats-grid,
.winner-showcase,
.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.competition-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.competition-card,
.stat-card,
.winner-panel,
.faq-card {
  padding: 1.5rem;
}

.compact {
  min-height: 250px;
}

.competition-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  min-height: 100%;
}

.competition-card:hover {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 18px 36px rgba(2, 5, 14, 0.28);
  border-color: rgba(122, 149, 255, 0.22);
}

.competition-card::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 184, 255, 0.18) 0%, rgba(52, 184, 255, 0) 70%);
}

.competition-card-media {
  position: relative;
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(178, 61, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(16, 26, 54, 0.92), rgba(10, 15, 31, 0.98));
}

.competition-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 25, 0.08), rgba(7, 12, 25, 0.55));
}

.competition-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.competition-card:hover .competition-card-media img {
  transform: scale(1.02);
}

.competition-card-media.placeholder {
  min-height: 220px;
}

.competition-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

.empty-state {
  display: grid;
  gap: 0.7rem;
  background: linear-gradient(180deg, rgba(14, 22, 44, 0.96), rgba(8, 13, 27, 0.98));
  align-content: start;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.empty-state-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.competition-card h3 {
  margin-top: 0.3rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.competition-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.competition-card-type {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.competition-card-footnote {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.competition-card-actions {
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.competition-card-actions .button {
  flex: 1 1 0;
  display: inline-flex;
  min-height: 46px;
  padding: 0.8rem 1rem;
  width: auto;
  min-width: 0;
  align-self: stretch;
  justify-content: center;
  box-shadow: none;
  transform: none;
}

.competition-card-actions .button-secondary {
  border-color: rgba(161, 181, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.competition-card-actions .button-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 46%, var(--purple) 100%);
  box-shadow: none;
}

.competition-card-actions .button:hover {
  transform: none;
}

.competition-card-actions .button-secondary:hover {
  border-color: rgba(161, 181, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.competition-card-actions .button-primary:hover {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 46%, var(--purple) 100%);
  box-shadow: none;
}

.competition-card-timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.competition-card-timer div {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
  padding: 0.56rem 0.3rem;
  border: 1px solid rgba(122, 149, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.competition-card-timer strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.competition-card-timer span {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.competition-card-timer.is-ended div {
  border-color: rgba(255, 74, 74, 0.32);
  background: rgba(114, 10, 10, 0.24);
  animation: endedPulse 1.8s ease-in-out infinite;
}

.competition-card-timer.is-ended strong,
.competition-card-timer.is-ended span {
  color: #ffd8d8;
}

.competition-card-meta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-bottom: 0.2rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(63, 150, 255, 0.42);
  border-radius: 12px;
  background: rgba(10, 26, 54, 0.85);
  color: #eff4ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.competition-card-price {
  display: grid;
  justify-items: center;
  gap: 0.1rem;
  margin-bottom: 0.25rem;
}

.competition-card-price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.15rem;
  line-height: 0.9;
}

.competition-card-price span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.competition-card-quantity {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 46px;
  margin-bottom: 0.35rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(63, 150, 255, 0.42);
  border-radius: 12px;
  background: rgba(8, 18, 38, 0.92);
}

.competition-card-quantity span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.competition-card-quantity strong {
  font-size: 0.92rem;
}

.competition-card.is-closed .competition-card-media::after {
  background: linear-gradient(180deg, rgba(7, 12, 25, 0.18), rgba(7, 12, 25, 0.72));
}

.competition-card.is-closed .competition-card-media img {
  filter: saturate(0.58) brightness(0.8);
}

.competition-card.is-closed .competition-card-body {
  opacity: 0.82;
}

.competition-card.is-closed .competition-card-meta-strip,
.competition-card.is-closed .competition-card-quantity {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.competition-card.is-closed .competition-card-price strong {
  color: rgba(244, 247, 255, 0.88);
}

.competition-card.is-closed .competition-card-quantity {
  opacity: 0.72;
}

.card-stepper-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(122, 149, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
}

.card-stepper-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.competition-card-add-form {
  display: grid;
  gap: 0;
  margin-top: auto;
}

.quick-add-modal[hidden] {
  display: none;
}

.age-gate[hidden] {
  display: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.age-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 14, 0.78);
  backdrop-filter: blur(12px);
}

.age-gate-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(138, 163, 255, 0.18);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(14, 22, 44, 0.98), rgba(8, 13, 27, 0.99));
  box-shadow: 0 34px 80px rgba(2, 5, 14, 0.46);
}

.age-gate-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(138, 163, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d7e2ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.age-gate-dialog h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.04;
}

.age-gate-dialog p {
  margin: 0;
  color: #c3cff1;
  line-height: 1.65;
}

.age-gate-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.age-gate-links a {
  color: #8cb2ff;
  font-weight: 700;
}

.age-gate-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.age-gate-actions .button {
  flex: 1 1 220px;
}

.quick-add-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.quick-add-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 18, 0.78);
  backdrop-filter: blur(8px);
}

.quick-add-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 1.5rem), 520px);
  margin: 10vh auto 0;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(14, 22, 44, 0.98), rgba(8, 13, 27, 0.99));
  box-shadow: var(--shadow);
}

.quick-add-dialog h3 {
  margin-top: 1rem;
}

.quick-add-dialog p {
  margin: 0.85rem 0 1rem;
  color: var(--muted);
}

.quick-add-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(122, 149, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.quick-add-options {
  display: grid;
  gap: 0.75rem;
}

.quick-add-option {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(122, 149, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.quick-add-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.quick-add-option span {
  font-weight: 800;
}

.quick-add-option:has(input:checked) {
  border-color: rgba(52, 184, 255, 0.72);
  background: rgba(28, 86, 168, 0.26);
  box-shadow: 0 14px 30px rgba(18, 58, 112, 0.22);
}

.quick-add-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

@keyframes endedPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(215, 33, 33, 0);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 24px rgba(215, 33, 33, 0.22);
    transform: scale(1.02);
  }
}

.end-banner {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(45, 119, 255, 0.96), rgba(77, 38, 193, 0.96));
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.end-banner.urgent {
  background: linear-gradient(135deg, #e11a1a, #b40000);
  box-shadow: 0 10px 26px rgba(180, 0, 0, 0.28);
}

.end-banner.ending-soon {
  animation: endBannerPulse 1.7s ease-in-out infinite;
}

.end-banner.sold-out {
  background: linear-gradient(135deg, #ff5b6e, #c1162f);
  box-shadow: 0 10px 26px rgba(193, 22, 47, 0.34);
}

.end-banner.new {
  background: linear-gradient(135deg, #ff8b2b, #ff5e00);
}

@keyframes endBannerPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 26px rgba(180, 0, 0, 0.28);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 14px 34px rgba(255, 77, 115, 0.42);
  }
}

.price-row {
  margin: 1.2rem 0 1.4rem;
}

.section-head-button {
  flex-shrink: 0;
}

.card-footer {
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-tabs {
  display: flex;
  gap: 0.8rem;
  flex-wrap: nowrap;
  margin-top: 1.8rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.category-toolbar .category-tabs {
  margin-top: 0;
  flex: 1;
}

.catalogue-toolbar {
  margin-top: 1.4rem;
}

.onboarding-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.onboarding-card {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(161, 181, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.onboarding-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.98rem;
}

.onboarding-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.email-landing-strip {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(161, 181, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.email-landing-strip strong {
  font-size: 1.15rem;
}

.email-landing-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tab {
  padding: 0.8rem 0.2rem 0.95rem;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: rgba(220, 230, 255, 0.72);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 800;
}

.tab.active {
  color: white;
  background: transparent;
  border-bottom-color: var(--blue);
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  text-align: center;
  padding: 1.8rem 1.2rem;
}

.stat-card strong {
  font-size: 2rem;
}

.winner-showcase {
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: 1.5rem;
}

.winner-panel blockquote {
  margin: 1rem 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.65rem;
  line-height: 1.28;
}

.info-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
  display: grid;
  gap: 1.6rem;
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(161, 181, 255, 0.14);
}

.footer-topline {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 1.5rem;
  align-items: stretch;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 0.35rem 0;
}

.footer-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0.4rem 0.72rem;
  border: 1px solid rgba(161, 181, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #d7e2ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand h2 {
  margin: 0;
  max-width: 620px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.6;
}

.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.footer-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(161, 181, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #d7e2ff;
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-compliance {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(161, 181, 255, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-compliance p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer-compliance-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-compliance-links a {
  color: #d7e2ff;
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(161, 181, 255, 0.1);
}

.footer-link-group {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(161, 181, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.footer-link-group span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-link-group a {
  color: var(--muted);
  line-height: 1.45;
}

.footer-bottomline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(161, 181, 255, 0.08);
  color: #9fb0d9;
  font-size: 0.9rem;
}

.footer-bottomline p {
  margin: 0;
  line-height: 1.5;
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(52, 184, 255, 0.16), rgba(178, 61, 255, 0.18));
  box-shadow: 0 12px 30px rgba(8, 14, 32, 0.32);
}

.compliance-badge span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .competition-grid,
  .winner-showcase,
  .onboarding-strip {
    grid-template-columns: 1fr;
  }

  .hero-featured {
    min-height: 560px;
  }

  .featured-slide {
    width: calc(100% - 220px);
  }

  .category-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.7rem;
    top: 0;
    padding: 0.08rem 0.6rem 0.12rem;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: clamp(158px, 42vw, 190px);
  }

  .mobile-nav-toggle {
    display: inline-flex;
    position: relative;
    min-height: 40px;
    padding: 0.45rem 0.9rem 0.45rem 2.7rem;
    gap: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
  }

  .site-header > .site-nav,
  .site-header > .header-actions {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.9rem;
    border: 1px solid rgba(161, 181, 255, 0.16);
    border-radius: 20px;
    background: rgba(9, 15, 29, 0.98);
    box-shadow: 0 22px 45px rgba(2, 5, 14, 0.34);
    margin-top: 0.25rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.7rem 0.8rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
  }

  .header-actions {
    width: 100%;
    justify-self: stretch;
    justify-content: stretch;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0;
    display: none;
  }

  .mobile-nav-toggle span {
    display: none;
  }

  .mobile-nav-toggle::before,
  .mobile-nav-toggle::after {
    content: "";
    position: absolute;
    left: 0.95rem;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  }

  .mobile-nav-toggle::before {
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
  }

  .mobile-nav-toggle::after {
    top: 50%;
    opacity: 0;
    transform: translateY(-50%) rotate(45deg);
  }

  .mobile-nav-toggle[aria-expanded="true"]::before {
    transform: translateY(-50%) rotate(-45deg);
    box-shadow: none;
  }

  .mobile-nav-toggle[aria-expanded="true"]::after {
    opacity: 1;
  }

  .mobile-nav-toggle strong {
    font-size: 0.92rem;
  }

  .header-auth-split {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .header-auth-link {
    width: 100%;
  }

  .site-header.menu-open .header-actions {
    display: flex;
  }

  .section-head,
  .site-footer {
    align-items: flex-start;
  }

  .site-footer,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-topline {
    grid-template-columns: 1fr;
  }

  .featured-meta,
  .stats-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    min-height: auto;
  }

  .featured-slide {
    width: calc(100% - 120px);
  }

  .category-toolbar {
    gap: 1rem;
  }

  .category-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .quick-strip {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 1rem;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

  .quick-strip::-webkit-scrollbar {
    display: none;
  }

  .quick-strip > div {
    flex: 0 0 auto;
  }
}

@media (max-width: 640px) {
  .hero,
  .competitions-hero,
  .quick-strip,
  .competitions-section,
  .stats-section,
  .faq-section,
  .site-footer {
    width: min(calc(100% - 1.2rem), var(--content-width));
  }

  .site-header {
    width: 100%;
  }

  .header-actions,
  .footer-links {
    width: 100%;
  }

  .header-actions {
    justify-self: stretch;
    gap: 0.75rem;
    margin-top: 0;
  }

  .header-actions .button,
  .header-actions .plain-link,
  .header-actions .member-balance,
  .header-actions .member-menu,
  .header-actions .basket-link,
  .header-auth-split {
    width: auto;
  }

  .button {
    width: 100%;
  }

  .footer-link-group {
    padding: 0.95rem 1rem;
  }

  .footer-bottomline {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 1.6rem;
  }

  .hero-featured {
    min-height: 520px;
  }

  .featured-card,
  .competition-card,
  .stat-card,
  .winner-panel,
  .faq-card {
    border-radius: 22px;
  }

  .timer-pill {
    top: 1rem;
    right: 1rem;
    font-size: 0.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .featured-card {
    padding: 1.5rem;
  }

  .featured-card h2 {
    font-size: clamp(2.1rem, 12vw, 3rem);
    max-width: none;
  }

  .featured-card p {
    font-size: 1rem;
  }

  .featured-meta {
    margin: 1.4rem 0 1.25rem;
  }

  .featured-slider-dots {
    gap: 0.5rem;
  }

  .featured-slider-viewport {
    min-height: 470px;
  }

  .featured-slide {
    top: 0;
    left: 50%;
    width: calc(100% - 1rem);
    opacity: var(--featured-opacity, 0);
    transform: translate3d(calc(-50% + var(--featured-offset, 0%) + var(--featured-drag-offset, 0px)), 0, 0) scale(var(--featured-scale, 0.94));
    transition: transform 280ms ease, opacity 220ms ease;
    filter: none;
  }

  .section-head {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .section-head-button {
    width: 100%;
  }

  .competition-card-body {
    padding: 1.15rem 1.1rem 1.15rem;
  }

  .competition-card-timer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .competition-card-actions {
    flex-direction: column;
  }

  .competition-card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }

  .competition-card:hover .competition-card-media img {
    transform: none;
  }

  .price-row {
    margin: 1rem 0 1.2rem;
  }

  .site-footer {
    gap: 1.5rem;
    padding: 3rem 0 2.4rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .announcement-track,
  .featured-slide,
  .competition-card,
  .competition-card-media img,
  .competition-card-timer.is-ended div,
  .nav-toggle-icon::before,
  .nav-toggle-icon::after,
  .nav-toggle-icon span,
  .wheel-disc,
  .wheel-result.revealing,
  .wheel-reveal-item.revealing,
  .wheel-reveal-item.revealed,
  .ticket-result-tile.revealed,
  .instant-ticket-card.revealed,
  .scratch-win-burst,
  .wheel-result-sparkles.active {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-marquee {
    animation: none;
  }
}
