html,
body,
#app,
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}

img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  user-select: text !important;
  pointer-events: auto !important;
}



























:root {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  color: #f5f7fb;
  background:
    radial-gradient(circle at top, rgba(239, 36, 72, 0.22), transparent 28%),
    linear-gradient(180deg, #131011 0%, #0a090a 42%, #050505 100%);
  color-scheme: dark;
  --fantasy-red: #ef2448;
  --fantasy-red-dark: #9f0f23;
  --fantasy-red-soft: rgba(239, 36, 72, 0.12);
  --fantasy-green: #1dc561;
  --fantasy-bg: #090708;
  --fantasy-surface: #171112;
  --fantasy-surface-muted: #22191b;
  --fantasy-border: rgba(255, 255, 255, 0.08);
  --fantasy-text: #f7f0f0;
  --fantasy-text-soft: #b9aaad;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html,
body,
#app {
  margin: 0;
  min-height: 100%;
  max-width: 100%;
}

body {
  min-width: 320px;
}

#blade-app,
#blade-app-root {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  padding: 24px;
}

.auth-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 480px);
}

.auth-hero {
  position: relative;
  overflow: hidden;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 140, 92, 0.24), transparent 26%),
    radial-gradient(circle at 80% 30%, rgba(229, 62, 62, 0.2), transparent 22%),
    linear-gradient(140deg, #10161f 0%, #0c1017 44%, #07090d 100%);
}

.auth-hero::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  pointer-events: none;
}

.auth-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffe5dd;
  background: rgba(255, 103, 82, 0.12);
  border: 1px solid rgba(255, 103, 82, 0.25);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.auth-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.auth-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.95;
}

.auth-copy p {
  max-width: 520px;
  color: rgba(245, 247, 251, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}

.hero-tile {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.hero-tile span {
  color: rgba(245, 247, 251, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.auth-panel {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(16, 20, 29, 0.96), rgba(9, 12, 18, 0.96));
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.card {
  width: 100%;
  max-width: 420px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.card p {
  margin: 0 0 24px;
  color: rgba(245, 247, 251, 0.72);
  line-height: 1.55;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.field label {
  font-size: 13px;
  color: rgba(245, 247, 251, 0.82);
}

.field input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 10, 16, 0.86);
  color: #f5f7fb;
  outline: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.field input:focus {
  border-color: rgba(255, 120, 95, 0.8);
  transform: translateY(-1px);
}

.button {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  cursor: pointer;
  color: #f8f2f2;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #20283e 0%, #111827 100%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.button.secondary {
  color: #f5f7fb;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.inline-row {
  display: flex;
  gap: 12px;
}

.status-banner {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  background: linear-gradient(180deg, rgba(28, 18, 19, 0.96), rgba(18, 11, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.status-banner.error {
  color: #ffe0dc;
  background:
    radial-gradient(circle at left top, rgba(239, 36, 72, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(41, 16, 20, 0.98), rgba(24, 10, 12, 0.98));
  border: 1px solid rgba(239, 36, 72, 0.22);
}

.status-banner.success {
  color: #dff7e7;
  background:
    radial-gradient(circle at left top, rgba(29, 197, 97, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(22, 34, 24, 0.98), rgba(12, 20, 13, 0.98));
  border: 1px solid rgba(29, 197, 97, 0.24);
}

.app-layout {
  min-height: 100vh;
  padding: 22px;
}

.app-frame {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(8, 12, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.22);
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff9f68 0%, #ff6348 50%, #e03b3b 100%);
  color: #10151f;
  font-weight: 800;
}

.brand-copy strong {
  display: block;
  font-size: 16px;
}

.brand-copy span {
  color: rgba(245, 247, 251, 0.62);
  font-size: 13px;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(245, 247, 251, 0.78);
  border: 1px solid transparent;
}

.nav-link.router-link-active {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.06);
}

.app-main {
  padding: 28px 26px 34px;
}

.page-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.page-title h1,
.page-title h2 {
  margin: 0;
}

.page-title p {
  margin: 8px 0 0;
  color: rgba(245, 247, 251, 0.68);
  max-width: 720px;
  line-height: 1.6;
}

.match-grid,
.contest-grid {
  display: grid;
  gap: 18px;
}

.match-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.match-card,
.contest-card,
.profile-card,
.placeholder-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 18, 0.84);
}

.match-card {
  padding: 22px;
}

.match-card::after,
.contest-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 159, 104, 0.3), rgba(255, 99, 72, 0.8), rgba(255, 159, 104, 0.3));
}

.match-league {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  color: #ffd9d0;
  background: rgba(255, 103, 82, 0.12);
  border: 1px solid rgba(255, 103, 82, 0.24);
}

.teams-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.team-chip {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.team-chip strong {
  display: block;
  font-size: 26px;
}

.team-chip span {
  display: block;
  margin-top: 6px;
  color: rgba(245, 247, 251, 0.66);
  font-size: 13px;
}

.versus-pill {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(245, 247, 251, 0.76);
  background: rgba(255, 255, 255, 0.06);
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.meta-box {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.meta-box span {
  display: block;
  margin-bottom: 6px;
  color: rgba(245, 247, 251, 0.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.meta-box strong {
  font-size: 14px;
}

.contest-card {
  padding: 22px;
}

.contest-head,
.contest-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.contest-prize {
  font-size: 34px;
  font-weight: 800;
}

.contest-fee {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #ffe8e1;
  background: rgba(255, 255, 255, 0.06);
}

.contest-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.contest-meta .meta-box strong {
  font-size: 16px;
}

.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff9f68, #ff6348);
}

.soft-copy {
  color: rgba(245, 247, 251, 0.66);
}

.empty-state {
  padding: 28px;
  text-align: center;
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top, rgba(239, 36, 72, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(25, 17, 18, 0.98), rgba(15, 10, 10, 0.98));
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
  color: var(--fantasy-text);
}

.profile-card,
.placeholder-card {
  padding: 24px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.profile-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.profile-item span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  color: rgba(245, 247, 251, 0.54);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-item strong {
  font-size: 16px;
}

.action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-hero {
    min-height: 380px;
    padding: 28px;
  }

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

  .app-header,
  .page-title,
  .contest-head,
  .contest-foot {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .page-shell,
  .app-layout {
    padding: 14px;
  }

  .card,
  .match-card,
  .contest-card,
  .profile-card,
  .placeholder-card {
    padding: 18px;
    border-radius: 22px;
  }

  .contest-meta,
  .meta-grid {
    grid-template-columns: 1fr;
  }

  .teams-row {
    grid-template-columns: 1fr;
  }
}

.mobile-page {
  min-height: 100vh;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(215, 25, 45, 0.12), transparent 180px),
    var(--fantasy-bg);
}

.mobile-page--auth {
  display: flex;
  justify-content: center;
  background:
    radial-gradient(circle at top center, rgba(239, 36, 72, 0.18), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #120d0e 0%, #090708 48%, #050505 100%);
}

.mobile-auth-shell,
.mobile-app-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 16px 28px;
  background: linear-gradient(180deg, rgba(11, 8, 9, 0.72), rgba(5, 5, 5, 0.94));
  backdrop-filter: blur(10px);
}

.mobile-auth-shell::before,
.mobile-auth-shell::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(4px);
}

.mobile-auth-shell::before {
  top: 54px;
  right: -34px;
  width: 132px;
  height: 132px;
  background: radial-gradient(circle, rgba(239, 36, 72, 0.3), transparent 68%);
}

.mobile-auth-shell::after {
  left: -30px;
  bottom: 120px;
  width: 116px;
  height: 116px;
  background: radial-gradient(circle, rgba(255, 194, 84, 0.14), transparent 72%);
}

.mobile-auth-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 2px 8px;
  margin-bottom: 18px;
}

.mobile-auth-logo,
.mobile-app-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.mobile-auth-brand h1 {
  margin: 4px 0 0;
  font-size: 29px;
  line-height: 1.02;
}

.mobile-auth-kicker {
  margin: 0;
  color: rgba(255, 172, 186, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.mobile-auth-panel {
  position: relative;
  padding: 22px 18px 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(239, 36, 72, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(34, 21, 23, 0.98), rgba(14, 10, 11, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
}

.mobile-auth-copy,
.mobile-auth-note {
  margin: 0 0 18px;
  color: rgba(245, 247, 251, 0.74);
  font-size: 13px;
  line-height: 1.6;
}

.mobile-auth-note {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(245, 247, 251, 0.6);
}

.mobile-auth-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 18px;
}

.mobile-auth-highlights span {
  min-height: 28px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffdbe2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(239, 36, 72, 0.18);
}

.mobile-field {
  margin-bottom: 16px;
}

.mobile-field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 247, 251, 0.84);
  font-size: 13px;
}

.mobile-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.mobile-prefix {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.mobile-input {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  outline: none;
}

.mobile-input:focus,
.mobile-input-wrap:focus-within {
  border-color: rgba(239, 36, 72, 0.34);
  box-shadow: 0 0 0 3px rgba(239, 36, 72, 0.08);
}

.mobile-input-wrap .mobile-input {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.mobile-input--otp {
  text-align: center;
  letter-spacing: 0.48em;
  font-size: 26px;
  font-weight: 700;
}

.mobile-inline-link {
  padding: 0;
  color: #ffb9c4;
  background: transparent;
  border: 0;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.mobile-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 22px;
  color: rgba(245, 247, 251, 0.84);
  font-size: 13px;
}

.mobile-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--fantasy-red);
}

.mobile-submit {
  min-height: 52px;
  border-radius: 20px;
}

.mobile-otp-meta {
  display: flex;
  justify-content: flex-end;
  min-height: 22px;
  margin: 8px 0 22px;
  color: rgba(245, 247, 251, 0.66);
  font-size: 12px;
}

.mobile-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.mobile-app-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-app-brand strong {
  display: block;
  font-size: 15px;
}

.mobile-app-brand span {
  color: rgba(245, 247, 251, 0.66);
  font-size: 12px;
}

.mobile-app-actions {
  display: flex;
  gap: 10px;
}

.mobile-app-action {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-app-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-lobby-hero {
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 140, 92, 0.26), transparent 35%),
    linear-gradient(140deg, rgba(27, 34, 48, 0.94), rgba(12, 15, 23, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-lobby-hero h1 {
  margin: 8px 0 10px;
  font-size: 30px;
  line-height: 1;
}

.mobile-lobby-hero p {
  margin: 0;
  color: rgba(245, 247, 251, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.mobile-lobby-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mobile-lobby-stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-lobby-stat span {
  display: block;
  margin-bottom: 6px;
  color: rgba(245, 247, 251, 0.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mobile-lobby-stat strong {
  font-size: 16px;
}

.mobile-section-head h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.mobile-section-head p {
  margin: 0;
  color: rgba(245, 247, 251, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

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

.mobile-match-card {
  padding: 18px;
}

.mobile-match-board {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}

.mobile-team-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.mobile-team-column strong {
  font-size: 18px;
}

.mobile-team-column span {
  color: rgba(245, 247, 251, 0.7);
  font-size: 12px;
  line-height: 1.4;
}

.mobile-team-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-team-logo--placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.mobile-match-vs {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff9f68, #ff6348);
}

.mobile-match-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.mobile-match-action {
  min-height: 48px;
}

.mobile-bottom-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.mobile-bottom-nav__item {
  padding: 12px 10px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-bottom-nav__item strong {
  display: block;
  font-size: 12px;
}

.mobile-bottom-nav__item span {
  color: rgba(245, 247, 251, 0.64);
  font-size: 11px;
}

.mobile-bottom-nav__item.router-link-active {
  background: linear-gradient(135deg, rgba(255, 159, 104, 0.18), rgba(224, 59, 59, 0.18));
  border-color: rgba(255, 159, 104, 0.35);
}

.mobile-stack {
  display: grid;
  gap: 14px;
}

.button--small {
  width: auto;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
}

.section-inline-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.section-inline-head h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.section-inline-head p {
  margin: 0;
  color: rgba(245, 247, 251, 0.66);
  font-size: 12px;
  line-height: 1.5;
}

.board-stats,
.builder-role-counts,
.join-summary-card__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.builder-role-counts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.board-stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.board-stat span {
  display: block;
  margin-bottom: 6px;
  color: rgba(245, 247, 251, 0.58);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.board-stat strong {
  font-size: 16px;
}

.mobile-switcher {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 2px 4px;
  scrollbar-width: none;
}

.mobile-switcher::-webkit-scrollbar {
  display: none;
}

.mobile-switcher__tab {
  min-width: max-content;
  min-height: 36px;
  padding: 8px 0 12px;
  border-radius: 0;
  color: var(--fantasy-text-soft);
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  box-shadow: none;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.mobile-switcher__tab--compact {
  font-size: 12px;
}

.mobile-switcher__tab--active {
  color: #fff;
  background: transparent;
  border-bottom-color: var(--fantasy-red);
}

.contest-grid--mobile {
  grid-template-columns: 1fr;
}

.contest-card--mobile {
  padding: 18px;
  border-radius: 24px;
}

.match-header-card,
.join-summary-card,
.builder-hero,
.my-contest-card,
.team-card,
.captain-card,
.player-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(33, 24, 26, 0.98), rgba(17, 12, 13, 0.98));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.match-header-card,
.join-summary-card,
.builder-hero,
.my-contest-card {
  padding: 18px;
}

.match-header-meta h2,
.join-summary-card__top h2,
.builder-hero__copy h2 {
  margin: 8px 0 6px;
}

.match-header-meta p,
.builder-hero__copy p {
  margin: 0;
  color: rgba(245, 247, 251, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.match-header-board {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.match-header-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.match-header-team strong {
  font-size: 18px;
}

.match-header-team span {
  color: rgba(245, 247, 251, 0.68);
  font-size: 12px;
  line-height: 1.4;
}

.match-header-logo,
.match-header-logo--placeholder {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.match-header-logo--placeholder,
.team-card-player-image--placeholder,
.player-card-avatar span {
  display: grid;
  place-items: center;
  font-weight: 700;
}

.match-header-vs {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--fantasy-red), var(--fantasy-red-dark));
  font-size: 12px;
  font-weight: 700;
}

.builder-hero--dream {
  gap: 14px;
}

.builder-hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.builder-hero__selected {
  min-width: 58px;
  min-height: 32px;
  padding: 6px 12px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  background: linear-gradient(180deg, rgba(239, 36, 72, 0.9), rgba(159, 15, 35, 0.9));
}

.builder-progress {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 6px;
  margin: 18px 0 14px;
}

.builder-progress__step {
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(245, 247, 251, 0.4);
  background: rgba(255, 255, 255, 0.06);
  font-size: 10px;
  font-weight: 700;
}

.builder-progress__step--active {
  color: #fff;
  background: linear-gradient(180deg, var(--fantasy-red), var(--fantasy-red-dark));
}

.team-card,
.captain-card,
.player-card {
  padding: 16px;
}

.player-card--selected {
  border-color: rgba(239, 36, 72, 0.5);
  box-shadow: inset 0 0 0 1px rgba(239, 36, 72, 0.18);
}

.team-card--selected {
  border-color: rgba(239, 36, 72, 0.44);
  box-shadow: 0 12px 30px rgba(239, 36, 72, 0.14);
}

.team-card-head,
.captain-card,
.player-card,
.contest-head,
.contest-foot,
.join-summary-card__top,
.preview-sheet__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.team-card-head strong,
.my-contest-card__team strong {
  display: block;
  font-size: 14px;
}

.team-card-head span,
.my-contest-card__team span {
  color: rgba(245, 247, 251, 0.62);
  font-size: 12px;
}

.team-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.team-card-chip,
.team-card-icon,
.captain-card-pill,
.player-card-toggle {
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.team-card-chip--active,
.captain-card-pill--active {
  color: #fff;
  background: linear-gradient(180deg, var(--fantasy-red), var(--fantasy-red-dark));
  border-color: transparent;
}

.team-card-captains {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.team-card-captain {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px;
  align-items: center;
}

.team-card-badge {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, var(--fantasy-red), var(--fantasy-red-dark));
  font-size: 11px;
  font-weight: 800;
}

.team-card-player-image {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.team-card-captain span {
  display: block;
  color: rgba(245, 247, 251, 0.56);
  font-size: 11px;
}

.team-card-captain strong {
  font-size: 13px;
}

.team-card-role-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.team-card-role {
  padding: 12px 10px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
}

.team-card-role span {
  display: block;
  margin-bottom: 6px;
  color: rgba(245, 247, 251, 0.54);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-card-role strong {
  font-size: 16px;
}

.player-card-main,
.captain-card-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.player-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.player-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-card-copy,
.captain-card-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.player-card-copy strong,
.captain-card-copy strong {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-card-copy span,
.captain-card-copy span {
  color: rgba(245, 247, 251, 0.64);
  font-size: 12px;
}

.player-card-copy__top,
.captain-card-copy__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.player-card-copy__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.player-card-team {
  min-width: 38px;
  min-height: 22px;
  padding: 4px 8px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.player-card-status {
  color: rgba(245, 247, 251, 0.56);
}

.player-card-status--live {
  color: #8ef0a8;
}

.player-card-toggle {
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
}

.player-card--selected .player-card-toggle {
  background: linear-gradient(180deg, var(--fantasy-red), var(--fantasy-red-dark));
  border-color: transparent;
}

.captain-card-actions {
  display: flex;
  gap: 10px;
}

.preview-sheet {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.preview-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.preview-sheet__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 420px;
  margin: 0 auto;
  padding: 18px 16px 24px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(180deg, #111722, #090d14);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-sheet__header h3 {
  margin: 8px 0 0;
}

.preview-sheet__body {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.preview-sheet__section {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.preview-sheet__section-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.preview-sheet__players {
  display: grid;
  gap: 8px;
}

.preview-sheet__player {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(245, 247, 251, 0.84);
  font-size: 13px;
}

.preview-sheet__player small {
  color: rgba(245, 247, 251, 0.56);
}

.preview-sheet--team-field .preview-sheet__panel {
  padding: 0;
  max-width: 390px;
  height: min(calc(100dvh - 18px), 680px);
  max-height: calc(100dvh - 18px);
  border-radius: 26px 26px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #131c2d 0%, #0a1018 100%);
}

.team-preview-field {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  height: 100%;
}

.team-preview-field__header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px 10px;
  background: linear-gradient(180deg, rgba(19, 28, 45, 0.98), rgba(14, 20, 31, 0.94));
}

.team-preview-field__close {
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #f7f8fa;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.team-preview-field__heading {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 4px;
}

.team-preview-field__title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.team-preview-field__title-row h3 {
  margin: 0;
  min-width: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.team-preview-field__team-badge {
  min-width: 38px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.team-preview-field__heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.team-preview-field__stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
  padding: 0 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 22, 34, 0.96), rgba(12, 18, 28, 0.92));
}

.team-preview-field__stats--with-total {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.team-preview-field__metric {
  display: grid;
  gap: 2px;
}

.team-preview-field__metric span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
}

.team-preview-field__metric strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.team-preview-field__metric--split {
  min-width: 110px;
  justify-items: center;
  text-align: center;
}

.team-preview-field__metric--total {
  justify-items: end;
  text-align: right;
}

.team-preview-field__metric--split span {
  font-size: 11px;
  letter-spacing: 0.04em;
}

.team-preview-field__pitch {
  min-height: 0;
  overflow: hidden;
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 44px, rgba(255, 255, 255, 0.015) 44px 88px),
    linear-gradient(180deg, #7ac75f 0%, #5dad49 38%, #40853c 72%, #356f34 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.team-preview-field__role {
  display: grid;
  gap: 6px;
}

.team-preview-field__role h4 {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.team-preview-field__players {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 6px;
}

.team-preview-player {
  flex: 0 1 64px;
  max-width: 64px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.team-preview-player__visual {
  position: relative;
  min-height: 48px;
  display: grid;
  place-items: end center;
}

.team-preview-player__image {
  width: 34px;
  height: 48px;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.24));
}

.team-preview-player__image--fallback {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(14, 20, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.team-preview-player__badge {
  position: absolute;
  top: 0;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #253347;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.team-preview-player__badge--vice {
  min-width: 22px;
}

.team-preview-player__name {
  width: 100%;
  min-height: 24px;
  margin-top: 4px;
  padding: 4px 5px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  color: #121212;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.15;
}

.team-preview-player__meta {
  margin-top: 2px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.team-preview-field__empty {
  padding: 18px 12px;
  border-radius: 18px;
  background: rgba(15, 22, 34, 0.18);
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 390px) {
  .preview-sheet--team-field .preview-sheet__panel {
    max-width: 100%;
    height: calc(100dvh - 10px);
    max-height: calc(100dvh - 10px);
    border-radius: 22px 22px 0 0;
  }

  .team-preview-field__header {
    gap: 10px;
    padding: 16px 12px 12px;
  }

  .team-preview-field__title-row h3 {
    font-size: 15px;
  }

  .team-preview-field__stats {
    gap: 6px;
    padding: 0 12px 8px;
  }

  .team-preview-field__metric strong {
    font-size: 13px;
  }

  .team-preview-field__metric span,
  .team-preview-field__metric--split span {
    font-size: 10px;
  }

  .team-preview-field__pitch {
    padding: 10px 8px 12px;
    gap: 8px;
  }

  .team-preview-player {
    flex-basis: 60px;
    max-width: 60px;
  }

  .team-preview-player__image {
    width: 32px;
    height: 44px;
  }

  .team-preview-player__name {
    font-size: 9px;
  }

  .team-preview-player__meta {
    font-size: 10px;
  }
}

.sticky-action-bar {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 0 6px;
  background: linear-gradient(180deg, rgba(9, 7, 8, 0), rgba(9, 7, 8, 0.94) 35%);
}

.sticky-action-bar .button {
  min-height: 48px;
  border-radius: 999px;
  font-size: 14px;
}

.sticky-action-bar .button:not(.secondary) {
  border-color: transparent;
  color: #111;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.sticky-action-bar .button.secondary {
  color: #fff;
  background: #151824;
  border-color: rgba(255, 255, 255, 0.08);
}

.my-contest-card__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.my-contest-card__head strong {
  display: block;
  font-size: 16px;
}

.my-contest-card__head span {
  color: rgba(245, 247, 251, 0.64);
  font-size: 12px;
}

.my-contest-card__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.my-contest-card__teams {
  display: grid;
  gap: 10px;
}

.my-contest-card__team {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.my-contest-card__team small {
  display: block;
  margin-top: 6px;
  color: rgba(245, 247, 251, 0.56);
  font-size: 11px;
}

@media (max-width: 420px) {
  .mobile-auth-shell {
    padding: 18px 14px 22px;
  }

  .mobile-auth-brand {
    gap: 12px;
    padding-top: 14px;
    margin-bottom: 16px;
  }

  .mobile-auth-logo {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .mobile-auth-brand h1 {
    font-size: 25px;
  }

  .mobile-auth-panel {
    padding: 18px 15px 18px;
    border-radius: 24px;
  }

  .mobile-auth-copy,
  .mobile-auth-note {
    font-size: 12px;
  }

  .mobile-auth-highlights {
    gap: 6px;
    margin-bottom: 16px;
  }

  .mobile-auth-highlights span {
    min-height: 26px;
    padding: 5px 9px;
    font-size: 9px;
  }

  .mobile-input,
  .mobile-input-wrap {
    border-radius: 16px;
  }

  .mobile-input {
    min-height: 50px;
  }

  .mobile-input--otp {
    font-size: 22px;
    letter-spacing: 0.38em;
  }

  .notification-screen {
    gap: 10px;
    padding-bottom: 1.1rem;
  }

  .notification-card {
    gap: 0.75rem;
    padding: 0.8rem;
    border-radius: 20px;
  }

  .notification-card__leading {
    width: 2.7rem;
    height: 2.7rem;
    flex-basis: 2.7rem;
  }

  .notification-card__body strong {
    font-size: 0.82rem;
  }

  .notification-card__body p {
    font-size: 0.72rem;
  }

  .reward-screen {
    gap: 10px;
    padding-top: 8px;
  }

  .reward-screen__hero-card,
  .reward-screen__promo-card,
  .reward-screen__action-card {
    padding: 14px;
    border-radius: 16px;
  }

  .reward-screen h2 {
    font-size: 18px;
  }

  .reward-screen__hero-card > p,
  .reward-screen__copy {
    font-size: 11px;
  }

  .reward-screen h3 {
    font-size: 13px;
  }

  .reward-screen__code {
    min-height: 52px;
    padding: 10px 10px 10px 12px;
    border-radius: 16px;
  }

  .reward-screen__gift {
    width: min(150px, 50vw);
  }

  .reward-screen__code strong {
    font-size: 12px;
  }

  .reward-screen__code button {
    min-width: 74px;
    min-height: 38px;
    font-size: 12px;
  }

  .reward-screen__share {
    min-height: 46px;
    border-radius: 16px;
    font-size: 12px;
  }

  .reward-screen__messages {
    gap: 6px;
  }

  .reward-screen__referral-summary {
    gap: 8px;
  }

  .reward-screen__summary-card,
  .reward-screen__referral-panel {
    padding: 14px;
    border-radius: 16px;
  }

  .reward-screen__summary-card strong {
    font-size: 16px;
  }

  .reward-screen__referral-head h3 {
    font-size: 14px;
  }

  .reward-screen__referral-item {
    padding: 11px 12px;
  }

  .reward-screen__referral-copy strong {
    font-size: 13px;
  }

  .reward-screen__referral-amount strong {
    font-size: 14px;
  }

  .notification-screen {
    gap: 8px;
    padding-bottom: 0.8rem;
  }

  .notification-screen__header {
    min-height: 50px;
    padding: 6px 12px;
  }

  .notification-screen__list {
    gap: 8px;
  }

  .notification-card {
    padding: 0.75rem 0.8rem;
    border-radius: 16px;
  }

  .notification-card__leading {
    width: 2.4rem;
    height: 2.4rem;
    flex-basis: 2.4rem;
    border-radius: 12px;
  }

  .notification-card__body strong {
    font-size: 0.78rem;
  }

  .notification-card__body p {
    font-size: 0.7rem;
  }

  .notification-card__body span {
    font-size: 0.64rem;
  }

  .notification-empty {
    min-height: calc(100vh - 210px);
    padding: 1rem 1rem 1.5rem;
  }

  .notification-empty__image {
    width: min(62vw, 14rem);
  }

  .notification-empty strong {
    font-size: 0.92rem;
  }

  .notification-empty p {
    font-size: 0.74rem;
  }

  .notification-empty__button {
    min-width: 7rem;
    min-height: 46px;
    border-radius: 16px;
  }

  .not-found-screen {
    min-height: calc(100vh - 32px);
    padding: 22px 16px;
    border-radius: 24px;
  }

  .not-found-screen h2 {
    font-size: 24px;
  }

  .not-found-screen p {
    font-size: 12px;
  }

  .board-stats,
  .join-summary-card__grid,
  .my-contest-card__meta {
    grid-template-columns: 1fr;
  }

  .builder-role-counts,
  .team-card-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .match-header-board,
  .mobile-match-board {
    grid-template-columns: 1fr;
  }

  .match-header-vs,
  .mobile-match-vs {
    margin: 0 auto;
  }

  .section-inline-head,
  .sticky-action-bar {
    grid-template-columns: 1fr;
    display: grid;
  }

  .mobile-switcher {
    gap: 14px;
  }

  .builder-progress {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.dashboard-page {
  background-color: var(--fantasy-bg);
}

.mobile-inner-shell {
  width: 100%;
  max-width: 420px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--fantasy-bg);
}

.mobile-inner-shell--with-bottom-nav {
  padding-bottom: 84px;
}

.mobile-inner-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 10px 24px;
}

.mobile-page .app-layout {
  min-height: 100vh;
  padding: 0;
}

.mobile-page .app-frame {
  width: 100%;
  max-width: 420px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--fantasy-bg);
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.mobile-page .page-shell {
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 10px 24px;
}

.dashboard-shell {
  width: 100%;
  max-width: 420px;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 84px;
  background: var(--fantasy-bg);
}

.dashboard-appbar {
  position: sticky;
  top: 0;
  z-index: 45;
  min-height: 64px;
  padding: 12px 14px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(20, 14, 15, 0.98) 0%, rgba(9, 7, 8, 0.98) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.dashboard-appbar__avatar {
  border: 0;
  background: transparent;
  padding: 0;
}

.dashboard-appbar__wallet {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  border-radius: 14px;
  border: 1px solid rgba(239, 36, 72, 0.18);
  background: linear-gradient(180deg, rgba(51, 25, 29, 0.98), rgba(29, 16, 18, 0.98));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.dashboard-appbar__avatar {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.dashboard-appbar__avatar-image,
.dashboard-appbar__avatar-fallback {
  position: absolute;
  inset: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  object-fit: cover;
  border-radius: 999px;
  background: #1d1718;
  color: #fff;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.14);
}

.dashboard-appbar__avatar-image[hidden],
.dashboard-appbar__avatar-fallback[hidden] {
  display: none !important;
}

.dashboard-appbar__avatar-badge {
  position: absolute;
  right: -4px;
  bottom: -6px;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.dashboard-appbar__greeting {
  flex: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-appbar__wallet-main {
  min-width: 98px;
  min-height: 38px;
  padding: 7px 4px 6px 10px;
  display: grid;
  gap: 2px;
  justify-items: end;
  border: 0;
  background: transparent;
  flex: 1;
}

.dashboard-appbar__wallet-plus {
  width: 32px;
  height: 32px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139, 255, 179, 0.24);
  border-radius: 10px;
  background: linear-gradient(180deg, #3fdb72 0%, #24b153 58%, #179241 100%);
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  box-shadow:
    0 8px 16px rgba(21, 130, 60, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  margin-right: 3px;
}

.dashboard-appbar__wallet-label {
  color: rgba(255, 244, 245, 0.68);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dashboard-appbar__wallet-amount {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.dashboard-shell__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 10px 10px;
}

.home-lobby {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-lobby__sticky-header {
  position: sticky;
  top: 68px;
  z-index: 32;
  isolation: isolate;
  margin: -10px -10px 0;
  padding: 6px 10px 12px;
}

.home-lobby__sticky-header::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 9, 10, 1) 0%, rgba(12, 9, 10, 0.98) 74%, rgba(12, 9, 10, 0.94) 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.dashboard-section-title h2 {
  margin: 0;
  color: var(--fantasy-text);
  font-size: 17px;
  font-weight: 800;
}

.dashboard-section-title p {
  margin: 6px 0 0;
  color: var(--fantasy-text-soft);
  font-size: 12px;
}

.home-banner {
  display: grid;
  gap: 10px;
}

.home-banner__viewport {
  height: 132px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.home-banner__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
}

.home-banner__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.home-banner__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-banner__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: -18px;
  padding-bottom: 4px;
  z-index: 1;
}

.home-banner__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  opacity: 0.72;
}

.home-banner__dot--active {
  background: var(--fantasy-red);
  opacity: 1;
}

.home-upcoming-carousel {
  display: grid;
  gap: 8px;
  margin: 0 -2px;
}

.home-upcoming-carousel__viewport {
  overflow: hidden;
}

.home-upcoming-carousel__track {
  display: flex;
  width: 100%;
  transition: transform 0.45s ease;
}

.home-upcoming-carousel__page {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.home-upcoming-card {
  width: 90%;
  min-height: 92px;
  padding: 10px 8px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  border: 1px solid var(--fantasy-border);
  background: var(--fantasy-surface);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.home-upcoming-card__league {
  color: rgba(255, 241, 242, 0.72);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.home-upcoming-card__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.home-upcoming-card__team {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.home-upcoming-card__team--right {
  justify-content: flex-end;
}

.home-upcoming-card__logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.home-upcoming-card__logo--placeholder {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.home-upcoming-card__code {
  min-width: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-upcoming-card__separator {
  min-width: 80px;
  min-height: 34px;
  display: grid;
  place-items: center;
}

.home-upcoming-card__separator--banner {
  min-width: 110px;
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-upcoming-card__vs-image {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.home-upcoming-card__banner {
  width: 100%;
  max-height: 66px;
  object-fit: contain;
}

.home-upcoming-card__countdown {
  color: var(--fantasy-red);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.home-upcoming-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: -2px;
}

.home-upcoming-carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  opacity: 0.72;
}

.home-upcoming-carousel__dot--active {
  width: 20px;
  background: var(--fantasy-red);
  opacity: 1;
}

@media (max-width: 420px) {
  .home-lobby__sticky-header {
    top: 64px;
    margin: -10px -10px 0;
    padding: 6px 10px 10px;
  }

  .home-upcoming-card {
    width: 90%;
    min-height: 88px;
    padding: 9px 8px 8px;
    border-radius: 15px;
  }

  .home-upcoming-card__league {
    font-size: 8px;
  }

  .home-upcoming-card__logo {
    width: 32px;
    height: 32px;
  }

  .home-upcoming-card__code {
    font-size: 18px;
  }

  .home-upcoming-card__countdown {
    font-size: 10px;
  }
}

.dashboard-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: min(360px, calc(100vw - 24px));
  height: 70px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 2px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(44, 27, 29, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  z-index: 30;
}

.dashboard-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--fantasy-text-soft);
  text-align: center;
}

.dashboard-bottom-nav__icon-wrap {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.dashboard-bottom-nav__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.78;
}

.dashboard-bottom-nav__label {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.05;
}

.dashboard-bottom-nav__item--active .dashboard-bottom-nav__icon-wrap {
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, rgba(239, 36, 72, 0.28), rgba(159, 15, 35, 0.28));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dashboard-bottom-nav__item--active .dashboard-bottom-nav__icon {
  opacity: 1;
}

.dashboard-bottom-nav__item--active .dashboard-bottom-nav__label {
  color: #fff;
}

.flutter-match-card {
  padding: 14px 12px;
  border: 1px solid var(--fantasy-border);
  border-radius: 18px;
  background: var(--fantasy-surface);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.flutter-match-card__ribbon {
  display: flex;
  align-items: center;
  gap: 6px;
}

.flutter-match-card__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.flutter-match-card__title {
  min-height: 28px;
  max-width: 180px;
  padding: 6px 10px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #e6c7cc;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(239, 36, 72, 0.28);
  background: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flutter-match-card__teams {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 180px) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 16px 0 14px;
}

.flutter-match-card__team {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.flutter-match-card__team--right {
  justify-content: flex-end;
}

.flutter-match-card__logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.flutter-match-card__logo--placeholder {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--fantasy-text);
  font-size: 12px;
  font-weight: 700;
}

.flutter-match-card__team-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.flutter-match-card__team-copy--right {
  align-items: flex-end;
  text-align: right;
}

.flutter-match-card__code {
  color: var(--fantasy-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flutter-match-card__center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flutter-match-card__banner {
  width: 100%;
  min-width: 200px;
  height: 74px;
  max-height: 75px;
  object-fit: cover;
  /* border-radius: 14px; */
  /* border: 1px solid rgba(255, 255, 255, 0.08); */
  background: rgba(255, 255, 255, 0.04);
}

.flutter-match-card__versus {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.flutter-match-card__versus img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.flutter-match-card__footer {
  display: grid;
  grid-template-columns: minmax(68px, auto) minmax(128px, 1.2fr) minmax(68px, auto);
  gap: 8px;
  align-items: center;
}

.flutter-match-card__status,
.flutter-match-card__prize {
  min-height: 28px;
  min-width: 78px;
  padding: 7px 10px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--fantasy-border);
  color: var(--fantasy-text);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.flutter-match-card__status {
  background: rgba(239, 36, 72, 0.12);
  color: #ff637f;
}

.flutter-match-card__status--live {
  background: rgba(29, 197, 97, 0.12);
  border-color: rgba(29, 197, 97, 0.22);
  color: #71e3a2;
}

.flutter-match-card__prize {
  background: rgba(255, 255, 255, 0.05);
}

.flutter-match-card__time {
  min-width: 0;
  max-width: 138px;
  min-height: 34px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  justify-self: center;
  border-radius: 10px;
  color: var(--fantasy-text);
  background: var(--fantasy-surface-muted);
  border: 1px solid var(--fantasy-border);
}

.flutter-match-card__time img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.flutter-match-card__time span {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.contest-appbar {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 60px;
  margin: 0 -10px 12px;
  padding: 12px 12px 10px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  background: linear-gradient(180deg, rgba(20, 14, 15, 0.98) 0%, rgba(9, 7, 8, 0.98) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.contest-appbar__icon,
.contest-appbar__wallet-main {
  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contest-appbar__wallet-group {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
}

.contest-appbar__icon:hover,
.contest-appbar__wallet-main:hover,
.dashboard-appbar__wallet-plus:hover,
.contest-appbar__wallet-plus:hover,
.flutter-subpage__back:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(31, 31, 31, 0.18);
}

.contest-appbar__icon:active,
.contest-appbar__wallet-main:active,
.dashboard-appbar__wallet-plus:active,
.contest-appbar__wallet-plus:active,
.flutter-subpage__back:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(31, 31, 31, 0.12);
}

.contest-appbar__icon {
  justify-self: start;
}

.contest-appbar__title strong,
.contest-appbar__title span {
  display: block;
  color: #fff;
}

.contest-appbar__title strong {
  font-size: 13px;
}

.contest-appbar__title span {
  margin-top: 2px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
}

.contest-appbar__icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contest-appbar__wallet {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
  border-radius: 12px;
  border: 1px solid rgba(239, 36, 72, 0.16);
  background: linear-gradient(180deg, rgba(47, 22, 25, 0.98), rgba(27, 15, 16, 0.98));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.contest-appbar__wallet-main {
  width: auto;
  min-width: 86px;
  height: auto;
  min-height: 34px;
  padding: 7px 4px 6px 10px;
  justify-items: end;
  gap: 2px;
  border: 0;
  background: transparent;
}

.contest-appbar__wallet-main span {
  color: rgba(255, 244, 245, 0.64);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.contest-appbar__wallet-main strong {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.contest-appbar__wallet-plus {
  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139, 255, 179, 0.24);
  border-radius: 10px;
  background: linear-gradient(180deg, #3fdb72 0%, #24b153 58%, #179241 100%);
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  box-shadow:
    0 8px 16px rgba(21, 130, 60, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  margin-right: 3px;
}

.flutter-tab-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(320px, 100%);
  min-height: 48px;
  margin: 0 auto 14px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(24, 16, 17, 0.98), rgba(13, 9, 10, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.flutter-tab-switcher__tab {
  border: 0;
  color: var(--fantasy-text-soft);
  font-size: 12px;
  font-weight: 700;
  background: transparent;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.flutter-tab-switcher__tab--active {
  color: #fff;
  background: linear-gradient(180deg, #b3132d, #730d1d);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.flutter-contest-list,
.flutter-team-list {
  padding: 10px;
}

.flutter-contest-list__items,
.flutter-team-list__items {
  display: grid;
  gap: 8px;
}

.flutter-team-list__footer,
.flutter-join-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.flutter-primary-button,
.flutter-secondary-button {
  min-width: 140px;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.flutter-primary-button {
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #111;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.flutter-secondary-button {
  border: 1px solid var(--fantasy-border);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.flutter-primary-button:disabled,
.flutter-secondary-button:disabled {
  opacity: 0.6;
}

.flutter-contest-card {
  padding: 14px;
  border: 1px solid var(--fantasy-border);
  border-radius: 18px;
  background: var(--fantasy-surface);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.flutter-contest-card__top,
.flutter-contest-card__row,
.flutter-contest-card__spots,
.flutter-contest-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.flutter-contest-card__top strong {
  color: var(--fantasy-text);
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

.flutter-contest-card__badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flutter-contest-card__lineup,
.flutter-contest-card__entry {
  min-height: 30px;
  border-radius: 10px;
}

.flutter-contest-card__lineup {
  width: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 36, 72, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.flutter-contest-card__lineup img {
  width: 26px;
  height: 18px;
  object-fit: contain;
}

.flutter-contest-card__entry {
  min-width: 64px;
  padding: 6px 12px;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  white-space: nowrap;
}

.flutter-contest-card__row {
  margin-top: 16px;
  color: var(--fantasy-text);
  font-size: 12px;
}

.flutter-contest-card__row strong,
.flutter-contest-card__spots span,
.flutter-contest-card__spots strong {
  white-space: nowrap;
}

.flutter-contest-card__spots {
  margin-top: 10px;
  color: var(--fantasy-text-soft);
  font-size: 10px;
}

.flutter-contest-card__spots span {
  color: var(--fantasy-red);
  font-weight: 700;
}

.flutter-contest-card__progress {
  height: 5px;
  overflow: hidden;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.flutter-contest-card__progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fantasy-red), #f25363);
}

.flutter-contest-card__meta {
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.flutter-contest-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--fantasy-text-soft);
  font-size: 10px;
  min-width: 0;
  line-height: 1.2;
}

.flutter-contest-card__meta-item img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.flutter-team-card {
  min-height: 170px;
  padding: 8px 15px 10px;
  border-radius: 10px;
  background: url('/blade-frontend/images/teambg.png') center / cover no-repeat;
  cursor: pointer;
}

.flutter-team-card--selected {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26) inset;
}

.flutter-team-card__top,
.flutter-team-card__actions,
.flutter-team-card__middle,
.flutter-team-card__roles {
  display: flex;
  align-items: center;
}

.flutter-team-card__top {
  justify-content: space-between;
  gap: 12px;
}

.flutter-team-card__top strong {
  color: #fff;
  font-size: 14px;
}

.flutter-team-card__actions {
  gap: 10px;
}

.flutter-team-card__icon,
.flutter-team-card__radio {
  border: 0;
  background: transparent;
}

.flutter-team-card__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.flutter-team-card__radio {
  min-width: 62px;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.42);
}

.flutter-team-card__middle {
  margin-top: 16px;
  justify-content: space-between;
  gap: 12px;
}

.flutter-team-card__captain {
  position: relative;
  width: 60px;
  display: flex;
  justify-content: center;
}

.flutter-team-card__captain-badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #f8cb46;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.6);
}

.flutter-team-card__captain-image {
  width: 28px;
  height: 62px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  background: #a8a8a8;
}

.flutter-team-card__captain-image--placeholder {
  display: grid;
  place-items: center;
  color: #2e2e2e;
  font-weight: 700;
}

.flutter-team-card__count-box {
  width: 48px;
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.24);
}

.flutter-team-card__count-box span {
  font-size: 14px;
}

.flutter-team-card__count-box strong {
  font-size: 22px;
}

.flutter-team-card__roles {
  margin-top: 18px;
  justify-content: space-between;
  gap: 10px;
}

.flutter-team-card__roles div {
  display: flex;
  gap: 4px;
  align-items: center;
}

.flutter-team-card__roles span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
}

.flutter-team-card__roles strong {
  color: #fff;
  font-size: 14px;
}

.flutter-join-hero {
  padding: 12px 18px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(36, 24, 26, 0.98), rgba(16, 11, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.flutter-join-hero__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.flutter-join-hero__teams strong {
  color: #fff;
  font-size: 14px;
}

.flutter-join-hero__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.flutter-join-hero__team img {
  width: 35px;
  height: 35px;
  object-fit: cover;
}

.flutter-join-hero__team span {
  color: #fff;
  font-size: 10px;
  text-align: center;
}

.flutter-join-heading {
  padding: 0 10px;
}

.flutter-join-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 15px;
}

.flutter-join-wallet {
  margin: 0 10px;
  padding: 15px 12px;
  border-radius: 20px 20px 0 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(32, 24, 39, 0.98), rgba(18, 13, 19, 0.98));
}

.flutter-join-wallet div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.flutter-join-wallet span,
.flutter-join-wallet strong {
  color: #2e2e2e;
  font-size: 12px;
}

.flutter-join-wallet__fee {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #2e2e2e;
}

.select-team-screen {
  margin: 0 -10px -24px;
  padding: 0 10px 20px;
  display: grid;
  gap: 12px;
  background: #fff;
  border-radius: 18px 18px 0 0;
}

.select-team-screen__toolbar,
.select-team-screen__wallet {
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.select-team-screen__copy {
  display: grid;
  gap: 4px;
}

.select-team-screen__copy strong {
  color: #111;
  font-size: 16px;
}

.select-team-screen__copy span,
.select-team-screen__wallet span {
  color: #728091;
  font-size: 12px;
}

.select-team-screen__create {
  min-width: 112px;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #111927;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.select-team-screen__create--empty {
  min-width: 148px;
  background: #fff;
  color: #111927;
  box-shadow: 0 10px 22px rgba(17, 25, 39, 0.12);
}

.select-team-screen__empty-state {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.select-team-screen__empty-action {
  min-width: 148px;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111927;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(17, 25, 39, 0.12);
}

.select-team-screen__strip {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 14px;
  background: #eef5ff;
  color: #516173;
}

.select-team-screen__strip span,
.select-team-screen__strip strong {
  font-size: 12px;
  font-weight: 700;
}

.select-team-screen__wallet strong {
  display: block;
  margin-top: 2px;
  color: #111;
  font-size: 14px;
}

.select-team-screen__list {
  display: grid;
  gap: 14px;
}

.select-team-screen__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.select-team-screen__row .flutter-team-card {
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.select-team-screen__row .flutter-team-card--selected {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.select-team-screen__radio {
  width: 28px;
  height: 28px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 2px solid rgba(87, 98, 112, 0.5);
  border-radius: 999px;
  background: #fff;
}

.select-team-screen__radio span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: transparent;
}

.select-team-screen__radio--active {
  border-color: #23b14d;
}

.select-team-screen__radio--active span {
  background: #23b14d;
}

.select-team-screen__footer {
  position: sticky;
  bottom: 0;
  margin: 6px -10px -4px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(250, 250, 250, 0.98);
  backdrop-filter: blur(12px);
}

.select-team-screen__footer-copy {
  display: grid;
  gap: 4px;
}

.select-team-screen__footer-copy span {
  color: #7b7b7b;
  font-size: 11px;
}

.select-team-screen__footer-copy strong {
  color: #111;
  font-size: 16px;
}

.select-team-screen__join {
  min-width: 100px;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: #1db954;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.select-team-screen__join:disabled,
.select-team-screen__create:disabled {
  opacity: 0.55;
}

.flutter-my-contest-card {
  overflow: hidden;
  border: 1px solid rgba(168, 168, 168, 0.4);
  border-radius: 8px;
  background: #4e4a4a;
}

.flutter-my-contest-card__head {
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #252326;
}

.flutter-my-contest-card__head strong {
  color: #fff;
  font-size: 18px;
}

.flutter-my-contest-card__entry {
  min-width: 89px;
  min-height: 30px;
  padding: 6px 12px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  border: 1px solid #33c300;
  color: #f8cb46;
  font-size: 14px;
  font-weight: 700;
  background: rgba(51, 195, 0, 0.8);
}

.flutter-my-contest-card__body {
  padding: 15px 8px 12px;
}

.flutter-my-contest-card__name {
  display: block;
  color: #fff;
  font-size: 10px;
  text-align: center;
}

.flutter-my-contest-card__short {
  display: block;
  margin-top: 10px;
  color: #f8cb46;
  font-size: 12px;
  text-align: center;
}

.flutter-my-contest-card__meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.flutter-my-contest-card__meta span,
.flutter-my-contest-card__meta strong {
  display: block;
  font-size: 10px;
}

.flutter-my-contest-card__meta span {
  color: #f8cb46;
}

.flutter-my-contest-card__meta strong {
  margin-top: 4px;
  color: #fff;
}

.flutter-my-contest-card__progress {
  margin-top: 10px;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #a8a8a8;
}

.flutter-my-contest-card__progress-bar {
  height: 100%;
  border-radius: inherit;
  background: #f8cb46;
}

.flutter-my-contest-card__teams {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.flutter-my-contest-card__team {
  padding: 10px 8px;
  border-radius: 8px;
  background: #4e4a4a;
  border: 1px solid rgba(168, 168, 168, 0.35);
}

.flutter-my-contest-card__team div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.flutter-my-contest-card__team strong,
.flutter-my-contest-card__team span,
.flutter-my-contest-card__team small {
  color: #fff;
}

.flutter-my-contest-card__team span,
.flutter-my-contest-card__team small {
  font-size: 11px;
}

.my-contests-page__stack {
  margin-top: 14px;
}

.joined-match-card {
  padding: 18px;
  display: grid;
  gap: 14px;
  border-radius: 22px;
  border: 1px solid rgba(239, 36, 72, 0.14);
  background:
    radial-gradient(circle at top left, rgba(239, 36, 72, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(31, 19, 20, 0.98), rgba(18, 11, 12, 0.98));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.joined-match-card__header,
.joined-match-card__summary,
.joined-match-card__contest-top,
.joined-match-card__contest-meta,
.joined-match-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.joined-match-card__status-block,
.joined-match-card__count-block,
.joined-match-card__summary-item,
.joined-match-card__center {
  display: grid;
  gap: 4px;
}

.joined-match-card__status-block small,
.joined-match-card__count-block span,
.joined-match-card__summary-item span,
.joined-match-card__contest-top span,
.joined-match-card__contest-meta span,
.joined-match-card__center small,
.joined-match-card__center span {
  color: rgba(245, 247, 251, 0.68);
  font-size: 11px;
}

.joined-match-card__count-block {
  text-align: right;
}

.joined-match-card__count-block strong,
.joined-match-card__summary-item strong,
.joined-match-card__contest-top strong {
  color: #fff;
  font-size: 16px;
}

.joined-match-card__status {
  width: fit-content;
  min-height: 30px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.joined-match-card__status--live {
  color: #fff;
  background: linear-gradient(135deg, #ef2448, #980f24);
}

.joined-match-card__status--upcoming {
  color: #f7f0f0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.joined-match-card__status--past {
  color: #dfe4ee;
  background: linear-gradient(135deg, #4f5765, #303844);
}

.joined-match-card__match {
  padding: 16px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(24, 17, 18, 0.98), rgba(16, 11, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.joined-match-card__team {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.joined-match-card__team--end {
  justify-items: end;
}

.joined-match-card__team strong,
.joined-match-card__center strong {
  color: #fff;
  font-size: 15px;
}

.joined-match-card__logo-wrap {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.joined-match-card__logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.joined-match-card__logo-wrap--fallback {
  color: #202020;
  font-size: 12px;
  font-weight: 800;
}

.joined-match-card__center {
  justify-items: center;
  text-align: center;
}

.joined-match-card__summary {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.joined-match-card__summary-item {
  flex: 1;
}

.joined-match-card__contest-list {
  display: grid;
  gap: 12px;
}

.joined-match-card__contest {
  padding: 14px;
  display: grid;
  gap: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(21, 14, 15, 0.96), rgba(12, 9, 10, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.joined-match-card__contest-chip {
  min-height: 32px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffd3da;
  font-size: 11px;
  font-weight: 700;
  background: rgba(239, 36, 72, 0.12);
  border: 1px solid rgba(239, 36, 72, 0.22);
}

.joined-match-card__contest-meta {
  flex-wrap: wrap;
}

.joined-match-card__teams {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.joined-match-card__actions--single {
  justify-content: center;
}

.joined-match-card__team-pill {
  min-height: 28px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.joined-match-card__action {
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.joined-match-card__footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(245, 247, 251, 0.6);
  font-size: 11px;
}

.joined-match-card__action:active {
  transform: translateY(1px);
}

.wallet-screen {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.wallet-screen__banner {
  width: 100%;
  max-width: 100%;
}

.wallet-screen__banner.home-banner {
  margin-top: 2px;
}

.wallet-hero {
  min-height: 232px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(239, 36, 72, 0.14);
  background:
    radial-gradient(circle at top right, rgba(239, 36, 72, 0.24), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(35, 18, 20, 0.98), rgba(16, 10, 11, 0.98));
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3);
}

.wallet-hero__content {
  display: flex;
  min-height: 232px;
  padding: 22px 20px 20px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.wallet-hero__eyebrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wallet-hero__label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.wallet-hero__amount {
  margin-top: 10px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.wallet-hero__stats {
  width: 100%;
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wallet-hero__stat {
  padding: 12px 12px 11px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
}

.wallet-hero__stat > span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wallet-hero__stat strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.wallet-hero__actions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.wallet-hero__links {
  margin-top: 10px;
}

.wallet-action {
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.wallet-action--primary {
  color: #111;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.wallet-action--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.wallet-action--full {
  width: 100%;
}

.wallet-action:active {
  transform: translateY(1px);
}

.wallet-list-head {
  padding: 2px 2px 0;
}

.wallet-list-head h2 {
  margin: 2px 0 0;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wallet-transaction-list {
  display: grid;
  gap: 10px;
}

.wallet-transaction-card {
  padding: 12px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(30, 20, 21, 0.98), rgba(18, 12, 13, 0.98));
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.wallet-transaction-card__leading {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.wallet-transaction-card__leading img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.wallet-transaction-card__body strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.wallet-transaction-card__body {
  min-width: 0;
}

.wallet-transaction-card__body span {
  display: block;
  margin-top: 4px;
  color: var(--fantasy-text-soft);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wallet-transaction-card__amount {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.wallet-modal-backdrop {
  position: fixed;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  z-index: 60;
}

.wallet-modal {
  width: min(326px, 100%);
  padding: 22px 18px 18px;
  border-radius: 24px;
  border: 1px solid rgba(239, 36, 72, 0.16);
  background:
    radial-gradient(circle at top, rgba(239, 36, 72, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(31, 19, 20, 0.98), rgba(17, 10, 11, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.wallet-modal h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.wallet-modal p {
  margin: 18px 0 10px;
  color: var(--fantasy-text-soft);
  font-size: 12px;
  text-align: center;
}

.wallet-modal__field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.wallet-modal__field span {
  color: #fff;
  font-weight: 700;
}

.wallet-modal__field input {
  width: 100%;
  min-height: 48px;
  border: 0;
  outline: none;
  color: #fff;
  background: transparent;
}

.wallet-modal__submit {
  width: min(240px, 100%);
  min-height: 46px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.wallet-modal__submit-icon {
  min-width: 34px;
  height: 24px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ef2448 0%, #a60f28 100%);
  box-shadow: 0 6px 14px rgba(166, 15, 40, 0.28);
}

.notification-screen {
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 0 0 1rem;
  align-items: stretch;
}

.notification-screen__header {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
}

.notification-screen__header strong {
  flex: 1;
  min-width: 0;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.notification-screen__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 1rem;
}

.notification-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(239, 36, 72, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(30, 19, 20, 0.98), rgba(17, 11, 12, 0.98));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  min-height: 0;
  width: 100%;
  align-self: stretch;
  flex: 0 0 auto;
}

.notification-card__leading {
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(239, 36, 72, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.notification-card__leading img {
  width: 0.95rem;
  height: 0.95rem;
  filter: brightness(0) invert(1);
}

.notification-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  flex: 1;
}

.notification-card__body strong {
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.35;
}

.notification-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.73rem;
  line-height: 1.5;
}

.notification-card__body span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.66rem;
  font-weight: 600;
}

.notification-empty {
  min-height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.85rem;
  padding: 1.5rem;
}

.notification-empty__image {
  width: min(78vw, 18rem);
  max-width: 18rem;
}

.notification-empty strong {
  color: #fff;
  font-size: 1rem;
}

.notification-empty p {
  margin: 0;
  max-width: 18rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.6;
}

.notification-empty__button {
  min-width: 8rem;
}

.reward-screen {
  width: 100%;
  padding: 8px 0 18px;
  display: grid;
  gap: 12px;
  align-items: stretch;
}

.reward-screen__hero-card,
.reward-screen__promo-card,
.reward-screen__action-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(239, 36, 72, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(28, 18, 19, 0.98), rgba(15, 10, 11, 0.98));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.reward-screen__hero-card {
  display: grid;
  gap: 8px;
}

.reward-screen__promo-card {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.reward-screen__promo-copy {
  display: grid;
  gap: 8px;
  text-align: left;
}

.reward-screen__action-card {
  display: grid;
  gap: 10px;
}

.reward-screen__eyebrow {
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  color: #ffd3da;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(239, 36, 72, 0.12);
  border: 1px solid rgba(239, 36, 72, 0.18);
}

.reward-screen h2,
.reward-screen h3 {
  margin: 0;
}

.reward-screen h2 {
  color: #fff;
  font-size: 21px;
  text-align: left;
}

.reward-screen h3 {
  color: #ffd4da;
  font-size: 14px;
  text-align: left;
}

.reward-screen__hero-card > p,
.reward-screen__copy {
  margin: 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
  text-align: left;
}

.reward-screen__gift {
  width: min(180px, 58vw);
  margin-top: 4px;
}

.reward-screen__actions {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  display: grid;
  gap: 10px;
}

.reward-screen__code {
  width: 100%;
  min-height: 56px;
  padding: 10px 10px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(28, 18, 19, 0.98), rgba(15, 10, 11, 0.98));
}

.reward-screen__code-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.reward-screen__code-copy span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reward-screen__code strong {
  color: #fff;
  font-size: 13px;
}

.reward-screen__link-text {
  line-break: anywhere;
  word-break: break-word;
}

.reward-screen__code button,
.reward-screen__share {
  border: 0;
  cursor: pointer;
}

.reward-screen__code button {
  min-width: 82px;
  min-height: 40px;
  border-radius: 14px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
}

.reward-screen__share {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(180deg, #ffffff, #f3ecec);
}

.reward-screen__messages {
  display: grid;
  gap: 8px;
}

.reward-screen__referral-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.reward-screen__summary-card {
  padding: 14px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(239, 36, 72, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(29, 19, 20, 0.98), rgba(15, 10, 11, 0.98));
}

.reward-screen__summary-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reward-screen__summary-card strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
}

.reward-screen__summary-card--accent strong {
  color: #ffd9df;
}

.reward-screen__referral-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(239, 36, 72, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(29, 18, 20, 0.98), rgba(14, 9, 10, 0.98));
}

.reward-screen__referral-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.reward-screen__referral-head h3,
.reward-screen__referral-head p {
  margin: 0;
}

.reward-screen__referral-head h3 {
  color: #fff;
  font-size: 16px;
}

.reward-screen__referral-head p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.5;
}

.reward-screen__referral-list {
  display: grid;
  gap: 10px;
}

.reward-screen__referral-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
}

.reward-screen__referral-copy {
  min-width: 0;
}

.reward-screen__referral-copy strong,
.reward-screen__referral-copy span,
.reward-screen__referral-copy small {
  display: block;
}

.reward-screen__referral-copy strong {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reward-screen__referral-copy span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}

.reward-screen__referral-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
}

.reward-screen__referral-amount {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.reward-screen__referral-amount span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.reward-screen__referral-amount strong {
  color: var(--fantasy-red);
  font-size: 15px;
}

.not-found-screen {
  min-height: calc(100vh - 48px);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(239, 36, 72, 0.14), transparent 40%),
    linear-gradient(180deg, rgba(28, 18, 19, 0.98), rgba(14, 10, 11, 0.98));
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.32);
}

.not-found-screen__eyebrow {
  padding: 6px 12px;
  border-radius: 999px;
  color: #ffd3da;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(239, 36, 72, 0.12);
  border: 1px solid rgba(239, 36, 72, 0.2);
}

.not-found-screen h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
}

.not-found-screen p {
  margin: 0;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.not-found-screen__button {
  max-width: 220px;
  margin-top: 8px;
}

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

.winner-card {
  overflow: hidden;
  border: 1px solid rgba(239, 36, 72, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(239, 36, 72, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(31, 19, 20, 0.98), rgba(16, 11, 12, 0.98));
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.winner-card__title {
  padding: 14px 14px 12px;
  color: #fff;
  font-size: 13px;
  text-align: left;
  background: linear-gradient(180deg, rgba(170, 18, 43, 0.98), rgba(102, 11, 24, 0.98));
}

.winner-card__body {
  padding: 16px 14px 14px;
  background: transparent;
}

.winner-card__short {
  display: block;
  color: var(--fantasy-text);
  font-size: 14px;
  text-align: center;
}

.winner-card__date {
  display: block;
  margin-top: 8px;
  color: var(--fantasy-text-soft);
  font-size: 12px;
  text-align: center;
}

.winner-card__pool {
  margin-top: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.winner-card__carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(92px, 96px);
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.winner-card__carousel::-webkit-scrollbar {
  display: none;
}

.winner-card__entry {
  padding: 11px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(27, 18, 19, 0.98), rgba(18, 12, 13, 0.98));
}

.winner-card__avatar {
  width: 37px;
  height: 37px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid rgba(215, 25, 45, 0.22);
}

.winner-card__avatar--fallback {
  display: grid;
  place-items: center;
  background: var(--fantasy-red-soft);
  color: var(--fantasy-red);
  font-size: 12px;
  font-weight: 700;
}

.winner-card__entry strong,
.winner-card__entry span,
.winner-card__entry small {
  color: var(--fantasy-text);
  font-size: 11px;
}

.winner-card__entry strong {
  color: var(--fantasy-red);
}

.winner-card__entry small {
  color: var(--fantasy-text-soft);
}

.winner-card__actions {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.winner-card__view-all {
  min-height: 40px;
  min-width: 110px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.winner-detail-screen {
  display: grid;
  gap: 16px;
}

.winner-detail-screen__appbar {
  margin-bottom: 2px;
}

.winner-podium {
  min-height: 200px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  border-radius: 20px;
  border: 1px solid rgba(239, 36, 72, 0.12);
  background:
    linear-gradient(180deg, rgba(19, 12, 13, 0.88), rgba(11, 7, 8, 0.96)),
    radial-gradient(circle at top, rgba(239, 36, 72, 0.18), transparent 56%),
    url('/blade-frontend/images/winbg.png') center / cover no-repeat;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.winner-podium__slot {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-bottom: 12px;
  text-align: center;
}

.winner-podium__slot strong,
.winner-podium__slot span {
  color: #fff;
  max-width: 100%;
}

.winner-podium__slot strong {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-podium__slot span {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.winner-podium__slot--first {
  min-height: 188px;
  padding-bottom: 34px;
}

.winner-podium__avatar-wrap {
  position: relative;
}

.winner-podium__avatar {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 999px;
}

.winner-podium__avatar--fallback {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.85);
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 700;
}

.winner-podium__avatar-wrap--first .winner-podium__avatar {
  border: 1px solid #ef2448;
}

.winner-podium__avatar-wrap--second .winner-podium__avatar {
  border: 1px solid #8a95a8;
}

.winner-podium__avatar-wrap--third .winner-podium__avatar {
  border: 1px solid #9f6642;
}

.winner-podium__badge {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.winner-podium__badge--first {
  background: #ef2448;
}

.winner-podium__badge--second {
  background: #8a95a8;
}

.winner-podium__badge--third {
  background: #9f6642;
}

.winner-detail-list {
  display: grid;
  gap: 10px;
}

.winner-detail-list__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(30, 20, 21, 0.98), rgba(17, 11, 12, 0.98));
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.winner-detail-list__avatar {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid rgba(215, 25, 45, 0.22);
}

.winner-detail-list__avatar--fallback {
  display: grid;
  place-items: center;
  background: var(--fantasy-red-soft);
  color: var(--fantasy-red);
  font-size: 14px;
  font-weight: 700;
}

.winner-detail-list__copy {
  min-width: 0;
}

.winner-detail-list__copy strong {
  display: block;
  color: var(--fantasy-text);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-detail-list__copy span {
  display: block;
  margin-top: 5px;
  color: var(--fantasy-text-soft);
  font-size: 10px;
}

.winner-detail-list__amount {
  color: var(--fantasy-red);
  font-size: 14px;
  font-weight: 700;
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

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

.flutter-profile-screen {
  padding: 4px 0 28px;
  display: grid;
  gap: 14px;
}

.flutter-profile-hero {
  display: grid;
  gap: 12px;
}

.flutter-profile-hero__cover {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(27, 19, 20, 0.98), rgba(15, 11, 12, 0.98));
}

.flutter-profile-hero__identity {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.flutter-profile-hero__copy {
  min-width: 0;
}

.flutter-profile-hero__copy span {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flutter-profile-hero__copy p {
  margin: 4px 0 0;
  color: var(--fantasy-text-soft);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flutter-profile-hero__edit {
  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.flutter-profile-hero__edit img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.flutter-profile-hero__avatar {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: #23191b;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}

.flutter-profile-hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flutter-profile-hero__avatar-badge {
  position: absolute;
  right: -4px;
  bottom: 2px;
  min-width: 32px;
  min-height: 20px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 10px;
  font-weight: 700;
}

.flutter-profile-hero h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flutter-profile-balance-card {
  width: 100%;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #22191b;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.flutter-profile-balance-card > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.flutter-profile-balance-card img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.flutter-profile-balance-card span {
  color: #d2c3c6;
  font-size: 10px;
  font-weight: 600;
}

.flutter-profile-balance-card strong {
  color: #fff;
  font-size: 14px;
}

.flutter-profile-balance-card__divider {
  width: 1px;
  height: 72px;
  justify-self: center;
  background: rgba(255, 255, 255, 0.1);
}

.flutter-profile-info-card,
.flutter-profile-actions,
.flutter-edit-form,
.flutter-kyc-panel {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #171112;
}

.flutter-profile-info-card {
  display: grid;
  gap: 2px;
}

.flutter-profile-info-row {
  padding: 12px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.flutter-profile-info-row:last-child {
  border-bottom: 0;
}

.flutter-profile-info-row span {
  color: #d2c3c6;
  font-size: 11px;
  font-weight: 600;
}

.flutter-profile-info-row strong {
  color: #fff;
  font-size: 14px;
  text-align: right;
}

.flutter-profile-actions {
  display: grid;
  gap: 10px;
}

.flutter-profile-action {
  width: 100%;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #201718;
  color: #fff;
  text-align: left;
}

.flutter-profile-action strong {
  display: block;
  font-size: 14px;
}

.flutter-profile-action span {
  display: block;
  margin-top: 4px;
  color: var(--fantasy-text-soft);
  font-size: 11px;
}

.flutter-profile-action img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.flutter-profile-action__arrow {
  transform: rotate(180deg);
  opacity: 0.82;
}

.flutter-profile-action--logout {
  border-color: rgba(239, 36, 72, 0.22);
}

.flutter-subpage {
  padding: 0 0 28px;
  display: grid;
  gap: 16px;
}

.flutter-subpage__appbar {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 52px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20, 14, 15, 0.98), rgba(9, 7, 8, 0.98));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.flutter-subpage__back {
  width: 32px;
  height: 32px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.flutter-subpage__back img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.flutter-subpage__appbar strong {
  flex: 1;
  min-width: 0;
  color: #fff;
  font-size: 13px;
}

.flutter-edit-form__body,
.flutter-bank-form,
.flutter-kyc-form {
  display: grid;
  gap: 14px;
}

.flutter-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.flutter-field {
  display: grid;
  gap: 6px;
}

.flutter-field span,
.flutter-gender-picker > span {
  color: #e5d8da;
  font-size: 11px;
  font-weight: 600;
}

.flutter-field input {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  outline: none;
  color: #f0ebec;
  background: #22191b;
}

.flutter-field input[readonly] {
  opacity: 0.8;
}

.flutter-gender-picker {
  display: grid;
  gap: 10px;
}

.flutter-gender-picker__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.flutter-gender-card {
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #22191b;
  color: #d8d8d8;
}

.flutter-gender-card--active {
  border-color: rgba(239, 36, 72, 0.32);
  background: linear-gradient(180deg, rgba(239, 36, 72, 0.16), rgba(239, 36, 72, 0.04));
  color: #fff;
}

.flutter-primary-button {
  width: 140px;
  min-height: 45px;
  margin: 12px auto 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.flutter-primary-button:disabled,
.flutter-upload-tile:disabled,
.flutter-link-button:disabled {
  opacity: 0.7;
}

.flutter-kyc-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.flutter-kyc-tabs__item {
  min-height: 44px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #bdaeb1;
  font-size: 12px;
  font-weight: 700;
}

.flutter-kyc-tabs__item--active {
  color: #fff;
  border-bottom-color: var(--fantasy-red);
}

.flutter-kyc-panel {
  display: grid;
  gap: 14px;
}

.flutter-kyc-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.flutter-kyc-status strong {
  color: #fff;
  font-size: 14px;
}

.flutter-kyc-status__pill {
  min-height: 28px;
  padding: 0 12px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.flutter-kyc-status__pill--approve {
  color: #113a20;
  background: #8be2a8;
}

.flutter-kyc-status__pill--pending {
  color: #503b00;
  background: #f8cb46;
}

.flutter-kyc-status__pill--reject {
  color: #4d1414;
  background: #ffb3b3;
}

.flutter-document-card {
  padding: 14px;
  display: grid;
  gap: 12px;
  border-radius: 14px;
  background: #2f2b28;
}

.flutter-document-upload {
  display: grid;
  gap: 10px;
}

.flutter-document-upload__preview {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 10px;
  background: #1f1f1f;
}

.flutter-document-upload__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flutter-upload-tile,
.flutter-link-button {
  min-height: 42px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}

.flutter-upload-tile {
  border: 1px dashed #f8cb46;
  color: #f8cb46;
  background: rgba(248, 203, 70, 0.08);
}

.flutter-link-button {
  justify-self: start;
  padding: 0 14px;
  border: 1px solid #a8a8a8;
  color: #fff;
  background: transparent;
}

.screen-loader {
  min-height: 180px;
  padding: 24px 18px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(239, 36, 72, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(25, 17, 18, 0.98), rgba(14, 10, 10, 0.98));
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.screen-loader__spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(215, 25, 45, 0.12);
  border-top-color: var(--fantasy-red);
  border-radius: 999px;
  animation: screen-loader-spin 0.85s linear infinite;
}

.screen-loader__content {
  display: grid;
  gap: 6px;
}

.screen-loader__content h3 {
  margin: 0;
  color: var(--fantasy-text);
  font-size: 17px;
  font-weight: 800;
}

.screen-loader__content p {
  margin: 0;
  color: var(--fantasy-text-soft);
  font-size: 12px;
  line-height: 1.6;
}

.feedback-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(6px);
}

.feedback-dialog {
  width: min(100%, 332px);
  padding: 26px 22px 20px;
  display: grid;
  justify-items: center;
  gap: 12px;
  border: 1px solid rgba(239, 36, 72, 0.14);
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(239, 36, 72, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(30, 19, 20, 0.98), rgba(15, 10, 11, 0.98));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.46);
}

.feedback-dialog h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.feedback-dialog p {
  margin: 0;
  color: #d3d3d3;
  font-size: 13px;
  line-height: 1.6;
}

.feedback-dialog__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feedback-dialog__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.feedback-dialog__icon span {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.feedback-dialog__icon--success {
  background: radial-gradient(circle at top, rgba(90, 204, 128, 0.32), rgba(26, 97, 50, 0.96));
  box-shadow: 0 10px 24px rgba(32, 128, 67, 0.28);
}

.feedback-dialog__icon--error {
  background: radial-gradient(circle at top, rgba(255, 124, 124, 0.28), rgba(150, 32, 32, 0.96));
  box-shadow: 0 10px 24px rgba(150, 32, 32, 0.28);
}

.feedback-dialog__button {
  min-width: 148px;
  min-height: 44px;
  margin-top: 4px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 800;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.feedback-dialog--error .feedback-dialog__button {
  color: #fff;
  background: linear-gradient(180deg, #b8132d, #7b0d1f);
}

.feedback-dialog__button:active {
  transform: translateY(1px);
}

.flutter-contest-card__lineup {
  appearance: none;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.flutter-my-contest-card {
  cursor: pointer;
}

.flutter-my-contest-card__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.flutter-my-contest-card__action {
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #091018;
  background: linear-gradient(135deg, #ff9f68 0%, #ff6348 50%, #e03b3b 100%);
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.lineup-sheet__panel {
  max-height: 86vh;
  overflow: hidden;
}

.lineup-sheet__body {
  max-height: calc(86vh - 110px);
  overflow-y: auto;
}

.lineup-sheet__section {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.lineup-sheet__section--bench {
  background: rgba(255, 255, 255, 0.03);
}

.lineup-sheet__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.lineup-sheet__section-head strong {
  display: block;
  font-size: 14px;
}

.lineup-sheet__section-head span,
.lineup-sheet__section-head small {
  color: rgba(245, 247, 251, 0.64);
  font-size: 12px;
}

.lineup-sheet__players {
  display: grid;
  gap: 10px;
}

.lineup-sheet__player {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.lineup-sheet__player img,
.lineup-sheet__avatar-fallback {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.lineup-sheet__avatar-fallback {
  display: grid;
  place-items: center;
  font-weight: 700;
}

.lineup-sheet__player strong {
  display: block;
  font-size: 13px;
}

.lineup-sheet__player span {
  color: rgba(245, 247, 251, 0.62);
  font-size: 11px;
}

.lineup-sheet__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lineup-sheet__tag {
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(245, 247, 251, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
}

.lineup-sheet__empty {
  padding: 18px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.14);
}

.lineup-sheet__empty strong {
  display: block;
  margin-bottom: 8px;
}

.lineup-sheet__empty p {
  margin: 0;
  color: rgba(245, 247, 251, 0.64);
  font-size: 13px;
  line-height: 1.55;
}

.contest-detail-score,
.contest-detail-summary,
.team-view-header,
.team-view-section,
.contest-rank-card,
.leaderboard-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(239, 36, 72, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(28, 18, 19, 0.98), rgba(16, 11, 12, 0.98));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.contest-detail-score,
.contest-detail-summary,
.team-view-header {
  padding: 18px;
  margin-bottom: 16px;
}

.contest-detail-score__teams,
.leaderboard-card,
.team-view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.contest-detail-score__team {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contest-detail-score__team span {
  color: var(--fantasy-text-soft);
  font-size: 12px;
}

.contest-detail-score__team strong {
  color: var(--fantasy-text);
  font-size: 16px;
}

.contest-detail-score__status {
  padding: 10px 12px;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(180deg, rgba(182, 20, 46, 0.94), rgba(114, 11, 28, 0.98));
}

.contest-detail-score__status small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contest-detail-score__status strong {
  color: #fff;
  font-size: 12px;
}

.contest-detail-score p,
.contest-detail-summary__top p {
  margin: 10px 0 0;
  color: var(--fantasy-text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.contest-detail-summary__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.contest-detail-summary__top h2,
.team-view-header__copy h2 {
  margin: 10px 0 0;
}

.contest-detail-summary__status {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--fantasy-red);
  background: var(--fantasy-red-soft);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.contest-detail-summary__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.contest-detail-summary__stat {
  padding: 14px;
  border-radius: 18px;
  background: var(--fantasy-surface-muted);
}

.contest-detail-summary__stat span,
.leaderboard-card__stats span,
.contest-rank-card__copy span,
.team-view-header__points span {
  display: block;
  margin-bottom: 6px;
  color: var(--fantasy-text-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contest-detail-summary__stat strong,
.contest-rank-card__copy strong,
.team-view-header__points strong {
  color: var(--fantasy-text);
  font-size: 16px;
}

.contest-detail-summary__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.contest-detail-summary__foot p {
  margin: 0;
  color: var(--fantasy-text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.contest-rank-card,
.leaderboard-card,
.team-view-section {
  padding: 16px;
}

.contest-rank-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contest-rank-card__rank {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  min-width: 68px;
  min-height: 56px;
  padding: 10px 12px;
  border-radius: 18px;
  /* background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06); */
}

.contest-rank-card__rank img {
  width: 34px;
  height: 34px;
  object-fit: cover;
}

.contest-rank-card__rank strong,
.leaderboard-card__stats strong {
  color: var(--fantasy-text);
}

.contest-rank-card__header,
.contest-rank-card__body {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(64px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.contest-rank-card__header span:last-child,
.contest-rank-card__body .contest-rank-card__copy {
  text-align: right;
  justify-self: end;
}

.leaderboard-card {
  appearance: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.leaderboard-card--active {
  border-color: rgba(239, 36, 72, 0.26);
  box-shadow: 0 16px 28px rgba(136, 14, 33, 0.26);
}

.leaderboard-card--locked {
  opacity: 0.86;
}

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

.leaderboard-card__avatar,
.leaderboard-card__avatar--fallback,
.team-view-player img,
.team-view-player__avatar {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}

.leaderboard-card__avatar--fallback,
.team-view-player__avatar {
  display: grid;
  place-items: center;
  color: var(--fantasy-text);
  font-weight: 700;
}

.leaderboard-card__copy {
  min-width: 0;
}

.leaderboard-card__copy strong,
.team-view-player__copy strong {
  display: block;
  color: var(--fantasy-text);
  font-size: 14px;
}

.leaderboard-card__copy span,
.team-view-player__copy span {
  display: block;
  margin-top: 4px;
  color: var(--fantasy-text-soft);
  font-size: 12px;
  line-height: 1.45;
}

.leaderboard-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(54px, auto));
  gap: 18px;
  text-align: right;
  margin-left: auto;
  justify-content: end;
  justify-items: end;
  min-width: 120px;
}

.team-view-header__copy {
  flex: 1;
}

.team-view-header__points {
  min-width: 88px;
  text-align: right;
}

.team-view-board {
  display: grid;
  gap: 14px;
}

.team-view-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.team-view-section__head strong {
  color: var(--fantasy-text);
  font-size: 14px;
}

.team-view-section__head span {
  color: var(--fantasy-text-soft);
  font-size: 12px;
}

.team-view-players {
  display: grid;
  gap: 10px;
}

.team-view-player {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.team-view-player small {
  color: var(--fantasy-red);
  font-size: 12px;
  font-weight: 700;
}

.contest-detail-summary {
  display: grid;
  gap: 14px;
}

.contest-detail-summary__header {
  display: grid;
  gap: 10px;
}

.contest-detail-summary__eyebrow {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contest-detail-summary {
  display: grid;
  gap: 14px;
}

.contest-detail-summary__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contest-detail-summary__entry {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right;
}

.contest-detail-summary__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.contest-detail-summary__amount {
  color: var(--fantasy-text);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.contest-detail-summary__hero-action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.contest-detail-summary__join-button {
  width: auto;
  min-width: 156px;
  min-height: 50px;
  margin: 0;
  padding: 10px 22px;
  font-size: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.contest-detail-summary__locked-pill {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contest-detail-summary__headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contest-detail-summary__headline strong {
  color: var(--fantasy-text);
  font-size: 28px;
}

.contest-detail-summary__headline span {
  color: var(--fantasy-text-soft);
  font-size: 12px;
  text-align: right;
}

.contest-detail-summary__spots-box {
  padding: 12px 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contest-detail-summary__spots-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.contest-detail-summary__spots-row span {
  color: #ff8f9f;
  font-size: 11px;
}

.contest-detail-summary__spots-row strong {
  color: var(--fantasy-text);
  font-size: 12px;
}

.contest-detail-summary__progress {
  height: 5px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
}

.contest-detail-summary__progress-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fantasy-red), #f25363);
}

.contest-detail-summary__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
}

.contest-detail-summary__locked-copy {
  margin: 0;
  color: var(--fantasy-text-soft);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.contest-detail-summary__notice {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.contest-detail-summary__back-button {
  margin: 0;
}

.contest-detail-summary__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 9px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contest-detail-summary__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.contest-detail-summary__meta-item img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.contest-detail-summary__meta-item span {
  color: #d3c7c9;
  font-size: 10px;
  line-height: 1.35;
}

.contest-pane {
  gap: 8px;
  padding-bottom: 8px;
}

.contest-pane__copy {
  margin: 0 2px 4px;
  color: var(--fantasy-text-soft);
  font-size: 11px;
  text-align: center;
}

.contest-pane__count {
  display: block;
  margin: 0 auto 4px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.04em;
}

.contest-rank-card {
  display: grid;
  gap: 10px;
}

.contest-rank-card__header,
.contest-rank-card__body {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0;
}

.contest-rank-card__header span {
  color: #ff9cac;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contest-rank-card__label,
.contest-rank-card__rank {
  flex: 0 0 64px;
}

.contest-rank-card__label--amount,
.contest-rank-card__amount {
  display: block;
  width: 100%;
  text-align: right;
}

.contest-rank-card__label--amount {
  margin-left: auto;
}

.contest-rank-card__divider {
  height: 1px;
  background: var(--fantasy-border);
}

.contest-rank-card__body .contest-rank-card__copy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  min-width: max-content;
  margin-left: auto;
  text-align: right;
}

.contest-rank-card__amount {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

@keyframes screen-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 420px) {
  .dashboard-bottom-nav {
    width: calc(100vw - 24px);
  }

  .dashboard-appbar {
    min-height: 60px;
    padding: 10px 12px 8px;
    gap: 8px;
  }

  .dashboard-appbar__greeting {
    font-size: 14px;
  }

  .dashboard-appbar__wallet {
    border-radius: 12px;
  }

  .dashboard-appbar__wallet {
    gap: 5px;
  }

  .dashboard-appbar__wallet-main {
    min-width: 90px;
    min-height: 34px;
    padding: 6px 4px 5px 8px;
  }

  .dashboard-appbar__wallet-plus {
    width: 30px;
    height: 30px;
    border-radius: 11px;
    font-size: 16px;
  }

  .dashboard-appbar__wallet-label {
    font-size: 8px;
  }

  .dashboard-appbar__wallet-amount {
    font-size: 12px;
  }

  .flutter-match-card {
    padding: 12px 10px;
    border-radius: 16px;
  }

  .flutter-match-card__title {
    max-width: 150px;
    padding-inline: 8px;
    font-size: 9px;
  }

  .flutter-match-card__teams {
    grid-template-columns: 34px 1fr 32px 1fr 34px;
    gap: 6px;
    margin: 14px 0 12px;
  }

  .flutter-match-card__footer {
    grid-template-columns: minmax(62px, auto) minmax(116px, 1.15fr) minmax(62px, auto);
    gap: 6px;
  }

  .flutter-match-card__logo {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .flutter-match-card__name {
    font-size: 11px;
  }

  .flutter-match-card__versus {
    width: 32px;
    height: 32px;
  }

  .flutter-match-card__versus img {
    width: 16px;
    height: 16px;
  }

  .flutter-match-card__status,
  .flutter-match-card__prize {
    min-height: 26px;
    min-width: 70px;
    padding: 6px 8px;
    font-size: 8px;
  }

  .flutter-match-card__time {
    max-width: 122px;
    min-height: 32px;
    padding: 0 6px;
    gap: 4px;
  }

  .flutter-match-card__time img {
    width: 13px;
    height: 13px;
  }

  .flutter-match-card__time span {
    font-size: 9px;
    line-height: 1.15;
  }

  .flutter-contest-card {
    padding: 12px;
    border-radius: 16px;
  }

  .flutter-contest-card__top strong {
    font-size: 16px;
  }

  .flutter-contest-card__badges {
    gap: 6px;
    flex-shrink: 0;
  }

  .flutter-contest-card__lineup {
    width: 46px;
  }

  .flutter-contest-card__lineup img {
    width: 22px;
    height: 15px;
  }

  .flutter-contest-card__entry {
    min-width: 56px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .flutter-contest-card__row {
    margin-top: 12px;
    font-size: 11px;
  }

  .flutter-contest-card__spots {
    margin-top: 8px;
    font-size: 9px;
  }

  .flutter-contest-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .flutter-contest-card__meta-item {
    min-width: 0;
    font-size: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

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

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

  .flutter-edit-grid,
  .flutter-gender-picker__grid {
    grid-template-columns: 1fr;
  }

  .reward-screen__actions {
    flex-direction: column;
  }

  .contest-detail-summary__foot,
  .contest-detail-score__teams,
  .team-view-header {
    flex-direction: column;
    align-items: stretch;
  }

  .contest-detail-summary__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .contest-detail-summary__topline,
  .contest-detail-summary__hero,
  .contest-detail-summary__spots-row {
    align-items: center;
    text-align: left;
  }

  .contest-detail-summary__hero {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

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

  .contest-rank-card {
    padding: 14px;
  }

  .contest-rank-card__header span {
    font-size: 10px;
  }

  .contest-rank-card__header,
  .contest-rank-card__body {
    gap: 0;
  }

  .contest-rank-card__label,
  .contest-rank-card__rank {
    flex-basis: 56px;
  }

  .contest-rank-card__rank {
    min-width: 60px;
    min-height: 50px;
    padding: 8px 10px;
  }

  .contest-rank-card__rank img {
    width: 30px;
    height: 30px;
  }

  .contest-rank-card__body .contest-rank-card__copy {
    min-width: max-content;
  }

  .contest-rank-card__amount {
    font-size: 15px;
  }

  .leaderboard-card {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 14px;
  }

  .leaderboard-card__identity {
    flex: 1;
    gap: 10px;
    min-width: 0;
  }

  .leaderboard-card__avatar,
  .leaderboard-card__avatar--fallback {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .leaderboard-card__copy strong {
    font-size: 13px;
  }

  .leaderboard-card__copy span {
    font-size: 11px;
  }

  .leaderboard-card__stats {
    grid-template-columns: repeat(2, minmax(42px, auto));
    gap: 10px;
    min-width: 94px;
    text-align: right;
    justify-self: end;
  }

  .leaderboard-card__stats span {
    font-size: 10px;
  }

  .leaderboard-card__stats strong {
    font-size: 13px;
  }

  .team-view-header__points {
    text-align: left;
  }

  .winner-card__carousel {
    grid-auto-columns: minmax(96px, 110px);
  }

  .winner-podium {
    min-height: 164px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 8px;
    padding: 0 10px 10px;
  }

  .winner-podium__slot,
  .winner-podium__slot--first {
    min-height: 122px;
    gap: 6px;
    padding-bottom: 8px;
  }

  .winner-podium__slot--first {
    min-height: 138px;
    padding-bottom: 16px;
  }

  .winner-podium__avatar {
    width: 38px;
    height: 38px;
  }

  .winner-podium__slot strong {
    font-size: 11px;
  }

  .winner-podium__slot span {
    font-size: 10px;
  }

  .winner-podium__badge {
    width: 14px;
    height: 14px;
    font-size: 9px;
  }

  .winner-detail-list__item {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
  }

  .winner-detail-list__amount {
    grid-column: auto;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .mobile-inner-body {
    gap: 10px;
    padding: 0 8px 18px;
  }

  .mobile-stack {
    gap: 10px;
  }

  .contest-appbar {
    min-height: 54px;
    margin: 0 -8px 10px;
    padding: 10px 10px 8px;
    grid-template-columns: 32px 1fr auto;
    gap: 10px;
  }

  .contest-appbar__icon {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }

  .contest-appbar__wallet {
    min-height: 32px;
    border-radius: 11px;
  }

  .contest-appbar__title strong {
    font-size: 12px;
  }

  .contest-appbar__title span {
    font-size: 10px;
  }

  .contest-appbar__icon img {
    width: 15px;
    height: 15px;
  }

  .contest-appbar__wallet {
    gap: 5px;
  }

  .contest-appbar__wallet-main {
    min-width: 80px;
    min-height: 32px;
    padding: 6px 4px 5px 8px;
  }

  .contest-appbar__wallet-plus {
    width: 32px;
    height: 32px;
    border-radius: 11px;
    font-size: 16px;
  }

  .contest-appbar__wallet-main span {
    font-size: 7px;
  }

  .contest-appbar__wallet-main strong {
    font-size: 11px;
  }

  .match-header-card,
  .join-summary-card,
  .builder-hero,
  .my-contest-card,
  .team-card,
  .captain-card,
  .player-card {
    border-radius: 20px;
  }

  .match-header-card,
  .join-summary-card,
  .builder-hero,
  .my-contest-card {
    padding: 13px;
  }

  .team-card,
  .captain-card,
  .player-card {
    padding: 11px;
    gap: 9px;
  }

  .match-header-meta h2,
  .join-summary-card__top h2,
  .builder-hero__copy h2 {
    margin: 6px 0 4px;
    font-size: 16px;
    line-height: 1.25;
  }

  .match-header-meta p,
  .builder-hero__copy p {
    font-size: 11px;
    line-height: 1.38;
  }

  .builder-hero--dream {
    gap: 10px;
  }

  .builder-hero__eyebrow {
    gap: 8px;
  }

  .builder-hero__selected {
    min-width: 52px;
    min-height: 28px;
    padding: 4px 10px;
    font-size: 11px;
  }

  .builder-progress {
    margin: 12px 0 10px;
    gap: 4px;
  }

  .builder-progress__step {
    height: 17px;
    font-size: 9px;
  }

  .board-stat {
    padding: 9px 10px;
    border-radius: 13px;
  }

  .board-stat span {
    margin-bottom: 4px;
    font-size: 10px;
  }

  .board-stat strong {
    font-size: 13px;
  }

  .mobile-switcher {
    gap: 10px;
    padding: 0 0 2px;
  }

  .mobile-switcher__tab {
    min-height: 32px;
    padding: 6px 0 10px;
  }

  .mobile-switcher__tab--compact {
    font-size: 11px;
  }

  .player-card-main,
  .captain-card-main {
    gap: 10px;
  }

  .player-card-avatar {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .player-card-copy,
  .captain-card-copy {
    gap: 3px;
  }

  .player-card-copy strong,
  .captain-card-copy strong {
    font-size: 12px;
  }

  .player-card-copy span,
  .captain-card-copy span {
    font-size: 10px;
  }

  .player-card-copy__top,
  .captain-card-copy__top {
    gap: 8px;
  }

  .player-card-copy__meta {
    gap: 6px;
  }

  .player-card-team {
    min-width: 32px;
    min-height: 20px;
    padding: 3px 7px;
    font-size: 9px !important;
  }

  .team-card-actions,
  .captain-card-actions {
    gap: 8px;
  }

  .team-card-chip,
  .team-card-icon {
    min-height: 30px;
    padding: 6px 10px;
  }

  .team-card-badge {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .team-card-player-image {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .team-card-role {
    padding: 10px 8px;
    border-radius: 14px;
  }

  .team-card-role strong {
    font-size: 14px;
  }

  .captain-card-pill,
  .player-card-toggle {
    width: 32px;
    min-width: 32px;
    min-height: 32px;
    height: 32px;
    padding: 0;
    font-size: 15px;
  }

  .sticky-action-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 8px 0 3px;
  }

  .sticky-action-bar .button {
    min-height: 40px;
    font-size: 12px;
  }

  .flutter-primary-button,
  .flutter-secondary-button {
    min-width: 124px;
    min-height: 38px;
    padding: 8px 14px;
    font-size: 11px;
  }

  .flutter-team-card {
    min-height: 138px;
    padding: 8px 10px 9px;
  }

  .flutter-team-card__top strong {
    font-size: 12px;
  }

  .flutter-team-card__actions {
    gap: 8px;
  }

  .flutter-team-card__icon img {
    width: 16px;
    height: 16px;
  }

  .flutter-team-card__radio {
    min-width: 56px;
    min-height: 22px;
    font-size: 10px;
  }

  .flutter-team-card__middle {
    margin-top: 8px;
    gap: 8px;
  }

  .flutter-team-card__captain {
    width: 50px;
  }

  .flutter-team-card__captain-badge {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .flutter-team-card__captain-image {
    width: 22px;
    height: 50px;
  }

  .flutter-team-card__count-box {
    width: 38px;
    height: 40px;
    border-radius: 10px;
  }

  .flutter-team-card__count-box span {
    font-size: 11px;
  }

  .flutter-team-card__count-box strong {
    font-size: 16px;
  }

  .flutter-team-card__roles {
    margin-top: 10px;
    gap: 8px;
  }

  .flutter-team-card__roles div {
    gap: 3px;
  }

  .flutter-team-card__roles span,
  .flutter-team-card__roles strong {
    font-size: 10px;
  }

  .select-team-screen {
    margin: 0 -8px -18px;
    padding: 0 8px 16px;
    gap: 10px;
    border-radius: 16px 16px 0 0;
  }

  .select-team-screen__toolbar,
  .select-team-screen__wallet {
    padding: 0 2px;
    gap: 10px;
  }

  .select-team-screen__copy strong {
    font-size: 14px;
  }

  .select-team-screen__copy span,
  .select-team-screen__wallet span {
    font-size: 11px;
  }

  .select-team-screen__create {
    min-width: 92px;
    min-height: 32px;
    padding: 0 12px;
    font-size: 10px;
  }

  .select-team-screen__create--empty {
    min-width: 132px;
  }

  .select-team-screen__empty-action {
    min-width: 132px;
    min-height: 36px;
    font-size: 11px;
  }

  .select-team-screen__strip {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .select-team-screen__strip span,
  .select-team-screen__strip strong {
    font-size: 11px;
  }

  .select-team-screen__wallet strong {
    font-size: 13px;
  }

  .select-team-screen__list {
    gap: 12px;
  }

  .select-team-screen__row {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 10px;
  }

  .select-team-screen__radio {
    width: 24px;
    height: 24px;
  }

  .select-team-screen__radio span {
    width: 10px;
    height: 10px;
  }

  .select-team-screen__footer {
    margin: 4px -8px -2px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
  }

  .select-team-screen__footer-copy strong {
    font-size: 14px;
  }

  .select-team-screen__join {
    min-width: 84px;
    min-height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .match-header-card,
  .join-summary-card,
  .builder-hero,
  .my-contest-card {
    padding: 11px;
  }

  .team-card,
  .captain-card,
  .player-card {
    padding: 9px;
    gap: 7px;
    border-radius: 18px;
  }

  .builder-hero__copy h2,
  .match-header-meta h2,
  .join-summary-card__top h2 {
    font-size: 15px;
  }

  .builder-hero__copy p,
  .match-header-meta p {
    font-size: 11px;
    line-height: 1.35;
  }

  .builder-progress {
    margin: 10px 0 8px;
    gap: 3px;
  }

  .builder-progress__step {
    height: 15px;
    font-size: 8px;
  }

  .builder-role-counts,
  .team-card-role-grid {
    gap: 8px;
  }

  .board-stat {
    padding: 7px 9px;
    border-radius: 12px;
  }

  .board-stat strong {
    font-size: 12px;
  }

  .mobile-switcher {
    gap: 8px;
  }

  .mobile-switcher__tab {
    min-height: 30px;
    padding: 5px 0 8px;
  }

  .mobile-switcher__tab--compact {
    font-size: 10px;
  }

  .player-card-avatar {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .player-card-copy strong,
  .captain-card-copy strong {
    font-size: 11px;
  }

  .player-card-copy span,
  .captain-card-copy span {
    font-size: 9px;
  }

  .player-card-team {
    min-width: 30px;
    min-height: 18px;
    padding: 2px 6px;
    font-size: 8px !important;
  }

  .captain-card-pill,
  .player-card-toggle {
    width: 28px;
    min-width: 28px;
    min-height: 28px;
    height: 28px;
    font-size: 13px;
  }

  .sticky-action-bar .button {
    min-height: 38px;
    font-size: 11px;
  }

  .select-team-screen {
    gap: 8px;
  }

  .select-team-screen__copy strong {
    font-size: 14px;
  }

  .select-team-screen__create {
    min-width: 92px;
    min-height: 32px;
    font-size: 10px;
  }

  .select-team-screen__empty-action {
    min-width: 124px;
    min-height: 34px;
    font-size: 10px;
  }

  .select-team-screen__create--empty {
    min-width: 124px;
  }

  .flutter-team-card {
    min-height: 124px;
    padding: 7px 9px 8px;
  }

  .flutter-team-card__top strong {
    font-size: 11px;
  }

  .flutter-team-card__actions {
    gap: 6px;
  }

  .flutter-team-card__icon img {
    width: 15px;
    height: 15px;
  }

  .flutter-team-card__radio {
    min-width: 46px;
    min-height: 18px;
    font-size: 8px;
  }

  .flutter-team-card__middle {
    margin-top: 8px;
    gap: 8px;
  }

  .flutter-team-card__captain {
    width: 44px;
  }

  .flutter-team-card__captain-image {
    width: 20px;
    height: 44px;
  }

  .flutter-team-card__count-box {
    width: 34px;
    height: 36px;
  }

  .flutter-team-card__count-box span {
    font-size: 10px;
  }

  .flutter-team-card__count-box strong {
    font-size: 14px;
  }

  .flutter-team-card__roles {
    margin-top: 10px;
  }

  .flutter-team-card__roles span,
  .flutter-team-card__roles strong {
    font-size: 10px;
  }

  .contest-detail-summary {
    gap: 12px;
  }

  .contest-detail-summary__amount {
    font-size: 22px;
  }

  .contest-detail-summary__entry,
  .contest-detail-summary__locked-copy {
    font-size: 11px;
  }

  .contest-detail-summary__hero {
    gap: 10px;
  }

  .contest-detail-summary__join-button {
    min-width: 132px;
    min-height: 42px;
    padding: 8px 16px;
    font-size: 12px;
  }

  .contest-detail-summary__spots-box {
    padding: 9px 10px;
    border-radius: 16px;
  }

  .contest-detail-summary__spots-row {
    gap: 8px;
    margin-bottom: 8px;
  }

  .contest-detail-summary__meta {
    gap: 6px;
    padding: 8px 9px;
  }

  .contest-detail-summary__meta-item span {
    font-size: 9px;
  }

  .contest-detail-summary__notice {
    gap: 8px;
  }

  .flutter-tab-switcher {
    width: min(280px, 100%);
    min-height: 42px;
    margin-bottom: 12px;
  }

  .flutter-tab-switcher__tab {
    font-size: 11px;
  }

  .contest-pane {
    gap: 6px;
  }

  .contest-rank-card {
    padding: 10px;
    gap: 8px;
    border-radius: 20px;
  }

  .contest-rank-card__header,
  .contest-rank-card__body {
    gap: 0;
  }

  .contest-rank-card__label,
  .contest-rank-card__rank {
    flex-basis: 50px;
  }

  .contest-rank-card__header span {
    font-size: 9px;
  }

  .contest-rank-card__rank {
    min-width: 52px;
    min-height: 42px;
    padding: 6px 8px;
    border-radius: 14px;
  }

  .contest-rank-card__rank img {
    width: 26px;
    height: 26px;
  }

  .contest-rank-card__amount {
    font-size: 13px;
  }

  .flutter-primary-button,
  .flutter-secondary-button {
    min-width: 112px;
    min-height: 36px;
    padding: 7px 12px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .dashboard-appbar__wallet {
    min-width: 88px;
  }

  .dashboard-appbar__wallet-plus,
  .contest-appbar__wallet-plus {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .dashboard-appbar__wallet-amount {
    font-size: 11px;
  }

  .builder-role-counts,
  .team-card-role-grid {
    gap: 8px;
  }

  .board-stat {
    padding: 9px 10px;
  }

  .player-card-copy strong,
  .captain-card-copy strong {
    font-size: 12px;
  }

  .player-card-copy span,
  .captain-card-copy span {
    font-size: 10px;
  }

  .captain-card-pill,
  .player-card-toggle {
    width: 32px;
    min-width: 32px;
    min-height: 32px;
    height: 32px;
    font-size: 15px;
  }

  .sticky-action-bar .button {
    min-height: 40px;
    font-size: 12px;
  }

  .flutter-team-card__top strong {
    font-size: 12px;
  }

  .flutter-team-card__count-box strong {
    font-size: 16px;
  }

  .select-team-screen__footer-copy strong {
    font-size: 13px;
  }
}

/* Final winnings alignment overrides */
.contest-pane .contest-rank-card__header,
.contest-pane .contest-rank-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.contest-pane .contest-rank-card__label,
.contest-pane .contest-rank-card__rank {
  flex: 0 0 56px;
  min-width: 56px;
}

.contest-pane .contest-rank-card__label--amount {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.contest-pane .contest-rank-card__body .contest-rank-card__copy {
  flex: 1;
  display: flex;
  min-width: 0;
  justify-content: flex-end;
  text-align: right;
}

.contest-pane .contest-rank-card__amount {
  display: inline-block;
  text-align: right;
}

@media (max-width: 390px) {
  .contest-pane .contest-rank-card__header,
  .contest-pane .contest-rank-card__body {
    gap: 10px;
  }

  .contest-pane .contest-rank-card__label,
  .contest-pane .contest-rank-card__rank {
    flex-basis: 50px;
    min-width: 50px;
  }

  .contest-pane .contest-rank-card__body .contest-rank-card__copy {
    min-width: 0;
  }
}

/* Dream11-like board and lobby refinements */
.flutter-tab-switcher--board {
  width: 100%;
  min-height: auto;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.flutter-tab-switcher--board .flutter-tab-switcher__tab {
  flex: 0 0 auto;
  padding: 0 0 10px;
  position: relative;
  color: rgba(255, 244, 245, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: transparent;
}

.flutter-tab-switcher--board .flutter-tab-switcher__tab--active {
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.flutter-tab-switcher--board .flutter-tab-switcher__tab--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff355c, #f52042);
}

.flutter-contest-list {
  padding: 2px 0 10px;
}

.flutter-contest-list__items {
  gap: 10px;
}

.flutter-contest-list .flutter-contest-card {
  padding: 12px 12px 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(41, 28, 29, 0.98), rgba(28, 21, 22, 0.98));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.flutter-contest-list .flutter-contest-card--with-banner {
  padding-top: 0;
  overflow: hidden;
}

.flutter-contest-list .flutter-contest-card__banner {
  width: calc(100% + 24px);
  margin: 0 -12px 10px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  max-height: 150px;
}

.flutter-contest-list .flutter-contest-card__banner img {
  width: 100%;
  display: block;
  height: min(150px, 38vw);
  max-height: 150px;
  object-fit: cover;
}

.flutter-contest-list .flutter-contest-card__utility,
.flutter-contest-list .flutter-contest-card__hero,
.flutter-contest-list .flutter-contest-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.flutter-contest-list .flutter-contest-card__utility-copy,
.flutter-contest-list .flutter-contest-card__utility-actions,
.flutter-contest-list .flutter-contest-card__teams,
.flutter-contest-list .flutter-contest-card__spots {
  display: flex;
  align-items: center;
}

.flutter-contest-list .flutter-contest-card__utility-copy {
  min-width: 0;
  gap: 6px;
  color: rgba(255, 245, 245, 0.72);
  font-size: 9px;
  font-weight: 600;
}

.flutter-contest-list .flutter-contest-card__utility-copy img,
.flutter-contest-list .flutter-contest-card__teams img {
  width: 13px;
  height: 13px;
  object-fit: contain;
  flex-shrink: 0;
}

.flutter-contest-list .flutter-contest-card__utility-copy span {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flutter-contest-list .flutter-contest-card__utility-actions {
  gap: 8px;
  flex-shrink: 0;
}

.flutter-contest-list .flutter-contest-card__lineup {
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.flutter-contest-list .flutter-contest-card__lineup img {
  width: 18px;
  height: 18px;
}

.flutter-contest-list .flutter-contest-card__badge {
  min-height: 24px;
  padding: 5px 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 245, 245, 0.9);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.flutter-contest-list .flutter-contest-card__badge--live {
  background: linear-gradient(180deg, #ff225a, #cb0d3f);
  color: #fff;
}

.flutter-contest-list .flutter-contest-card__badge--review {
  background: rgba(74, 106, 255, 0.14);
  color: #9db5ff;
}

.flutter-contest-list .flutter-contest-card__hero {
  margin-top: 10px;
  align-items: center;
}

.flutter-contest-list .flutter-contest-card--with-banner .flutter-contest-card__utility {
  margin-top: 0;
}

.flutter-contest-list .flutter-contest-card__cash {
  display: grid;
  gap: 4px;
}

.flutter-contest-list .flutter-contest-card__cash span {
  color: rgba(255, 245, 245, 0.68);
  font-size: 10px;
  font-weight: 600;
}

.flutter-contest-list .flutter-contest-card__cash strong {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.flutter-contest-list .flutter-contest-card__entry {
  min-width: 132px;
  min-height: 36px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #141012;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
  cursor: pointer;
}

.flutter-contest-list .flutter-contest-card__bottom {
  margin-top: 11px;
  gap: 8px;
}

.flutter-contest-list .flutter-contest-card__teams,
.flutter-contest-list .flutter-contest-card__spots {
  min-width: 0;
  gap: 4px;
  font-size: 8.5px;
  line-height: 1.2;
}

.flutter-contest-list .flutter-contest-card__teams {
  color: rgba(255, 245, 245, 0.72);
  flex: 1;
}

.flutter-contest-list .flutter-contest-card__teams span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flutter-contest-list .flutter-contest-card__spots {
  justify-content: flex-end;
  text-align: right;
  flex: 1;
  white-space: nowrap;
}

.flutter-contest-list .flutter-contest-card__spots-left {
  color: #ff5a77;
  font-weight: 700;
}

.flutter-contest-list .flutter-contest-card__spots-divider {
  color: rgba(255, 245, 245, 0.35);
  font-weight: 700;
}

.flutter-contest-list .flutter-contest-card__spots-total {
  color: rgba(255, 245, 245, 0.76);
  font-weight: 700;
}

.flutter-contest-list .flutter-contest-card__progress {
  height: 4px;
  margin-top: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.mobile-match-stack {
  gap: 10px;
}

.mobile-match-stack .flutter-match-card {
  padding: 13px 12px 11px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(17, 13, 14, 0.98), rgba(10, 8, 9, 1));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.mobile-match-stack .flutter-match-card__title {
  min-height: 32px;
  max-width: 188px;
  padding: 7px 12px;
  border-radius: 14px;
  color: rgba(255, 245, 245, 0.82);
  font-size: 10px;
  border-color: rgba(255, 71, 99, 0.34);
}

.mobile-match-stack .flutter-match-card__teams {
  margin: 15px 0 12px;
}

.mobile-match-stack .flutter-match-card__team {
  gap: 8px;
}

.mobile-match-stack .flutter-match-card__logo {
  border-radius: 12px;
}

.mobile-match-stack .flutter-match-card__banner {
  height: 75px;
  /* border-radius: 12px; */
}

.mobile-match-stack .flutter-match-card__footer {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 7px;
}

.mobile-match-stack .flutter-match-card__status,
.mobile-match-stack .flutter-match-card__prize {
  min-height: 26px;
  min-width: 74px;
  padding: 6px 8px;
  font-size: 8px;
  letter-spacing: 0.02em;
}

.mobile-match-stack .flutter-match-card__time {
  min-height: 28px;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.mobile-match-stack .flutter-match-card__time img {
  display: none;
}

.mobile-match-stack .flutter-match-card__time span {
  color: #ff4f6e;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .flutter-tab-switcher--board {
    gap: 12px;
    margin-bottom: 10px;
  }

  .flutter-tab-switcher--board .flutter-tab-switcher__tab {
    padding-bottom: 9px;
    font-size: 9px;
  }

  .flutter-contest-list .flutter-contest-card {
    padding: 11px 11px 10px;
    border-radius: 16px;
  }

  .flutter-contest-list .flutter-contest-card__utility-copy {
    font-size: 9px;
  }

  .flutter-contest-list .flutter-contest-card__lineup {
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
  }

  .flutter-contest-list .flutter-contest-card__lineup img {
    width: 16px;
    height: 16px;
  }

  .flutter-contest-list .flutter-contest-card__badge {
    min-height: 24px;
    padding: 5px 9px;
    font-size: 9px;
  }

  .flutter-contest-list .flutter-contest-card__hero {
    margin-top: 9px;
  }

  .flutter-contest-list .flutter-contest-card__cash span {
    font-size: 9px;
  }

  .flutter-contest-list .flutter-contest-card__cash strong {
    font-size: 18px;
  }

  .flutter-contest-list .flutter-contest-card__entry {
    min-width: 120px;
    min-height: 36px;
    padding: 0 14px;
    font-size: 10px;
    gap: 0;
  }

  .flutter-contest-list .flutter-contest-card__bottom {
    margin-top: 10px;
  }

  .flutter-contest-list .flutter-contest-card__teams,
  .flutter-contest-list .flutter-contest-card__spots {
    font-size: 9px;
  }

  .mobile-match-stack .flutter-match-card {
    padding: 12px 10px 10px;
  }

  .mobile-match-stack .flutter-match-card__title {
    max-width: 170px;
    min-height: 30px;
    padding: 6px 10px;
    font-size: 9px;
  }

  .mobile-match-stack .flutter-match-card__teams {
    margin: 14px 0 10px;
    grid-template-columns: minmax(0, 1fr) minmax(150px, 170px) minmax(0, 1fr);
    gap: 6px;
  }

  .mobile-match-stack .flutter-match-card__footer {
    grid-template-columns: minmax(66px, auto) minmax(0, 1fr) minmax(66px, auto);
    gap: 6px;
  }

  .mobile-match-stack .flutter-match-card__status,
  .mobile-match-stack .flutter-match-card__prize {
    min-width: 66px;
    font-size: 8px;
  }

  .mobile-match-stack .flutter-match-card__team {
    gap: 6px;
  }

  .mobile-match-stack .flutter-match-card__code {
    font-size: 11px;
  }

  .mobile-match-stack .flutter-match-card__banner {
    min-width: 200px;
    height: 74px;
    max-height: 75px;
  }

  .mobile-match-stack .flutter-match-card__versus {
    width: 34px;
    height: 34px;
  }

  .mobile-match-stack .flutter-match-card__versus img {
    width: 18px;
    height: 18px;
  }

  .mobile-match-stack .flutter-match-card__time span {
    font-size: 9px;
  }
}

@media (max-width: 360px) {
  .flutter-tab-switcher--board {
    gap: 10px;
  }

  .flutter-tab-switcher--board .flutter-tab-switcher__tab {
    font-size: 8px;
  }

  .flutter-contest-list .flutter-contest-card__entry {
    min-width: 104px;
    min-height: 34px;
    padding: 0 10px;
    font-size: 9px;
    gap: 5px;
  }

  .flutter-contest-list .flutter-contest-card__cash strong {
    font-size: 17px;
  }

  .mobile-match-stack .flutter-match-card__time span {
    font-size: 8.5px;
  }

  .mobile-match-stack .flutter-match-card__teams {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 160px) minmax(0, 1fr);
  }

  .mobile-match-stack .flutter-match-card__code {
    font-size: 10px;
  }
}

.builder-stage {
  padding: 14px 12px 12px;
  margin: 0 6px;
  border-radius: 20px;
  background: linear-gradient(180deg, #121722 0%, #0d121a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.builder-stage__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.builder-stage__copy {
  display: grid;
  gap: 4px;
}

.builder-stage__copy strong {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.builder-stage__copy span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
}

.builder-stage__scoreboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.builder-stage__team {
  display: flex;
  align-items: center;
  gap: 8px;
}

.builder-stage__team--right {
  justify-content: flex-end;
}

.builder-stage__team strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.builder-stage__team-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.builder-stage__team-logo--placeholder {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.builder-stage__score-copy {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.builder-stage__score-copy strong {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.builder-stage__score-copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.builder-stage__progress-inline {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.builder-stage__progress-inline strong {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.builder-progress--builder {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  margin: 0;
  gap: 3px;
}

.builder-progress--builder .builder-progress__step {
  height: 7px;
  border-radius: 999px;
  font-size: 0;
  background: rgba(255, 255, 255, 0.12);
}

.builder-progress--builder .builder-progress__step--active {
  background: linear-gradient(180deg, #ffffff 0%, #cfd4dc 100%);
}

.builder-role-counts--builder {
  margin-top: 8px;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.builder-role-counts--builder .board-stat {
  padding: 7px 5px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.builder-role-counts--builder .board-stat span {
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 4px;
  font-size: 9px;
}

.builder-role-counts--builder .board-stat strong {
  color: #fff;
  font-size: 13px;
}

.builder-board {
  margin: -2px -10px -6px;
  padding: 0 10px 12px;
  display: grid;
  gap: 8px;
  background: #fff;
  border-radius: 18px 18px 0 0;
}

.mobile-switcher--builder-board {
  margin: 0 -10px;
  padding: 0 10px;
  gap: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
}

.mobile-switcher--builder-board .mobile-switcher__tab {
  color: #191919;
  font-weight: 800;
}

.mobile-switcher--builder-board .mobile-switcher__tab--active {
  color: #d91f43;
}

.mobile-switcher--builder-board .mobile-switcher__tab--active::after {
  background: #ef2448;
}

.builder-board__filters {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 0 2px;
}

.builder-board__team {
  color: #202020;
  font-size: 13px;
  font-weight: 800;
}

.builder-board__team--right {
  text-align: right;
}

.builder-board .status-banner.error {
  color: #a61f3b;
  background: #fff3f6;
  border-color: rgba(239, 36, 72, 0.16);
  box-shadow: none;
}

.builder-board__list {
  display: grid;
}

.builder-board .empty-state,
.builder-board .screen-loader {
  margin-top: 8px;
}

.builder-board .player-card {
  padding: 12px 0;
  gap: 10px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.builder-board .player-card:last-child {
  border-bottom: 0;
}

.builder-board .player-card--selected {
  box-shadow: none;
}

.player-card-order {
  width: 18px;
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.28);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.builder-board .player-card-main {
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.builder-board .player-card-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #eef0f4;
}

.builder-board .player-card-copy strong {
  color: #161616;
  font-size: 14px;
}

.builder-board .player-card-copy span {
  color: #707887;
  font-size: 11px;
}

.builder-board .player-card-team {
  min-width: 34px;
  min-height: 20px;
  color: #fff !important;
  background: #2f3652;
}

.builder-board .player-card-status {
  color: #7f8794;
}

.builder-board .player-card-status--live {
  color: #2ea85d;
}

.player-card-points {
  display: grid;
  justify-items: end;
  gap: 3px;
  min-width: 48px;
}

.player-card-points span {
  color: #7c838f;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.player-card-points strong {
  color: #171717;
  font-size: 16px;
  font-weight: 800;
}

.builder-board .player-card-toggle {
  width: 28px;
  min-width: 28px;
  height: 28px;
  min-height: 28px;
  border-radius: 999px;
  color: #27ae60;
  font-size: 18px;
  font-weight: 800;
  border: 1px solid rgba(39, 174, 96, 0.4);
  background: #fff;
}

.builder-board .player-card--selected .player-card-toggle {
  color: #fff;
  background: #ef2448;
  border-color: #ef2448;
}

.select-team-screen {
  gap: 10px;
}

.select-team-screen__toolbar {
  padding-top: 2px;
}

.select-team-screen__copy strong {
  font-size: 18px;
  font-weight: 800;
}

.select-team-screen__copy span {
  font-weight: 600;
}

.select-team-screen__create {
  min-width: 124px;
  padding: 0 16px;
  border-radius: 999px;
  background: #141a22;
}

.select-team-screen__create--empty {
  background: #fff;
  color: #111927;
}

.select-team-screen__empty-action {
  background: #fff;
  color: #111927;
}

.select-team-screen__row {
  align-items: center;
}

.select-team-screen__row .flutter-team-card {
  min-height: 146px;
  padding: 10px 12px 11px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.select-team-screen__row .flutter-team-card__top strong {
  font-size: 18px;
  color: #fff;
}

.select-team-screen__row .flutter-team-card__actions {
  gap: 6px;
}

.select-team-screen__row .flutter-team-card__middle {
  margin-top: 12px;
}

.select-team-screen__row .flutter-team-card__roles {
  margin-top: 12px;
}

.select-team-screen__footer {
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

@media (max-width: 420px) {
  .builder-stage {
    padding: 12px 10px 10px;
    margin: 0 4px;
    border-radius: 18px;
  }

  .builder-stage__copy strong {
    font-size: 15px;
  }

  .builder-stage__copy span {
    font-size: 11px;
  }

  .builder-stage__team-logo {
    width: 28px;
    height: 28px;
  }

  .builder-stage__team strong {
    font-size: 13px;
  }

  .builder-stage__score-copy strong {
    font-size: 20px;
  }

  .builder-stage__progress-inline {
    gap: 8px;
  }

  .builder-progress--builder {
    grid-template-columns: repeat(11, minmax(0, 1fr));
    gap: 2px;
  }

  .builder-progress--builder .builder-progress__step {
    min-width: 0;
  }

  .builder-board {
    margin: -2px -8px -6px;
    padding: 0 8px 10px;
    border-radius: 16px 16px 0 0;
  }

  .mobile-switcher--builder-board {
    margin: 0 -8px;
    padding: 0 8px;
    gap: 14px;
  }

  .builder-board__team,
  .builder-stage__progress-inline strong {
    font-size: 11px;
  }

  .builder-role-counts--builder {
    margin-top: 10px;
    gap: 6px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .builder-role-counts--builder .board-stat {
    padding: 6px 4px;
  }

  .builder-role-counts--builder .board-stat span {
    font-size: 8px;
  }

  .builder-role-counts--builder .board-stat strong {
    font-size: 12px;
  }

  .builder-board .player-card {
    padding: 10px 0;
    gap: 8px;
  }

  .player-card-order {
    width: 14px;
    font-size: 20px;
  }

  .builder-board .player-card-avatar {
    width: 38px;
    height: 38px;
  }

  .builder-board .player-card-copy strong {
    font-size: 13px;
  }

  .player-card-points strong {
    font-size: 14px;
  }

  .select-team-screen__copy strong {
    font-size: 16px;
  }

  .select-team-screen__create {
    min-width: 116px;
    font-size: 11px;
  }

  .select-team-screen__empty-action {
    min-width: 120px;
    min-height: 34px;
    font-size: 10px;
  }

  .select-team-screen__create--empty {
    min-width: 120px;
  }

  .select-team-screen__row .flutter-team-card {
    min-height: 138px;
    padding: 9px 10px 10px;
  }

  .select-team-screen__row .flutter-team-card__top strong {
    font-size: 16px;
  }
}

.builder-board__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.builder-board__column {
  min-width: 0;
}

.builder-board__column-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 24px;
  margin-bottom: 6px;
}

.builder-board__column-head--right {
  justify-content: flex-end;
}

.builder-board__column-head strong {
  color: #1d2430;
  font-size: 13px;
  font-weight: 800;
}

.builder-board__column-list {
  display: grid;
}

.builder-board__column .player-card {
  padding: 10px 0;
  gap: 8px;
}

.builder-board__column .player-card-main {
  gap: 8px;
}

.builder-board__column .player-card-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
}

.builder-board__column .player-card-copy {
  gap: 2px;
}

.builder-board__column .player-card-copy strong {
  font-size: 12px;
  line-height: 1.15;
}

.builder-board__column .player-card-copy span {
  font-size: 10px;
}

.builder-board__column .player-card-copy__top {
  justify-content: flex-start;
}

.builder-board__column .player-card-copy__meta {
  gap: 4px;
}

.builder-board__column .player-card-order {
  width: 12px;
  color: rgba(0, 0, 0, 0.26);
  font-size: 16px;
}

.builder-board__column .player-card-toggle {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  font-size: 16px;
}

@media (max-width: 420px) {
  .builder-board__columns {
    gap: 10px;
  }

  .builder-board__column-head strong {
    font-size: 12px;
  }

  .builder-board__column .player-card {
    padding: 9px 0;
    gap: 6px;
  }

  .builder-board__column .player-card-main {
    gap: 6px;
  }

  .builder-board__column .player-card-avatar {
    width: 30px;
    height: 30px;
  }

  .builder-board__column .player-card-copy strong {
    font-size: 11px;
  }

  .builder-board__column .player-card-copy span {
    font-size: 9px;
  }

  .builder-board__column .player-card-order {
    width: 10px;
    font-size: 14px;
  }

  .builder-board__column .player-card-toggle {
    width: 22px;
    min-width: 22px;
    height: 22px;
    min-height: 22px;
    font-size: 15px;
  }
}

.builder-board {
  padding-bottom: 92px;
}

.builder-board__rows {
  display: grid;
}

.builder-board__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  min-height: 64px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.builder-board__row:last-child {
  border-bottom: 0;
}

.builder-board__row-spacer {
  min-height: 64px;
}

.builder-board__row .player-card {
  min-height: 64px;
  padding: 10px 0;
  gap: 8px;
  align-items: center;
}

.builder-board__row .player-card-main {
  gap: 8px;
  min-width: 0;
}

.builder-board__row .player-card-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
}

.builder-board__row .player-card-copy {
  gap: 2px;
}

.builder-board__row .player-card-copy strong {
  color: #161616;
  font-size: 12px;
  line-height: 1.15;
}

.builder-board__row .player-card-copy span {
  color: #707887;
  font-size: 10px;
}

.builder-board__row .player-card-copy__top {
  justify-content: flex-start;
}

.builder-board__row .player-card-copy__meta {
  gap: 4px;
}

.builder-board__row .player-card-order {
  width: 12px;
  color: rgba(0, 0, 0, 0.26);
  font-size: 16px;
}

.builder-board__row .player-card-toggle {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  font-size: 16px;
}

@media (max-width: 420px) {
  .builder-board {
    padding-bottom: 86px;
  }

  .builder-board__row {
    gap: 12px;
    min-height: 60px;
  }

  .builder-board__row-spacer,
  .builder-board__row .player-card {
    min-height: 60px;
  }

  .builder-board__row .player-card {
    padding: 9px 0;
    gap: 6px;
  }

  .builder-board__row .player-card-main {
    gap: 6px;
  }

  .builder-board__row .player-card-avatar {
    width: 30px;
    height: 30px;
  }

  .builder-board__row .player-card-copy strong {
    font-size: 11px;
  }

  .builder-board__row .player-card-copy span {
    font-size: 9px;
  }

  .builder-board__row .player-card-order {
    width: 10px;
    font-size: 14px;
  }

  .builder-board__row .player-card-toggle {
    width: 22px;
    min-width: 22px;
    height: 22px;
    min-height: 22px;
    font-size: 15px;
  }
}

.contest-detail-summary__locked-pill--full {
  background: linear-gradient(180deg, rgba(196, 45, 68, 0.26), rgba(120, 18, 34, 0.34));
  border-color: rgba(255, 88, 122, 0.34);
}

.flutter-contest-list .flutter-contest-card__badge--full {
  background: linear-gradient(180deg, rgba(154, 28, 49, 0.94), rgba(97, 12, 29, 0.98));
  color: #ffe7ec;
}

.flutter-contest-card__entry--full,
.flutter-contest-list .flutter-contest-card__entry--full {
  background: linear-gradient(180deg, rgba(64, 54, 58, 0.92), rgba(34, 27, 30, 0.96));
  color: rgba(255, 241, 244, 0.76);
  box-shadow: none;
}

.flutter-contest-card__entry--live,
.flutter-contest-list .flutter-contest-card__entry--live {
  background: linear-gradient(180deg, rgba(154, 28, 49, 0.96), rgba(103, 13, 34, 0.98));
  color: #fff0f4;
  box-shadow: none;
}

.flutter-contest-card__entry--review,
.flutter-contest-list .flutter-contest-card__entry--review {
  background: linear-gradient(180deg, rgba(46, 59, 104, 0.94), rgba(23, 31, 61, 0.98));
  color: #dfe7ff;
  box-shadow: none;
}

.contest-page-tools {
  margin: 0 0 14px;
  display: flex;
  justify-content: flex-end;
}

.contest-page-tools__link,
.odds-page__backlink,
.odds-market-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.odds-page {
  display: grid;
  gap: 10px;
}

.odds-page__appbar {
  margin-bottom: 0;
}

.odds-page__head {
  display: grid;
  gap: 6px;
}

.odds-page__head h2 {
  margin: 8px 0 6px;
  font-size: 26px;
  line-height: 1.05;
}

.odds-page__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.odds-summary-card,
.odds-market-card,
.odds-page__notes {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(31, 23, 26, 0.96), rgba(17, 13, 15, 0.98));
  border: 1px solid rgba(239, 36, 72, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.odds-summary-card {
  padding: 18px;
  display: grid;
  gap: 16px;
}

.odds-summary-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.odds-summary-card__top h3 {
  margin: 8px 0 0;
  font-size: 20px;
}

.odds-summary-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.odds-summary-card__badge--live {
  background: rgba(29, 197, 97, 0.14);
  border-color: rgba(29, 197, 97, 0.34);
  color: #97f1ba;
}

.odds-summary-card__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.odds-summary-card__meta div {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.odds-summary-card__meta span {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.odds-summary-card__meta strong {
  display: block;
  font-size: 14px;
}

.odds-market-card {
  padding: 18px;
  display: grid;
  gap: 16px;
}

.odds-market-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.odds-market-card__head div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.odds-market-card__head span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-transform: uppercase;
}

.odds-market-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
}

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

.odds-match-card {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(31, 23, 26, 0.96), rgba(17, 13, 15, 0.98));
  border: 1px solid rgba(239, 36, 72, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 16px;
}

.odds-match-card__top,
.odds-match-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.odds-match-card__top h3 {
  margin: 8px 0 6px;
  font-size: 22px;
  line-height: 1.05;
}

.odds-match-card__top p,
.odds-match-card__footer small {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.odds-match-card__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.odds-match-card__status--live {
  background: rgba(29, 197, 97, 0.14);
  border-color: rgba(29, 197, 97, 0.34);
  color: #97f1ba;
}

.odds-match-card__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.odds-match-card__teams strong {
  font-size: 22px;
  line-height: 1;
}

.odds-match-card__teams span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.odds-match-card__chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
}

.odds-match-card__chip {
  padding: 14px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(19, 22, 31, 0.92), rgba(13, 15, 22, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 6px;
}

.odds-match-card__chip span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.odds-match-card__chip strong {
  font-size: 24px;
  line-height: 1;
}

.odds-match-card__chip--empty {
  place-items: center;
  text-align: center;
}

.odds-match-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(239, 36, 72, 0.96), rgba(169, 14, 41, 0.98));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.odds-outcome-card {
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(19, 22, 31, 0.92), rgba(13, 15, 22, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 8px;
  min-height: 118px;
}

.odds-outcome-card__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.74);
}

.odds-outcome-card__price {
  font-size: 28px;
  line-height: 1;
  color: #fff;
}

.odds-outcome-card__meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.54);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.odds-page__notes {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.odds-page__notes strong {
  font-size: 15px;
}

.odds-page__notes p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .odds-summary-card__meta {
    grid-template-columns: 1fr;
  }

  .odds-match-card__top,
  .odds-match-card__footer,
  .odds-market-card__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .odds-match-card__link {
    width: 100%;
  }

  .contest-page-tools {
    justify-content: stretch;
  }

  .contest-page-tools__link,
  .odds-page__backlink,
  .odds-market-card__link {
    width: 100%;
  }
}

.odds-page--list,
.odds-page--detail {
  gap: 10px;
}

.odds-page--list .odds-page__head p,
.odds-page--detail .odds-page__head p {
  max-width: 620px;
  font-size: 13px;
}

.odds-page--list .odds-page__head h2,
.odds-page--detail .odds-page__head h2 {
  font-size: 16px;
  margin: 3px 0 0;
  line-height: 1.12;
}

.odds-page--detail .odds-page__backlink {
  min-height: 32px;
  padding: 0 12px;
  font-size: 11px;
}

.odds-board-list {
  display: grid;
  gap: 10px;
}

.odds-detail-board__markets {
  display: grid;
  gap: 14px;
}

.odds-board-card__shell {
  display: block;
  color: inherit;
  text-decoration: none;
}

.odds-board-card,
.odds-detail-hero,
.odds-detail-board {
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 34%),
    linear-gradient(180deg, rgba(24, 26, 55, 0.96), rgba(15, 16, 34, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.odds-board-card {
  padding: 10px;
  display: grid;
  gap: 8px;
}

.odds-board-card__league,
.odds-detail-hero__top,
.odds-board-card__meta,
.odds-market-block__head,
.odds-detail-board__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.odds-board-card__league-main,
.odds-detail-hero__top > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.odds-board-card__league-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.odds-board-card__league-main small,
.odds-detail-hero__top p,
.odds-detail-board__head small {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
}

.odds-board-card__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.odds-board-card__timing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.odds-board-card__timing strong {
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.odds-board-card__timing span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.odds-board-card__meta-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.odds-board-card__status,
.odds-board-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.odds-board-card__status--live {
  background: rgba(29, 197, 97, 0.16);
  border-color: rgba(29, 197, 97, 0.32);
  color: #9cf4bf;
}

.odds-board-card__teams,
.odds-detail-hero__teams {
  display: grid;
  gap: 7px;
}

.odds-board-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.odds-board-card__footer small,
.odds-board-card__footer span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.odds-team-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.odds-team-row__badge {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}

.odds-team-row__badge--home {
  background: linear-gradient(180deg, rgba(239, 36, 72, 0.92), rgba(169, 14, 41, 0.98));
}

.odds-team-row__badge--away {
  background: linear-gradient(180deg, rgba(66, 136, 255, 0.9), rgba(35, 66, 161, 0.98));
}

.odds-team-row__copy {
  display: grid;
  gap: 0;
}

.odds-team-row__copy small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.odds-team-row__copy strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.15;
}

.odds-board-card__markets {
  display: grid;
  gap: 12px;
}

.odds-market-block {
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  gap: 8px;
}

.odds-backlay-board {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.odds-backlay-board__head,
.odds-backlay-board__row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(80px, 0.7fr) minmax(80px, 0.7fr);
  gap: 8px;
  align-items: center;
}

.odds-backlay-board__head {
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.odds-backlay-board__head span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.odds-backlay-board__body {
  display: grid;
}

.odds-backlay-board__row {
  padding: 8px 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.odds-backlay-board__row:last-child {
  border-bottom: 0;
}

.odds-backlay-board__team {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.odds-backlay-board__badge {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 800;
  color: #fff;
}

.odds-backlay-board__badge--home {
  background: linear-gradient(180deg, rgba(239, 36, 72, 0.92), rgba(169, 14, 41, 0.98));
}

.odds-backlay-board__badge--away {
  background: linear-gradient(180deg, rgba(66, 136, 255, 0.9), rgba(35, 66, 161, 0.98));
}

.odds-backlay-board__badge--logo {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 11, 29, 0.9);
}

.odds-backlay-board__badge--logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.odds-backlay-board__team strong {
  color: #fff;
  font-size: 11px;
  line-height: 1.2;
}

.odds-backlay-board__price {
  min-height: 44px;
  padding: 6px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(62, 75, 150, 0.32), rgba(35, 42, 91, 0.42));
  border: 1px solid rgba(112, 133, 255, 0.16);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
}

.odds-backlay-board__price--lay {
  background: linear-gradient(180deg, rgba(109, 74, 132, 0.28), rgba(67, 36, 90, 0.4));
  border-color: rgba(193, 123, 255, 0.15);
}

.odds-backlay-board__price small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.odds-backlay-board__price strong {
  color: #51bbff;
  font-size: 16px;
  line-height: 1;
}

.odds-backlay-board__price--lay strong {
  color: #a8b7ff;
}

.odds-backlay-board__price--button {
  cursor: pointer;
}

.odds-backlay-board__price--button:active {
  transform: translateY(1px);
}

.odds-backlay-board__price--disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.odds-backlay-board__empty {
  display: grid;
  gap: 6px;
  padding: 14px;
  text-align: center;
}

.odds-backlay-board__empty strong {
  color: #fff;
  font-size: 13px;
}

.odds-backlay-board__empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.45;
}

.odds-market-block--empty {
  min-height: 120px;
}

.odds-market-block__head strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 12px;
}

.odds-market-block__head span,
.odds-market-block__head small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.odds-market-block__quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 8px;
}

.odds-quote-card {
  min-height: 74px;
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(62, 75, 150, 0.32), rgba(35, 42, 91, 0.42));
  border: 1px solid rgba(112, 133, 255, 0.16);
  display: grid;
  gap: 5px;
}

.odds-quote-card__label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.3;
}

.odds-quote-card__price {
  color: #51bbff;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.odds-quote-card__meta {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.odds-market-block__empty {
  min-height: 84px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  gap: 6px;
}

.odds-market-block__empty strong {
  color: #fff;
}

.odds-market-block__empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.45;
}

.odds-detail-hero,
.odds-detail-board {
  padding: 12px;
  display: grid;
  gap: 10px;
}

.odds-detail-hero__top {
  align-items: center;
  flex-wrap: nowrap;
}

.odds-detail-hero__titlebar h3,
.odds-detail-hero__top h3 {
  margin: 2px 0 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.08;
}

.odds-detail-hero__actions {
  display: flex;
}

.odds-detail-hero__actions .odds-page__backlink {
  width: 100%;
  justify-content: center;
}

.odds-live-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 72, 72, 0.16);
  border: 1px solid rgba(255, 72, 72, 0.35);
  color: #ff8d8d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: oddsLivePulse 1.2s infinite ease-in-out;
  flex: 0 0 auto;
  white-space: nowrap;
}

@keyframes oddsLivePulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 72, 72, 0.18);
  }
  50% {
    opacity: 0.62;
    box-shadow: 0 0 0 4px rgba(255, 72, 72, 0.02);
  }
}

.odds-versus-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.odds-versus-strip--compact {
  padding: 8px;
}

.odds-versus-strip--compact .odds-versus-strip__team strong {
  font-size: 11px;
}

.odds-versus-strip--compact .odds-versus-strip__badge {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 7px;
  font-size: 8px;
}

.odds-versus-strip--compact .odds-versus-strip__vs {
  min-width: 32px;
  min-height: 20px;
  padding: 0 6px;
  font-size: 8px;
}

.odds-versus-strip__team {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.odds-versus-strip__team strong {
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  word-break: break-word;
}

.odds-versus-strip__team--away {
  flex-direction: row-reverse;
  text-align: right;
}

.odds-versus-strip__badge {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
}

.odds-versus-strip__badge--home {
  background: linear-gradient(180deg, rgba(239, 36, 72, 0.92), rgba(169, 14, 41, 0.98));
}

.odds-versus-strip__badge--away {
  background: linear-gradient(180deg, rgba(66, 136, 255, 0.9), rgba(35, 66, 161, 0.98));
}

.odds-versus-strip__badge--logo {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 11, 29, 0.9);
}

.odds-versus-strip__badge--logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.odds-versus-strip__vs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* odds implementation start: team icon + score payload */
.odds-score-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.odds-score-strip--compact {
  padding: 6px 8px;
}

.odds-score-strip--completed {
  border-color: rgba(96, 209, 160, 0.22);
  background: rgba(21, 59, 48, 0.34);
}

.odds-score-strip__side {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.odds-score-strip__side--away {
  text-align: right;
}

.odds-score-strip__side small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.odds-score-strip__side strong {
  color: #fff;
  font-size: 11px;
  line-height: 1.1;
}

.odds-score-strip__divider {
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  line-height: 1;
}

.odds-toss-summary {
  padding: 7px 9px;
  border-radius: 12px;
  border: 1px solid rgba(124, 169, 255, 0.25);
  background: rgba(15, 28, 77, 0.42);
  display: grid;
  gap: 3px;
}

.odds-toss-summary small {
  color: rgba(201, 220, 255, 0.8);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.odds-toss-summary strong {
  color: #fff;
  font-size: 11px;
  line-height: 1.2;
}

.odds-toss-summary--suspended {
  border-color: rgba(255, 107, 126, 0.38);
  background: rgba(66, 18, 31, 0.45);
}

/* odds implementation start: secure single bet simulator */
.odds-bet-panel-backdrop,
.odds-bet-popup-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: end center;
  padding: 12px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
  z-index: 90;
}

.odds-bet-panel {
  width: min(430px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(122, 156, 255, 0.25);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(180deg, rgba(18, 23, 58, 0.98), rgba(9, 13, 36, 0.99));
  padding: 14px;
  display: grid;
  gap: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.odds-bet-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.odds-bet-panel__head h4 {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.odds-bet-panel__close {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.odds-bet-panel__match,
.odds-bet-panel__selection,
.odds-bet-panel__wallet,
.odds-bet-panel__potential {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 10px;
  display: grid;
  gap: 3px;
}

.odds-bet-panel__match strong,
.odds-bet-panel__selection strong,
.odds-bet-panel__wallet strong,
.odds-bet-panel__potential strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.odds-bet-panel__match span,
.odds-bet-panel__selection small,
.odds-bet-panel__wallet span,
.odds-bet-panel__potential span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.odds-bet-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.odds-bet-chip {
  min-width: 52px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(125, 170, 255, 0.28);
  background: rgba(16, 34, 95, 0.5);
  color: #d4e5ff;
  font-size: 12px;
  font-weight: 700;
}

.odds-bet-panel__field {
  display: grid;
  gap: 6px;
}

.odds-bet-panel__field label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.odds-bet-panel__field input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
}

.odds-bet-panel__submit {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff7f22, #e05500);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.odds-bet-panel__submit:disabled {
  opacity: 0.7;
}

.odds-bet-popup {
  width: min(360px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 123, 123, 0.3);
  background: linear-gradient(180deg, rgba(46, 15, 26, 0.97), rgba(28, 11, 20, 0.98));
  padding: 14px;
  display: grid;
  gap: 9px;
}

.odds-bet-popup h4 {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.odds-bet-popup p {
  margin: 0;
  color: rgba(255, 225, 225, 0.88);
  font-size: 12px;
  line-height: 1.45;
}

.odds-bet-popup__actions {
  display: grid;
  gap: 8px;
}

.odds-bet-popup__button {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
}

.odds-bet-popup__button--primary {
  border-color: rgba(255, 127, 34, 0.55);
  background: linear-gradient(180deg, #ff7f22, #e05500);
}
/* odds implementation end: secure single bet simulator */
/* odds implementation end: team icon + score payload */

.odds-detail-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.odds-detail-hero__meta div {
  padding: 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.odds-detail-hero__meta span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.odds-detail-hero__meta strong,
.odds-detail-board__head h4 {
  color: #fff;
  font-size: 11px;
}

.odds-detail-board__head {
  align-items: center;
}

.odds-detail-board__head h4 {
  margin: 6px 0 0;
}

.odds-market-meta {
  padding: 9px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.odds-market-meta strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 10px;
}

.odds-market-meta span,
.odds-market-meta small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.odds-page--detail .odds-page__backlink {
  min-width: 144px;
}

/* odds implementation start: toss market board */
.odds-toss-board {
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(120, 162, 255, 0.18);
  background: linear-gradient(145deg, rgba(17, 27, 76, 0.6), rgba(8, 13, 44, 0.88));
  padding: 14px;
}

.odds-toss-board--suspended {
  border-color: rgba(252, 86, 86, 0.33);
  background: linear-gradient(145deg, rgba(55, 17, 30, 0.6), rgba(24, 11, 22, 0.9));
}

.odds-toss-board__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.odds-toss-board__head h4 {
  margin: 2px 0 0;
  color: #fff;
  font-size: 16px;
}

.odds-toss-board__winner {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.odds-toss-board__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.odds-toss-board__status--open {
  border-color: rgba(93, 255, 156, 0.45);
  background: rgba(28, 107, 69, 0.34);
  color: #a9ffd0;
}

.odds-toss-board__status--suspended {
  border-color: rgba(255, 120, 120, 0.44);
  background: rgba(122, 32, 53, 0.4);
  color: #ffd2d2;
}

.odds-toss-board__suspend-note {
  margin: 10px 0 0;
  color: rgba(255, 215, 215, 0.8);
  font-size: 11px;
}

.odds-toss-board__grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.odds-toss-board__tile {
  border-radius: 13px;
  border: 1px solid rgba(117, 156, 255, 0.24);
  background: rgba(15, 24, 69, 0.75);
  padding: 10px;
}

.odds-toss-board__tile small {
  display: block;
  color: rgba(203, 220, 255, 0.7);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.odds-toss-board__tile strong {
  margin-top: 4px;
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.odds-toss-board__tile span {
  margin-top: 6px;
  display: block;
  color: #89d8ff;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}
/* odds implementation end: toss market board */

/* odds implementation start: toss market board visual refresh */
.odds-toss-board {
  padding: 12px;
  border-radius: 16px;
  border-color: rgba(74, 122, 255, 0.42);
  background: linear-gradient(145deg, rgba(10, 23, 77, 0.75), rgba(7, 16, 54, 0.94));
}

.odds-toss-board--suspended {
  border-color: rgba(239, 88, 109, 0.5);
  background: linear-gradient(145deg, rgba(47, 12, 26, 0.82), rgba(25, 9, 19, 0.94));
}

.odds-toss-board__head h4 {
  font-size: 20px;
  line-height: 1.05;
}

.odds-toss-board__winner {
  margin-top: 6px;
  color: rgba(198, 225, 255, 0.84);
}

.odds-toss-board__status {
  min-height: 28px;
  padding: 0 12px;
}

.odds-toss-board__suspend-note {
  margin: 9px 0 0;
  color: rgba(255, 194, 194, 0.9);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.odds-toss-board__body {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(112, 152, 255, 0.2);
  background: rgba(14, 24, 68, 0.66);
  overflow: hidden;
}

.odds-toss-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 11px;
  border-bottom: 1px solid rgba(130, 165, 255, 0.14);
}

.odds-toss-row:last-child {
  border-bottom: none;
}

.odds-toss-row__team {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.odds-toss-row__badge {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.odds-toss-row__badge--home {
  background: linear-gradient(145deg, #ff355f, #c41037);
}

.odds-toss-row__badge--away {
  background: linear-gradient(145deg, #4a8dff, #2951d0);
}

.odds-toss-row__badge--logo {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 11, 29, 0.9);
}

.odds-toss-row__badge--logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.odds-toss-row__copy {
  min-width: 0;
}

.odds-toss-row__copy small {
  display: block;
  color: rgba(191, 210, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.odds-toss-row__copy strong {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.odds-toss-row__price {
  min-width: 96px;
  border-radius: 12px;
  border: 1px solid rgba(86, 136, 255, 0.4);
  background: linear-gradient(145deg, rgba(23, 46, 114, 0.8), rgba(13, 31, 86, 0.92));
  padding: 8px 10px;
  text-align: center;
}

.odds-toss-row__price--button {
  cursor: pointer;
}

.odds-toss-row__price--button:active {
  transform: translateY(1px);
}

.odds-toss-row__price small {
  display: block;
  color: rgba(195, 217, 255, 0.8);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.odds-toss-row__price strong {
  display: block;
  margin-top: 3px;
  color: #8de6ff;
  font-size: 27px;
  line-height: 1;
  font-weight: 700;
}

.odds-toss-row__price--suspended {
  border-color: rgba(255, 121, 121, 0.42);
  background: linear-gradient(145deg, rgba(97, 28, 45, 0.72), rgba(62, 18, 31, 0.9));
}

.odds-toss-row__price--suspended strong {
  color: #ffd7d7;
}

.odds-toss-row__price--disabled {
  cursor: not-allowed;
}
/* odds implementation end: toss market board visual refresh */

/* odds implementation start: toss decision + innings odd-even frontend boards */
.odds-extra-markets {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(112, 152, 255, 0.22);
  background: linear-gradient(145deg, rgba(10, 18, 58, 0.8), rgba(7, 13, 42, 0.95));
  display: grid;
  gap: 10px;
}

.odds-extra-markets__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.odds-extra-markets__head h4 {
  margin: 3px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.1;
}

.odds-extra-markets__head small {
  color: rgba(191, 210, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.odds-extra-markets__list {
  display: grid;
  gap: 9px;
}

.odds-extra-market {
  border-radius: 14px;
  border: 1px solid rgba(113, 151, 255, 0.2);
  background: rgba(15, 24, 69, 0.66);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.odds-extra-market--suspended {
  border-color: rgba(255, 126, 126, 0.3);
  background: rgba(56, 18, 33, 0.56);
}

.odds-extra-market--empty {
  min-height: 92px;
  place-items: center;
  text-align: center;
}

.odds-extra-market--empty strong {
  color: #fff;
  font-size: 12px;
}

.odds-extra-market--empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.4;
}

.odds-extra-market__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.odds-extra-market__head strong {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
}

.odds-extra-market__head small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.odds-extra-market__status {
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.odds-extra-market__status--open {
  border-color: rgba(93, 255, 156, 0.45);
  background: rgba(28, 107, 69, 0.34);
  color: #a9ffd0;
}

.odds-extra-market__status--suspended {
  border-color: rgba(255, 120, 120, 0.44);
  background: rgba(122, 32, 53, 0.4);
  color: #ffd2d2;
}

.odds-extra-market__reason {
  margin: 0;
  color: rgba(255, 205, 205, 0.92);
  font-size: 10px;
  line-height: 1.35;
}

.odds-extra-market__body {
  border-radius: 12px;
  border: 1px solid rgba(115, 154, 255, 0.2);
  background: rgba(12, 20, 58, 0.62);
  overflow: hidden;
}

.odds-extra-market__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(94px, auto);
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border-bottom: 1px solid rgba(130, 165, 255, 0.12);
}

.odds-extra-market__row:last-child {
  border-bottom: none;
}

.odds-extra-market__label {
  min-width: 0;
}

.odds-extra-market__label strong {
  color: #fff;
  font-size: 11px;
  line-height: 1.25;
  display: block;
}

.odds-extra-market__label small {
  margin-top: 2px;
  display: block;
  color: rgba(190, 214, 255, 0.7);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.odds-extra-market__price {
  border-radius: 11px;
  border: 1px solid rgba(86, 136, 255, 0.38);
  background: linear-gradient(145deg, rgba(23, 46, 114, 0.8), rgba(13, 31, 86, 0.92));
  padding: 7px 9px;
  text-align: center;
  min-width: 90px;
}

.odds-extra-market__price--button {
  cursor: pointer;
}

.odds-extra-market__price--button:active {
  transform: translateY(1px);
}

.odds-extra-market__price--suspended {
  border-color: rgba(255, 121, 121, 0.42);
  background: linear-gradient(145deg, rgba(97, 28, 45, 0.72), rgba(62, 18, 31, 0.9));
}

.odds-extra-market__price--disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.odds-extra-market__price small {
  display: block;
  color: rgba(195, 217, 255, 0.8);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.odds-extra-market__price strong {
  display: block;
  margin-top: 2px;
  color: #8de6ff;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}

.odds-extra-market__price--suspended strong {
  color: #ffd7d7;
}

.odds-extra-market__empty {
  min-height: 70px;
  display: grid;
  place-items: center;
  gap: 5px;
  text-align: center;
  padding: 10px;
}

.odds-extra-market__empty strong {
  color: #fff;
  font-size: 11px;
}

.odds-extra-market__empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.4;
}
/* odds implementation end: toss decision + innings odd-even frontend boards */

@media (max-width: 640px) {
  .odds-market-block__head,
  .odds-market-meta,
  .odds-detail-board__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .odds-board-card__league,
  .odds-board-card__meta {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .odds-board-card__league-main,
  .odds-board-card__timing,
  .odds-board-card__meta-chips {
    flex-wrap: nowrap;
  }

  .odds-board-card__meta-chips {
    justify-content: flex-end;
    gap: 6px;
  }

  .odds-detail-hero__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
  }

  .odds-page--detail .odds-page__backlink {
    width: 100%;
  }

  .odds-board-card__meta-chips {
    justify-content: flex-start;
  }

  .odds-team-row__copy strong {
    font-size: 12px;
  }

  .odds-detail-hero__meta {
    grid-template-columns: 1fr;
  }

  .odds-score-strip {
    padding: 6px 8px;
    gap: 6px;
  }

  .odds-score-strip__side strong {
    font-size: 10px;
  }

  .odds-toss-summary strong {
    font-size: 10px;
  }

  .odds-bet-panel-backdrop,
  .odds-bet-popup-backdrop {
    padding: 10px;
  }

  .odds-bet-panel,
  .odds-bet-popup {
    padding: 12px;
  }

  .odds-bet-panel__head h4,
  .odds-bet-popup h4 {
    font-size: 15px;
  }

  .odds-bet-panel__match strong,
  .odds-bet-panel__selection strong,
  .odds-bet-panel__wallet strong,
  .odds-bet-panel__potential strong {
    font-size: 12px;
  }

  .odds-backlay-board__head,
  .odds-backlay-board__row {
    grid-template-columns: minmax(0, 1fr) 72px 72px;
  }

  .odds-versus-strip {
    grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
    gap: 6px;
    padding: 8px;
  }

  .odds-versus-strip__team {
    gap: 6px;
  }

  .odds-versus-strip__team--away {
    flex-direction: row-reverse;
    text-align: right;
  }

  .odds-versus-strip__badge {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 7px;
    font-size: 8px;
  }

  .odds-versus-strip__team strong {
    font-size: 10px;
    line-height: 1.15;
  }

  .odds-versus-strip__vs {
    min-width: 32px;
    min-height: 20px;
    padding: 0 6px;
    font-size: 8px;
  }

  .odds-detail-hero__actions .odds-page__backlink {
    min-height: 28px;
    font-size: 10px;
  }

  .odds-detail-board__head h4 {
    margin: 3px 0 0;
  }

  /* odds implementation start: toss market board responsive */
  .odds-toss-board__head {
    align-items: flex-start;
    gap: 6px;
  }

  .odds-toss-board__head h4 {
    font-size: 18px;
  }

  .odds-toss-row {
    padding: 9px;
    gap: 8px;
  }

  .odds-toss-row__badge {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 8px;
    font-size: 8px;
  }

  .odds-toss-row__copy strong {
    font-size: 13px;
  }

  .odds-toss-row__price {
    min-width: 82px;
    padding: 7px 8px;
  }

  .odds-toss-row__price strong {
    font-size: 22px;
  }
  /* odds implementation end: toss market board responsive */

  /* odds implementation start: toss decision + innings odd-even frontend boards responsive */
  .odds-extra-markets {
    padding: 10px;
    gap: 8px;
  }

  .odds-extra-markets__head h4 {
    font-size: 14px;
  }

  .odds-extra-market {
    padding: 9px;
    gap: 7px;
  }

  .odds-extra-market__row {
    grid-template-columns: minmax(0, 1fr) 84px;
    gap: 7px;
    padding: 7px 8px;
  }

  .odds-extra-market__label strong {
    font-size: 10px;
  }

  .odds-extra-market__price {
    min-width: 82px;
    padding: 6px 8px;
  }

  .odds-extra-market__price strong {
    font-size: 18px;
  }
  /* odds implementation end: toss decision + innings odd-even frontend boards responsive */
}

/* odds implementation start: compact toss + innings board refresh */
.odds-toss-board {
  padding: 10px;
  border-radius: 14px;
}

.odds-toss-board__head h4 {
  font-size: 16px;
}

.odds-toss-board__winner {
  margin-top: 4px;
  font-size: 9px;
}

.odds-toss-row {
  padding: 8px 9px;
  gap: 8px;
}

.odds-toss-row__copy strong {
  font-size: 12px;
}

.odds-toss-row__price {
  min-width: 74px;
  padding: 6px 7px;
}

.odds-toss-row__price strong {
  font-size: 16px;
}

.odds-extra-markets {
  padding: 10px;
  gap: 8px;
}

.odds-extra-markets__head h4 {
  font-size: 14px;
}

.odds-extra-markets__head small {
  font-size: 8px;
}

.odds-extra-market {
  padding: 9px;
  gap: 7px;
}

.odds-extra-market__head strong {
  font-size: 11px;
}

.odds-extra-market__head small {
  font-size: 8px;
}

.odds-extra-market__status {
  min-height: 20px;
  font-size: 7px;
}

.odds-extra-market__reason {
  font-size: 9px;
}

.odds-extra-market__decision-body {
  display: grid;
  gap: 7px;
  border-radius: 10px;
  border: 1px solid rgba(115, 154, 255, 0.2);
  background: rgba(12, 20, 58, 0.62);
  overflow: hidden;
}

.odds-extra-market__decision-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-bottom: 1px solid rgba(130, 165, 255, 0.12);
}

.odds-extra-market__decision-row:last-child {
  border-bottom: none;
}

.odds-extra-market__decision-team {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.odds-extra-market__decision-team strong {
  display: block;
  color: #fff;
  font-size: 11px;
  line-height: 1.2;
}

.odds-extra-market__decision-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(68px, 72px));
  gap: 7px;
}

.odds-extra-market__decision-prices .odds-backlay-board__price {
  min-width: 68px;
  padding: 6px 7px;
  border-radius: 10px;
}

.odds-extra-market__decision-prices .odds-backlay-board__price small {
  font-size: 7px;
}

.odds-extra-market__decision-prices .odds-backlay-board__price strong {
  margin-top: 2px;
  font-size: 15px;
}

.odds-extra-market__innings-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.odds-extra-market__innings-row .odds-backlay-board__price {
  min-width: 0;
  padding: 7px 8px;
  border-radius: 10px;
}

.odds-extra-market__innings-row .odds-backlay-board__price small {
  font-size: 7px;
}

.odds-extra-market__innings-row .odds-backlay-board__price strong {
  margin-top: 2px;
  font-size: 16px;
}

@media (max-width: 640px) {
  .odds-extra-market__decision-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .odds-extra-market__decision-prices {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .odds-extra-market__decision-team strong {
    font-size: 10px;
  }

  .odds-extra-market__decision-prices .odds-backlay-board__price strong,
  .odds-extra-market__innings-row .odds-backlay-board__price strong {
    font-size: 14px;
  }
}
/* odds implementation end: compact toss + innings board refresh */

/* odds implementation start: odds bet history page */
.odds-page__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.odds-page__history-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(119, 163, 255, 0.35);
  background: linear-gradient(135deg, rgba(28, 44, 118, 0.92), rgba(24, 30, 66, 0.92));
  color: #dce8ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.odds-price-value {
  display: inline-block;
}

.odds-price-value--flash {
  animation: odds-price-flash 0.85s ease;
}

@keyframes odds-price-flash {
  0% {
    transform: scale(1);
    color: inherit;
  }
  35% {
    transform: scale(1.08);
    color: #7ef5be;
  }
  100% {
    transform: scale(1);
    color: inherit;
  }
}

.odds-history-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.odds-history-summary article {
  border: 1px solid rgba(122, 157, 255, 0.24);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(22, 33, 94, 0.88), rgba(15, 22, 58, 0.88));
  padding: 10px;
}

.odds-history-summary small {
  display: block;
  color: rgba(194, 212, 255, 0.78);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.odds-history-summary strong {
  margin-top: 3px;
  display: block;
  color: #fff;
  font-size: 15px;
}

.odds-history-list {
  display: grid;
  gap: 10px;
}

.odds-history-item {
  border: 1px solid rgba(122, 157, 255, 0.22);
  border-radius: 14px;
  padding: 11px;
  background: linear-gradient(150deg, rgba(23, 35, 99, 0.9), rgba(14, 19, 50, 0.9));
}

.odds-history-item__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.odds-history-item__head strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
  display: block;
}

.odds-history-item__head small {
  margin-top: 2px;
  display: block;
  color: rgba(192, 208, 255, 0.72);
  font-size: 9px;
}

.odds-history-item__status {
  min-height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(117, 157, 255, 0.28);
  padding: 3px 8px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cddfff;
  background: rgba(57, 75, 141, 0.38);
}

.odds-history-item__status--won {
  border-color: rgba(38, 197, 126, 0.45);
  color: #a4f6ce;
  background: rgba(16, 112, 69, 0.32);
}

.odds-history-item__status--lost {
  border-color: rgba(239, 102, 117, 0.45);
  color: #ffbec6;
  background: rgba(132, 37, 51, 0.34);
}

.odds-history-item__status--void {
  border-color: rgba(103, 205, 243, 0.45);
  color: #bbebff;
  background: rgba(20, 93, 122, 0.34);
}

.odds-history-item__meta {
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.odds-history-item__meta span {
  border-radius: 999px;
  border: 1px solid rgba(121, 157, 255, 0.24);
  padding: 3px 8px;
  color: #d2e4ff;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.odds-history-item__selection {
  margin-top: 7px;
}

.odds-history-item__selection small {
  color: rgba(192, 208, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.odds-history-item__selection strong {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 13px;
}

.odds-history-item__grid {
  margin-top: 9px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.odds-history-item__grid > div {
  border: 1px solid rgba(117, 153, 251, 0.2);
  border-radius: 10px;
  padding: 7px;
  background: rgba(11, 16, 44, 0.56);
}

.odds-history-item__grid small {
  color: rgba(182, 199, 245, 0.72);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.odds-history-item__grid strong {
  margin-top: 3px;
  display: block;
  color: #fff;
  font-size: 13px;
}
/* odds implementation end: odds bet history page */

