:root {
  --bg: #020611;
  --bg-soft: #07111f;
  --card: rgba(7, 13, 26, 0.84);
  --card-solid: #08111f;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 230, 0, 0.36);
  --text: #f8fafc;
  --muted: #a8b3c7;
  --muted-2: #64748b;
  --yellow: #ffe600;
  --yellow-dark: #d6a900;
  --orange: #ffb800;
  --blue: #1e9bff;
  --deep-blue: #061a33;
  --green: #22c55e;
  --red: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.32);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(2, 6, 17, 0.78), #020611 720px),
    radial-gradient(circle at 20% 0%, rgba(255, 230, 0, 0.16), transparent 28%),
    radial-gradient(circle at 80% 5%, rgba(30, 155, 255, 0.19), transparent 32%),
    #020611;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
  z-index: -3;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: rgba(255, 230, 0, 0.28);
  color: white;
}

.bg-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.2;
  z-index: -2;
  pointer-events: none;
}

.bg-glow-one {
  background: var(--yellow);
  top: 130px;
  left: -130px;
}

.bg-glow-two {
  background: var(--blue);
  bottom: 80px;
  right: -110px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 6, 17, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 230, 0, 0.12);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  min-width: 0;
}

.brand-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #05070d;
  border: 1px solid rgba(255, 230, 0, 0.35);
  box-shadow:
    0 0 0 4px rgba(255, 230, 0, 0.06),
    0 18px 42px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  color: var(--yellow);
  font-size: 20px;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: block;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand-subtitle {
  display: block;
  margin-top: 2px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  transition: color 160ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  transition: width 180ms ease;
}

.nav a:hover {
  color: var(--yellow);
}

.nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
}

/* Buttons */

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  user-select: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #fff200, #ffb800);
  color: #08090d;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 16px 42px rgba(255, 230, 0, 0.28);
}

.btn-secondary,
.btn-small {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

/* Layout */

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.row-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 950;
}

.section-heading h2,
.info-panel h2,
.trust-card h2,
.notice-card h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-heading p,
.info-panel p,
.trust-card p,
.notice-card p,
.feature-card p,
.rule-card p,
.faq-list p,
.content-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* Hero */

.hero {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  padding: 46px 0 74px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - min(var(--max), calc(100vw - 32px))) / -2);
  top: calc(var(--header-height) * -1);
  height: 790px;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.96), rgba(2, 6, 17, 0.74), rgba(2, 6, 17, 0.38)),
    linear-gradient(180deg, rgba(2, 6, 17, 0.18), #020611),
    url("/assets/images/banner.png") center / cover no-repeat;
  opacity: 0.9;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - min(var(--max), calc(100vw - 32px))) / -2);
  top: calc(var(--header-height) * -1);
  height: 790px;
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 230, 0, 0.18), transparent 22%),
    radial-gradient(circle at 28% 28%, rgba(30, 155, 255, 0.22), transparent 26%);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  min-width: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.status-dot.online {
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 230, 0, 0.16);
}

.hero h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.65);
}

.hero-description {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 690px;
  margin-top: 34px;
}

.hero-mini-stats div,
.stat-card,
.feature-card,
.rule-card,
.info-panel,
.table-card,
.trust-card,
.hero-card,
.sponsor-box,
.faq-list details,
.empty-card,
.giveaway-card,
.event-card,
.content-card,
.notice-card,
.legal-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-mini-stats div {
  padding: 18px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
}

.hero-mini-stats strong {
  display: block;
  color: var(--yellow);
  font-size: 24px;
}

.hero-mini-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-card {
  min-height: 420px;
  padding: 24px;
  border-radius: var(--radius);
  border-color: rgba(255, 230, 0, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 230, 0, 0.1), rgba(30, 155, 255, 0.08)),
    rgba(7, 13, 26, 0.78);
  backdrop-filter: blur(16px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

.live-badge,
.card-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff200, #ffb800);
  color: #07080d;
  box-shadow: 0 8px 22px rgba(255, 230, 0, 0.22);
  font-size: 12px;
  font-weight: 950;
}

.featured-giveaway {
  min-height: 320px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 230, 0, 0.16), rgba(30, 155, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-giveaway h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.featured-giveaway p {
  color: var(--muted);
  line-height: 1.7;
}

.mini-featured {
  min-height: 190px;
  margin-top: 16px;
}

.giveaway-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.giveaway-meta span {
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

/* Grids */

.stats-grid,
.cards-grid,
.feature-grid,
.rules-grid,
.two-grid,
.three-grid {
  display: grid;
  gap: 16px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.rules-grid {
  grid-template-columns: repeat(3, 1fr);
}

.two-grid {
  grid-template-columns: repeat(2, 1fr);
}

.three-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Cards */

.stat-card,
.feature-card,
.rule-card,
.content-card {
  border-radius: var(--radius-sm);
  padding: 22px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.stat-card:hover,
.feature-card:hover,
.rule-card:hover,
.content-card:hover,
.giveaway-card:hover,
.event-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 230, 0, 0.28);
}

.stat-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  color: var(--yellow);
  font-size: 34px;
  letter-spacing: -0.04em;
}

.giveaway-card {
  min-height: 230px;
  padding: 22px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.giveaway-card h3,
.event-card h3,
.feature-card h3,
.content-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.giveaway-card p {
  color: var(--muted);
  line-height: 1.7;
}

.giveaway-card .giveaway-meta,
.event-card .giveaway-meta {
  margin-top: auto;
}

.empty-card {
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  text-align: center;
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 230, 0, 0.16), rgba(30, 155, 255, 0.08));
  border: 1px solid rgba(255, 230, 0, 0.28);
  font-size: 21px;
}

.locked-card span {
  display: inline-block;
  margin-top: 10px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Events */

.event-card {
  min-height: 260px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.event-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.event-card-body {
  flex: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.event-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* Tables */

.table-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.7fr 0.8fr;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
}

.table-header {
  background: rgba(255, 230, 0, 0.08);
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

.table-row {
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.table-row span:first-child {
  color: var(--text);
  font-weight: 850;
}

/* Split / Info */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-panel {
  padding: 30px;
  border-radius: var(--radius-sm);
}

.dark-panel {
  background:
    linear-gradient(135deg, rgba(255, 230, 0, 0.12), rgba(30, 155, 255, 0.06)),
    var(--card-solid);
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff200, #ffb800);
  color: #111827;
  font-weight: 950;
}

.step p {
  margin: 6px 0 0;
  color: var(--muted);
}

.clean-list {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.sponsor-box {
  margin-top: 18px;
  padding: 24px;
  border-radius: var(--radius-sm);
  border-color: rgba(255, 230, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sponsor-box h3 {
  margin: 0;
}

.sponsor-box p {
  margin: 8px 0 0;
  color: var(--muted);
}

.rule-card strong {
  display: block;
  color: var(--yellow);
  font-size: 13px;
  margin-bottom: 10px;
}

.rule-card p {
  margin: 0;
}

/* Trust / FAQ / Footer */

.trust-card {
  padding: 36px;
  border-radius: var(--radius);
  border-color: rgba(255, 230, 0, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 230, 0, 0.1), rgba(30, 155, 255, 0.08)),
    rgba(7, 13, 26, 0.78);
}

.trust-points,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-points span,
.badge-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list details[open] {
  border-color: rgba(255, 230, 0, 0.24);
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 850;
}

.footer-links a:hover {
  color: var(--yellow);
}

/* Multi-page */

.page-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 34px;
}

.page-hero h1 {
  max-width: 850px;
  margin: 10px 0 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.5);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.content-card {
  border-radius: var(--radius-sm);
  padding: 24px;
}

.notice-card {
  padding: 28px;
  border-radius: var(--radius);
  border-color: rgba(255, 230, 0, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 230, 0, 0.12), rgba(30, 155, 255, 0.06)),
    var(--card);
}

.notice-card h2 {
  margin-top: 10px;
}

.banner-panel {
  min-height: 280px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 230, 0, 0.3);
  background:
    linear-gradient(135deg, rgba(2, 6, 17, 0.1), rgba(2, 6, 17, 0.65)),
    url("/assets/images/banner.png") center / cover no-repeat;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.banner-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.95), rgba(2, 6, 17, 0.48)),
    radial-gradient(circle at top right, rgba(255, 230, 0, 0.22), transparent 35%);
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 34px;
}

.banner-content h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.banner-content p {
  color: var(--muted);
  line-height: 1.7;
}

/* Timeline / Status / Legal */

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
}

.timeline-number {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 230, 0, 0.12);
  border: 1px solid rgba(255, 230, 0, 0.28);
  color: var(--yellow);
  font-weight: 950;
}

.timeline-item h3 {
  margin: 0;
}

.timeline-item p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.status-list {
  display: grid;
  gap: 12px;
}

.status-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.status-item strong {
  color: var(--text);
}

.status-item span {
  color: var(--yellow);
  font-weight: 950;
}

.legal-card {
  padding: 30px;
  border-radius: var(--radius);
}

.legal-card h2 {
  margin-top: 0;
}

.legal-card h3 {
  margin-top: 28px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.8;
}

/* 404 */

.error-page {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  place-items: center;
  text-align: center;
}

.error-card {
  width: min(720px, calc(100% - 32px));
  padding: 42px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(255, 230, 0, 0.32);
  box-shadow: var(--shadow);
}

.error-code {
  color: var(--yellow);
  font-size: clamp(70px, 12vw, 150px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.error-card h1 {
  margin: 14px 0 0;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.05em;
}

.error-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* Loading */

.skeleton-line {
  width: 70%;
  height: 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.08)
  );
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite linear;
}

.skeleton-line.wide {
  width: 90%;
  height: 28px;
}

.skeleton-line.small {
  width: 45%;
}

@keyframes shimmer {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

/* Responsive */

@media (max-width: 1080px) {
  .nav {
    gap: 12px;
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .stats-grid,
  .feature-grid,
  .rules-grid,
  .cards-grid,
  .three-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(7, 13, 26, 0.98);
    border: 1px solid rgba(255, 230, 0, 0.2);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }

  .nav a::after {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  .brand-subtitle {
    display: none;
  }

  .hero-mini-stats,
  .stats-grid,
  .feature-grid,
  .rules-grid,
  .cards-grid,
  .three-grid {
    grid-template-columns: 1fr;
  }

  .table-header {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .table-row span:not(:first-child)::before {
    color: var(--yellow);
    font-weight: 900;
  }

  .sponsor-box,
  .site-footer,
  .row-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .hero-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 70px;
  }

  .section,
  .page-hero,
  .hero,
  .header-inner,
  .site-footer {
    width: min(100% - 22px, var(--max));
  }

  .section {
    padding: 48px 0;
  }

  .page-hero {
    padding: 54px 0 22px;
  }

  .hero {
    padding: 44px 0 54px;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -0.055em;
  }

  .hero-description,
  .page-hero p {
    font-size: 16px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 14px;
  }

  .featured-giveaway,
  .hero-card,
  .trust-card,
  .notice-card,
  .legal-card,
  .error-card,
  .banner-content {
    padding: 22px;
  }

  .banner-panel {
    min-height: 320px;
  }

  .status-item {
    flex-direction: column;
    gap: 6px;
  }
}

/* Website emoji and winner profile improvements */
.inline-emoji {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  margin: 0 0.12em;
  object-fit: contain;
  vertical-align: -0.2em;
}

.prize-content {
  overflow-wrap: anywhere;
  word-break: normal;
}

.winner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.winner-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 7px 10px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.winner-avatar {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  background: #111827;
  border: 1px solid rgba(255, 230, 0, 0.24);
}

.winner-copy {
  display: grid;
  min-width: 0;
  line-height: 1.1;
}

.winner-name {
  max-width: 190px;
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.winner-username {
  max-width: 190px;
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.winner-empty {
  color: var(--muted);
}

.table-row > span {
  min-width: 0;
}

@media (max-width: 760px) {
  .winner-list {
    margin-top: 4px;
  }

  .winner-name,
  .winner-username {
    max-width: 220px;
  }
}

/* Header asset and navigation state improvements */
.brand-icon img {
  object-position: center;
}

.nav a[aria-current="page"] {
  color: var(--yellow);
}

.nav a[aria-current="page"]::after {
  width: 100%;
}
