/* [project]/app/styles.css [app-client] (css) */
:root {
  --nitro-red: #e10600;
  --nitro-red-soft: #ff3126;
  --race-white: #f7f7f2;
  --carbon: #101319;
  --carbon-deep: #06080c;
  --graphite: #1b2029;
  --graphite-2: #252b35;
  --steel: #94a0b3;
  --line: #333b49;
  --live-cyan: #00c2ff;
  --success-green: #2fd17c;
  --warning-amber: #ffb020;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--carbon-deep);
}

body {
  background: linear-gradient(180deg, #06080cf5, #101319fa), var(--carbon);
  min-height: 100vh;
  color: var(--race-white);
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .96;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
}

.shell {
  width: min(1120px, 100% - 40px);
  margin: 0 auto;
  padding: 56px 0;
}

.nitro-public {
  min-height: 100vh;
  overflow: hidden;
}

.nitro-public:before {
  z-index: -2;
  content: "";
  pointer-events: none;
  background: linear-gradient(115deg, #e1060014, #0000 32%), repeating-linear-gradient(90deg, #ffffff08 0 1px, #0000 1px 92px);
  position: fixed;
  inset: 0;
}

.nitro-header, .nitro-footer, .nitro-hero, .nitro-section, .nitro-stats, .nitro-page-header {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}

.nitro-header {
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  padding: 14px 0;
  display: flex;
  position: relative;
}

.nitro-brand {
  flex: none;
  width: clamp(150px, 17vw, 228px);
  text-decoration: none;
}

.nitro-nav {
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
  gap: 6px;
  display: flex;
}

.nitro-nav a, .nitro-link-button, .nitro-primary-button, .nitro-outline-button {
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
}

.nitro-nav a {
  color: #d9dfeb;
  border: 1px solid #0000;
  padding: 0 12px;
}

.nitro-nav a:hover {
  background: #f7f7f20d;
  border-color: #f7f7f224;
}

.nitro-header-actions {
  align-items: center;
  gap: 8px;
  display: flex;
}

.nitro-link-button, .nitro-outline-button {
  background: #f7f7f20a;
  border: 1px solid #f7f7f247;
  padding: 0 16px;
}

.nitro-primary-button {
  border: 1px solid var(--nitro-red);
  background: var(--nitro-red);
  color: #fff;
  padding: 0 18px;
  box-shadow: 0 12px 34px #e106003d;
}

.nitro-hero {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
  align-items: end;
  gap: 30px;
  min-height: 720px;
  padding: 92px 0 72px;
  display: grid;
  position: relative;
}

.hero-bg {
  z-index: -1;
  background: linear-gradient(90deg, #06080cfa, #06080c99 50%, #06080cfa), linear-gradient(180deg, #06080c29, var(--carbon-deep)), url("/nitro/track-fog-bg.png") center / cover no-repeat;
  position: absolute;
  inset: 0 calc(50% - 50vw);
}

.hero-bg:after, .nitro-page-header:after {
  background: var(--nitro-red);
  content: "";
  width: min(520px, 36vw);
  height: 5px;
  position: absolute;
  bottom: 18%;
  right: 8vw;
  transform: skewX(-18deg);
  box-shadow: 0 0 30px #e10600b8;
}

.hero-copy {
  max-width: 780px;
}

.nitro-eyebrow {
  color: var(--nitro-red-soft);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
}

.nitro-lead, .nitro-section-header p, .nitro-card p, .nitro-side-panel p, .nitro-detail-panel p {
  color: #c4ccd9;
  font-size: 17px;
  line-height: 1.58;
}

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

.nitro-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: -38px;
  display: grid;
}

.nitro-stats article, .nitro-card, .livetiming-preview, .server-card, .nitro-detail-panel, .nitro-side-panel, .nitro-table {
  background: linear-gradient(145deg, #e106001c, #00c2ff09), #1b2029e6;
  border: 1px solid #f7f7f21f;
  border-radius: 8px;
  box-shadow: 0 28px 80px #00000047;
}

.nitro-stats article {
  min-height: 134px;
  padding: 20px;
}

.nitro-stats strong {
  color: var(--race-white);
  font-size: 34px;
  line-height: 1;
  display: block;
}

.nitro-stats span {
  margin-top: 10px;
  font-weight: 900;
  display: block;
}

.nitro-stats p {
  color: var(--steel);
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.4;
}

.nitro-section, .nitro-page-header {
  padding: 72px 0 0;
}

.nitro-page-header {
  min-height: 320px;
  padding-top: 88px;
  position: relative;
}

.nitro-page-header h1 {
  max-width: 920px;
}

.nitro-page-header .nitro-lead {
  max-width: 760px;
}

.nitro-section-header {
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
  display: flex;
}

.nitro-section-header > div {
  max-width: 760px;
}

.nitro-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

.nitro-card {
  flex-direction: column;
  justify-content: space-between;
  min-height: 248px;
  padding: 22px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nitro-card:before {
  background: var(--nitro-red);
  content: "";
  width: 84px;
  height: 5px;
  position: absolute;
  inset: 0 0 auto auto;
  transform: skewX(-18deg);
}

.nitro-card:hover {
  border-color: #e10600ad;
  transform: translateY(-2px);
}

.nitro-chip, .nitro-tags span {
  color: #dfe5ef;
  text-transform: uppercase;
  border: 1px solid #f7f7f224;
  border-radius: 999px;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  display: inline-flex;
}

.nitro-chip-red {
  color: var(--nitro-red-soft);
  border-color: #e106007a;
}

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

.nitro-meta-grid span, .detail-grid span {
  min-width: 0;
  color: var(--steel);
  border: 1px solid #f7f7f21a;
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
}

.nitro-card-footer {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.nitro-card-footer em, .nitro-table em, .standing-row em {
  color: var(--success-green);
  font-style: normal;
  font-weight: 900;
}

.nitro-tags {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  display: flex;
}

.pilot-number {
  width: max-content;
  color: var(--nitro-red-soft);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.pilot-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
  display: grid;
}

.pilot-stats strong {
  color: var(--race-white);
  border: 1px solid #f7f7f21a;
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
}

.nitro-split, .detail-layout, .portal-grid, .auth-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .64fr);
  gap: 20px;
  display: grid;
}

.simulator-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.simulator-pill {
  border: 1px solid var(--line);
  background: #1b2029d6;
  border-radius: 8px;
  padding: 16px;
}

.simulator-pill strong {
  color: var(--race-white);
  font-size: 26px;
  display: block;
}

.simulator-pill span, .simulator-pill em {
  color: var(--steel);
  font-style: normal;
  line-height: 1.4;
  display: block;
}

.tone-red {
  border-color: #e1060080;
}

.tone-cyan {
  border-color: #00c2ff80;
}

.tone-green {
  border-color: #2fd17c80;
}

.tone-amber {
  border-color: #ffb02080;
}

.tone-steel {
  border-color: #94a0b361;
}

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

.server-card {
  padding: 18px;
}

.server-card span {
  color: var(--live-cyan);
  font-size: 12px;
  font-weight: 900;
}

.server-card strong {
  color: var(--success-green);
}

.server-card p {
  color: var(--steel);
  margin-bottom: 0;
}

.livetiming-preview {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  align-self: end;
  padding: 18px;
  overflow: hidden;
}

.timing-head, .timing-row, .nitro-table-row {
  align-items: center;
  gap: 12px;
  display: grid;
}

.timing-head {
  grid-template-columns: auto 1fr auto;
  padding-bottom: 14px;
}

.live-dot {
  color: var(--live-cyan);
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  display: inline-flex;
}

.live-dot:before {
  background: var(--live-cyan);
  width: 9px;
  height: 9px;
  box-shadow: 0 0 18px var(--live-cyan);
  content: "";
  border-radius: 50%;
}

.timing-row {
  border-top: 1px solid #f7f7f21a;
  grid-template-columns: 42px minmax(0, 1fr) 80px 88px 54px;
  padding: 13px 0;
}

.timing-row strong, .nitro-table-row strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.timing-row em {
  color: var(--warning-amber);
  font-style: normal;
  font-weight: 900;
}

.nitro-table {
  overflow-x: auto;
}

.nitro-table-row {
  border-top: 1px solid #f7f7f21a;
  grid-template-columns: 1.2fr 1fr 90px 130px 70px 120px;
  min-width: 780px;
  padding: 16px 18px;
}

.nitro-table-head {
  color: var(--steel);
  text-transform: uppercase;
  border-top: 0;
  font-size: 12px;
  font-weight: 900;
}

.component-grid, .filter-bar {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.component-grid span, .filter-bar span {
  color: #dfe5ef;
  background: #1b2029e0;
  border: 1px solid #f7f7f21f;
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 900;
}

.filter-bar {
  margin-bottom: 18px;
}

.nitro-detail-panel, .nitro-side-panel {
  padding: 24px;
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
  display: grid;
}

.detail-grid strong {
  color: var(--race-white);
  margin-top: 6px;
  display: block;
}

.nitro-side-panel ol, .nitro-side-panel ul, .membership-card ul {
  color: #d8deea;
  margin: 14px 0 0;
  padding-left: 20px;
  line-height: 1.8;
}

.membership-card ul {
  margin-bottom: 20px;
}

.mock-form {
  gap: 12px;
  margin-top: 22px;
  display: grid;
}

.mock-form input {
  min-height: 48px;
  color: var(--race-white);
  font: inherit;
  background: #06080cb8;
  border: 1px solid #f7f7f229;
  border-radius: 6px;
  padding: 0 14px;
}

.mock-form button {
  width: max-content;
  min-width: 160px;
}

.nitro-footer {
  color: var(--steel);
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 82px;
  padding: 28px 0 40px;
  display: flex;
}

.nitro-footer strong, .nitro-footer span {
  display: block;
}

.nitro-footer nav {
  flex-wrap: wrap;
  gap: 14px;
  display: flex;
}

.nitro-footer a {
  color: #dfe5ef;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .nitro-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nitro-nav {
    justify-content: flex-start;
  }

  .nitro-hero, .nitro-split, .detail-layout, .portal-grid, .auth-layout {
    grid-template-columns: 1fr;
  }

  .nitro-hero {
    min-height: auto;
    padding-top: 64px;
  }

  .nitro-stats, .nitro-card-grid, .simulator-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .nitro-header, .nitro-footer, .nitro-hero, .nitro-section, .nitro-stats, .nitro-page-header, .shell {
    width: min(100% - 28px, 1200px);
  }

  .nitro-header-actions, .hero-actions, .nitro-section-header, .nitro-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .nitro-nav a, .nitro-link-button, .nitro-primary-button, .nitro-outline-button {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .nitro-stats, .nitro-card-grid, .simulator-strip, .detail-grid, .pilot-stats, .timing-head, .timing-row {
    grid-template-columns: 1fr;
  }

  .nitro-card {
    min-height: 220px;
  }
}

/*# sourceMappingURL=app_styles_bb79b3df.css.map*/