:root {
  --brand-red: #ef1515;
  --brand-blue: #63c4ef;
  --field: #0f8f55;
  --field-dark: #086238;
  --ink: #111111;
  --ink-soft: #27231f;
  --paper: #fff8ea;
  --paper-strong: #ffffff;
  --mustard: #ffd23f;
  --cheese: #fff2b8;
  --tomato: var(--brand-red);
  --tomato-dark: #b90000;
  --pickle: var(--field);
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 24px 70px rgba(31, 20, 11, 0.2);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/DMSans-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/DMSans-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 900;
  src: url("assets/fonts/DMSans-Black.ttf") format("truetype");
}

@font-face {
  font-family: "Cuanky";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/CuankyDemoRegular.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(239, 21, 21, 0.05) 0 1px, transparent 1px 92px),
    linear-gradient(180deg, rgba(99, 196, 239, 0.16), rgba(255, 210, 63, 0.08) 42%, rgba(239, 21, 21, 0.06)),
    var(--paper);
}

button,
input,
select {
  font: inherit;
}

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

.app-shell {
  min-height: 100vh;
  padding-bottom: 72px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 44px);
  background: rgba(255, 248, 234, 0.94);
  border-bottom: 3px solid var(--brand-red);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  background: var(--cheese);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--brand-red);
}

.brand-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy img {
  width: min(196px, 48vw);
  height: auto;
}

.brand-copy small {
  color: var(--brand-red);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.icon-button,
.order-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  font-weight: 900;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.order-button {
  position: relative;
  grid-template-columns: 13px auto;
  gap: 3px;
  width: auto;
  min-width: 56px;
  padding: 0 10px;
  color: var(--paper-strong);
  background: var(--brand-red);
  border-color: var(--brand-red);
  box-shadow: 4px 4px 0 var(--mustard);
}

.order-pin {
  position: relative;
  display: block;
  width: 12px;
  height: 15px;
  background: var(--paper-strong);
  border-radius: 8px 8px 8px 2px;
  transform: rotate(-45deg);
}

.order-pin::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--brand-red);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  min-height: calc(100vh - 78px);
  padding: clamp(36px, 7vw, 92px) clamp(16px, 5vw, 80px) 34px;
  background:
    linear-gradient(110deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.66) 45%, rgba(17, 17, 17, 0.1) 100%),
    linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red) 47%, var(--field) 47%, var(--field) 73%, var(--brand-blue) 73%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 92px);
  color: var(--paper-strong);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 18px clamp(12px, 3vw, 42px);
  pointer-events: none;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.hero::after {
  position: absolute;
  right: clamp(14px, 4vw, 72px);
  bottom: -56px;
  width: min(360px, 54vw);
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  border: 22px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--tomato);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .kicker,
.section-dark .kicker,
.admin-panel .kicker {
  color: var(--cheese);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.7rem, 7.4vw, 6.2rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 rgba(17, 17, 17, 0.22);
}

h2 {
  margin-bottom: 12px;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.75rem, 4.4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.55;
}

.countdown-panel {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-bottom: 26px;
}

.countdown-panel > span {
  color: var(--cheese);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(64px, 1fr));
  gap: 8px;
}

.countdown-grid strong {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 10px 6px;
  color: var(--ink);
  background: var(--cheese);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--brand-blue);
}

.countdown-grid span {
  font-size: clamp(1.35rem, 5vw, 2.1rem);
  line-height: 1;
}

.countdown-grid small {
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.primary-action,
.secondary-action,
.install-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}

.primary-action {
  color: var(--paper-strong);
  background: var(--brand-red);
  box-shadow: 5px 5px 0 var(--mustard);
}

.secondary-action {
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.install-button {
  margin-top: 12px;
  color: var(--ink);
  background: var(--mustard);
}

.full {
  width: 100%;
}

.score-card,
.registration-panel,
.prize-panel,
.admin-panel {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.score-card {
  position: relative;
  align-self: center;
  color: var(--ink);
  padding: 92px 22px 22px;
  transform: none;
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--mustard), var(--shadow);
}

.hero-character {
  position: absolute;
  top: -12px;
  right: 16px;
  width: 142px;
  height: auto;
  opacity: 0.98;
}

.score-card-head,
.match-preview,
.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.score-card-head {
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}

.score-card-head span,
.score-card p,
.form-note {
  color: rgba(17, 17, 17, 0.62);
}

.match-preview {
  padding: 22px 0 12px;
}

.match-preview strong {
  display: grid;
  place-items: center;
  min-width: 92px;
  height: 56px;
  color: var(--paper-strong);
  background: var(--field);
  border-radius: 8px;
  font-size: 1.35rem;
}

.score-card h3 {
  margin: 4px 0 10px;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--brand-red);
  color: var(--paper-strong);
}

.trust-strip div {
  display: grid;
  gap: 4px;
  padding: 22px clamp(16px, 4vw, 40px);
  background: var(--brand-red);
}

.trust-strip strong {
  color: var(--cheese);
  font-size: 1.25rem;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.section {
  padding: clamp(42px, 7vw, 92px) clamp(16px, 5vw, 80px);
}

.section:nth-of-type(odd):not(.section-dark) {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.04) 0 1px, transparent 1px 92px),
    var(--paper);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-copy {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.55;
}

.compact h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.registration-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  padding: clamp(18px, 4vw, 32px);
  border-top: 8px solid var(--brand-red);
}

.login-panel {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.45fr);
  gap: 16px;
  align-items: end;
  max-width: 900px;
  margin-top: 16px;
  padding: clamp(18px, 4vw, 28px);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-top: 8px solid var(--brand-blue);
}

.login-panel h3,
.access-gate h3 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.login-panel .form-note {
  grid-column: 1 / -1;
}

.secondary-dark-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--paper-strong);
  font-weight: 900;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.joined-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 900px;
  margin-top: 18px;
  padding: clamp(18px, 4vw, 28px);
  color: var(--paper-strong);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.joined-panel[hidden] {
  display: none;
}

.joined-panel h3 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.joined-panel p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 850;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--tomato);
  box-shadow: 0 0 0 4px rgba(227, 39, 46, 0.13);
}

.check-row,
.form-note,
.registration-panel .full {
  grid-column: 1 / -1;
}

.check-row {
  grid-template-columns: 22px 1fr;
  align-items: start;
  font-weight: 750;
}

.check-row input {
  min-height: 22px;
  margin: 0;
  accent-color: var(--tomato);
}

.form-note {
  margin: 0;
  font-size: 0.84rem;
}

.section-dark {
  color: var(--paper-strong);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 92px),
    linear-gradient(135deg, rgba(239, 21, 21, 0.32), rgba(15, 143, 85, 0.28)),
    var(--ink);
}

.match-list {
  display: grid;
  gap: 14px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 20px;
}

.sync-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: -4px 0 18px;
  padding: 13px 14px;
  color: var(--paper-strong);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.access-gate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: clamp(18px, 4vw, 28px);
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.access-gate p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.55;
}

.sync-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.sync-strip strong {
  color: var(--brand-blue);
}

.tab-button {
  min-height: 42px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
}

.tab-button.active {
  color: var(--ink);
  background: var(--mustard);
  border-color: var(--mustard);
}

.empty-state {
  padding: 20px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.match-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.match-card.finished {
  background: rgba(99, 196, 239, 0.14);
}

.match-card.upcoming {
  opacity: 0.82;
}

.match-meta {
  display: grid;
  gap: 5px;
}

.match-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.match-meta strong {
  font-size: 1.05rem;
}

.match-meta span,
.match-card small {
  color: rgba(255, 255, 255, 0.64);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  color: var(--paper-strong) !important;
  background: var(--brand-red);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.prediction-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prediction-controls input {
  width: 54px;
  min-height: 42px;
  padding: 0;
  text-align: center;
}

.prediction-controls input:disabled {
  color: rgba(17, 17, 17, 0.58);
  background: rgba(255, 255, 255, 0.62);
}

.save-prediction {
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  font-weight: 900;
  background: var(--mustard);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.save-prediction:disabled {
  cursor: not-allowed;
  opacity: 0.64;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.ranking-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.my-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding: 16px;
  color: var(--paper-strong);
  background: var(--brand-red);
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
}

.my-score span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 850;
}

.my-score strong {
  font-size: 1.25rem;
}

.ranking-list li {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ranking-list li.current-user {
  border-color: var(--brand-red);
  box-shadow: inset 5px 0 0 var(--brand-red);
}

.ranking-list li.ranking-gate {
  grid-template-columns: 42px 1fr auto;
  background: #fff9eb;
}

.rank-login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  color: var(--paper-strong);
  font-weight: 900;
  background: var(--brand-red);
  border-radius: 8px;
}

.rank-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--paper-strong);
  background: var(--brand-red);
  border-radius: 8px;
  font-weight: 950;
}

.rank-user {
  display: grid;
  gap: 3px;
}

.rank-user span {
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.82rem;
}

.rank-points {
  font-size: 1.15rem;
  font-weight: 950;
}

.prize-panel {
  padding: clamp(18px, 4vw, 30px);
  border-top: 8px solid var(--mustard);
}

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

.prize-grid article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 5px 14px;
  align-items: start;
  padding: 14px;
  background: #fff9eb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.prize-grid span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--brand-blue);
  border-radius: 8px;
  font-weight: 950;
}

.prize-grid p {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
}

.coupon-button {
  min-height: 42px;
  color: var(--paper-strong);
  font-weight: 900;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.legal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 16px clamp(16px, 5vw, 80px) 94px;
  color: var(--paper-strong);
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px;
  background: rgba(17, 17, 17, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.mobile-nav a {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: var(--paper-strong);
  font-size: 0.78rem;
  font-weight: 850;
  border-radius: 7px;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: var(--tomato);
}

.mobile-nav a.locked-link {
  color: rgba(255, 255, 255, 0.46);
}

.admin-dialog {
  width: min(92vw, 520px);
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.coupon-dialog {
  width: min(92vw, 460px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.coupon-dialog::backdrop {
  background: rgba(0, 0, 0, 0.64);
}

.coupon-panel {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper-strong);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.coupon-panel h2 {
  margin-bottom: 0;
}

.coupon-panel > strong {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  color: var(--paper-strong);
  background: var(--brand-red);
  border-radius: 8px;
  font-size: clamp(1.3rem, 7vw, 2.1rem);
  line-height: 1;
}

.coupon-panel p:last-child {
  margin-bottom: 0;
  color: rgba(17, 17, 17, 0.62);
}

.close-coupon {
  position: absolute;
  top: 12px;
  right: 12px;
}

.admin-dialog::backdrop {
  background: rgba(0, 0, 0, 0.64);
}

.admin-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.admin-panel .kicker {
  color: var(--tomato);
}

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

.admin-stats div {
  display: grid;
  gap: 2px;
  padding: 12px;
  background: #fff9eb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-stats strong {
  font-size: 1.35rem;
}

.admin-stats span {
  color: rgba(17, 17, 17, 0.6);
  font-size: 0.76rem;
}

@media (max-width: 780px) {
  .topbar {
    padding: 12px 14px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
    line-height: 0.96;
  }

  .score-card {
    transform: none;
  }

  .trust-strip,
  .registration-panel,
  .login-panel,
  .joined-panel,
  .two-column {
    grid-template-columns: 1fr;
  }

  .joined-panel,
  .access-gate {
    align-items: stretch;
    flex-direction: column;
  }

  .match-card {
    grid-template-columns: 1fr;
  }

  .prediction-controls {
    justify-content: space-between;
  }

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

@media (min-width: 980px) {
  .app-shell {
    padding-bottom: 0;
  }

  .mobile-nav {
    display: none;
  }
}
