/* Fonts: load via <link> in each HTML page (avoids render-blocking @import for PageSpeed). */

/* 1. Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "DM Sans", system-ui, sans-serif; font-weight: 400; color: var(--color-text); background: var(--color-bg); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; }
ul { margin: 0 0 1rem; padding-left: 1.25rem; }

/* 2. Variables */
:root {
  --color-bg: #0a0e1a;
  --color-surface: #111827;
  --color-surface-2: #1a2235;
  --color-accent: #f97316;
  --color-accent-2: #3b82f6;
  --color-gold: #f59e0b;
  --color-text: #f1f5f9;
  --color-text-muted: #94a3b8;
  --color-border: #1e2d45;
  --color-success: #10b981;
  --header-h: 72px;
}

/* 3. Typography */
h1, h2, h3, h4, .font-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

/* 4. Layout */
.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* Court pattern (CSS only) */
.court-bg {
  background-color: var(--color-bg);
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(249, 115, 22, 0.06) 47px, rgba(249, 115, 22, 0.06) 48px),
    repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(59, 130, 246, 0.05) 47px, rgba(59, 130, 246, 0.05) 48px);
}

/* 5. Buttons */
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover { background: #ea6c0a; transform: translateY(-2px); text-decoration: none; }
.btn-primary:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.btn-secondary {
  background: var(--color-surface-2);
  color: var(--color-text);
  padding: 12px 24px;
  border-radius: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-border);
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--color-accent-2); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 10px 22px;
  border-radius: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-full { width: 100%; }

/* 6. Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  display: block;
  background: rgba(10, 14, 26, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.site-header.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  border-bottom-color: var(--color-border);
}
/* Row inside same .container as rest of site — matches horizontal gutters */
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.35rem;
  box-sizing: border-box;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-text);
  text-decoration: none;
}
.logo:hover { text-decoration: none; color: var(--color-text); }
.logo span { color: var(--color-accent); }
.logo svg { width: 28px; height: 28px; flex-shrink: 0; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  justify-content: center;
}
.nav-desktop a {
  color: var(--color-text-muted);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.nav-desktop a:hover { color: var(--color-text); text-decoration: none; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

.mobile-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: min(1120px, calc(100% - 2rem));
  top: var(--header-h);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem;
  flex-direction: column;
  gap: 0.75rem;
  box-sizing: border-box;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  color: var(--color-text);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--color-accent); text-decoration: none; }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-actions { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav > .btn-outline[data-open="login"] {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
  }
}

/* 7. Footer */
.site-footer {
  background: #070a12;
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.footer-col p, .footer-col a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.footer-col a { display: block; margin-bottom: 0.35rem; }
.social-links a { word-break: break-all; }
.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.75rem;
}
.payment-row__img {
  height: 26px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
  opacity: 0.9;
}
.footer-bar {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}
.footer-bar a { color: var(--color-text-muted); margin: 0 0.35rem; }

/* 8. Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(10, 14, 26, 0.92) 40%, rgba(10, 14, 26, 0.55) 100%);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(135deg, transparent 48%, rgba(249, 115, 22, 0.12) 49%, transparent 52%),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(59, 130, 246, 0.08) 60px, rgba(59, 130, 246, 0.08) 61px);
}
.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding-block: 4rem;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero p.lead {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 36ch;
  margin-bottom: 1.5rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__visual {
  position: relative;
  justify-self: end;
  max-width: 420px;
  filter: drop-shadow(0 0 24px rgba(249, 115, 22, 0.25));
}
@media (max-width: 900px) {
  .hero__visual { justify-self: center; max-width: 320px; }
}

/* Diagonal section */
.section-clip {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  padding-bottom: 3rem;
}
.section-clip-alt {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding-top: 3rem;
}

/* 9. Cards */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.15), 0 0 24px rgba(59, 130, 246, 0.08);
  border-color: #2a3f63;
}
.card__img { aspect-ratio: 16/10; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.25rem; }
.card__meta { font-size: 0.85rem; color: var(--color-text-muted); }

/* 10. Forms */
input, select, textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  color: var(--color-text);
  font-family: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--color-accent-2);
  outline-offset: 1px;
}
.field-error { color: #f87171; font-size: 0.8rem; margin-top: 0.25rem; }
.form-success { color: var(--color-success); margin-top: 0.75rem; font-weight: 500; }
.form-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: flex-start; }
.form-row input, .form-row button { flex: 1 1 180px; }
.form-disclaimer { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 0.75rem; }
.form-checkbox { display: flex; gap: 0.5rem; align-items: flex-start; margin: 0.75rem 0; }
.form-checkbox input { width: auto; }
.form-link { font-size: 0.9rem; display: inline-block; margin: 0.5rem 0; }

/* Newsletter */
.newsletter-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  margin-block: 3rem;
}

/* 11. Modals */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal[hidden] { display: none !important; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}
.modal__box {
  position: relative;
  z-index: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.75rem;
  width: min(420px, 100%);
  max-height: 90vh;
  overflow-y: auto;
}
.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.25rem;
  cursor: pointer;
}
.modal__box h2 { margin-bottom: 1rem; }

/* 12. Cookie */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__content {
  width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-banner button#cookie-manage {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.cookie-prefs .modal__box { width: min(480px, 100%); }

/* 13. AI Agent */
.ai-agent-widget {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 120;
  font-size: 0.9rem;
}
.ai-agent__trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.4rem 0.9rem 0.4rem 0.4rem;
  color: var(--color-text);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.ai-agent__trigger img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.ai-agent__chat {
  position: absolute;
  bottom: 3.5rem;
  right: 0;
  width: min(340px, calc(100vw - 2rem));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 420px;
}
.ai-agent__chat[hidden] { display: none !important; }
.ai-agent__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.75rem;
  background: var(--color-surface-2);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}
.ai-agent__header button {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
}
.ai-agent__messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ai-msg {
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  max-width: 95%;
}
.ai-msg--bot { background: var(--color-surface-2); align-self: flex-start; }
.ai-msg--user { background: rgba(59, 130, 246, 0.2); align-self: flex-end; }
.ai-agent__input {
  display: flex;
  gap: 0.35rem;
  padding: 0.5rem;
  border-top: 1px solid var(--color-border);
}
.ai-agent__input input { flex: 1; }
.ai-agent__input button {
  background: var(--color-accent);
  border: none;
  color: #fff;
  padding: 0 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

/* 14. Tables */
.table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--color-border); }
table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table th, .data-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.data-table th {
  background: var(--color-surface-2);
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.data-table tr:hover td { background: rgba(26, 34, 53, 0.5); }
.rank-1 td:first-child { color: var(--color-gold); font-weight: 800; box-shadow: inset 3px 0 0 var(--color-gold); }
.rank-2 td:first-child { color: #cbd5e1; font-weight: 800; box-shadow: inset 3px 0 0 #94a3b8; }
.rank-3 td:first-child { color: #fdba74; font-weight: 800; box-shadow: inset 3px 0 0 #ea580c; }
.row-me { background: rgba(59, 130, 246, 0.12); }

/* 15. Accordion */
.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: var(--color-surface);
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--color-surface-2);
  color: var(--color-text);
  border: none;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.accordion-trigger::after {
  content: "+";
  color: var(--color-accent);
  font-size: 1.25rem;
}
.accordion-item.is-open .accordion-trigger::after { content: "−"; }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-panel__inner {
  padding: 0 1.25rem 1rem;
  color: var(--color-text-muted);
}
.accordion-item.is-open .accordion-panel { max-height: 600px; }

/* 16. Badges */
.badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-accent-2);
}
.badge--gold { color: var(--color-gold); border-color: rgba(245, 158, 11, 0.35); }

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.tab-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.tab-btn.is-active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.tab-panel[hidden] { display: none !important; }

/* Filters */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  align-items: center;
}
.filter-bar label { color: var(--color-text-muted); font-size: 0.85rem; margin-right: 0.35rem; }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 640px) {
  .stats-row { grid-template-columns: 1fr; }
}
.stat {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}
.stat__num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--color-accent);
}
.stat__label { color: var(--color-text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* Trust badges */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.trust-item svg { width: 28px; height: 28px; flex-shrink: 0; stroke: var(--color-accent); fill: none; }

/* Page hero inner */
.page-hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; }

.section { padding: 3rem 0; }
.section--surface { background: var(--color-surface); }
.section-title { margin-bottom: 1.5rem; }
.section-title h2 { font-size: 1.75rem; text-transform: uppercase; }
.section-title p { color: var(--color-text-muted); max-width: 60ch; }

.progress {
  height: 6px;
  background: var(--color-surface-2);
  border-radius: 99px;
  overflow: hidden;
  margin: 0.5rem 0;
}
.progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
}

.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }
.pagination button {
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
}
.pagination button.is-active {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Read more / expand panels (multiple can stay open) */
.readmore-panel {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.readmore-panel[hidden] { display: none !important; }
.readmore-panel ul { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.readmore-panel li { margin-bottom: 0.35rem; }
.btn-readmore {
  display: inline-block;
  background: none;
  border: none;
  color: var(--color-accent);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 0.65rem 0;
  margin: 0;
  text-align: left;
}
.btn-readmore:hover { text-decoration: underline; color: #fb923c; }

.contest-guide .card__body h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
}
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
}


.prose p { margin-bottom: 1rem; color: var(--color-text-muted); }
.prose h2, .prose h3 { color: var(--color-text); margin-top: 2rem; }

.countdown { font-family: "Barlow Condensed", sans-serif; font-weight: 700; color: var(--color-gold); letter-spacing: 0.05em; }

.prize-pool { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--color-gold); }

.cta-band {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.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;
}
