:root {
    --sand: #d9b170;
    --sun: #ef8b34;
    --rust: #b95b24;
    --ink: #070809;
    --night: #101824;
    --teal: #285461;
    --sage: #6f8267;
    --cream: #f2e4c8;
    --muted: #b8aa92;
    --mouse-x: 50%;
    --mouse-y: 48%;
}

* {
    box-sizing: border-box;
}

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

body {
    font-family: "Rajdhani", Arial, sans-serif;
    color: var(--cream);
    background:
        radial-gradient(circle at 14% 18%, rgba(239, 139, 52, 0.14), transparent 24%),
        linear-gradient(180deg, #080b0d 0%, #111817 42%, #080b0d 100%);
    overflow-x: hidden;
}

.site-nav {
    position: fixed;
    top: 14px;
    left: 50%;
    z-index: 20;
    display: flex;
    width: min(1180px, calc(100% - 28px));
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(242, 228, 200, 0.14);
    border-radius: 8px;
    background: rgba(7, 8, 9, 0.58);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
}

.nav-brand,
.nav-links {
    display: flex;
    align-items: center;
}

.nav-brand {
    gap: 10px;
    color: #f8ead0;
    font-family: "Oswald", Impact, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-brand img {
    width: 46px;
    height: auto;
}

.nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.header-account {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-account img {
    border-radius: 100%;
}

.header-btn {
    min-width: auto;
    padding: 10px 16px;
}

.user-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(242, 228, 200, 0.16);
    border-radius: 999px;
    background: rgba(15, 24, 30, 0.72);
    color: var(--cream);
    font-weight: 700;
}

.user-pill img {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    object-fit: cover;
}

.logged-in-card {
    margin-top: 24px;
    padding: 20px;
    border: 1px solid rgba(242, 228, 200, 0.14);
    border-radius: 14px;
    background: rgba(7, 8, 9, 0.56);
    color: rgba(242, 228, 200, 0.92);
    font-size: 0.98rem;
    line-height: 1.6;
}

.nav-links a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 6px;
    color: rgba(242, 228, 200, 0.78);
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    background: rgba(242, 228, 200, 0.1);
    color: #f8ead0;
    outline: none;
}

.nav-link-highlighted {
    background: linear-gradient(135deg, var(--rust), var(--sun)) !important;
    color: #f8ead0 !important;
}

.hero {
    position: relative;
    display: grid;
    min-height: 100vh;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
    padding: 108px 18px 92px;
    background:
        radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(239, 139, 52, 0.2), transparent 22%),
        linear-gradient(180deg, #122330 0%, #213d47 32%, #654c35 59%, #201612 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -6;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 24%, transparent 80%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent 40%, rgba(0, 0, 0, 0.55)),
        radial-gradient(circle at 50% 20%, transparent 0 35%, rgba(0, 0, 0, 0.34) 100%);
}

.sky-glow {
    position: absolute;
    left: 50%;
    top: 19%;
    z-index: -5;
    width: min(38vw, 420px);
    aspect-ratio: 1;
    transform: translateX(-50%);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 187, 88, 0.8), rgba(239, 139, 52, 0.26) 48%, transparent 70%);
    filter: blur(2px);
}

.dust-layer {
    position: absolute;
    left: -12%;
    right: -12%;
    z-index: -2;
    height: 34vh;
    background:
        radial-gradient(ellipse at 18% 70%, rgba(217, 177, 112, 0.26), transparent 28%),
        radial-gradient(ellipse at 74% 58%, rgba(242, 228, 200, 0.18), transparent 34%),
        linear-gradient(90deg, transparent, rgba(217, 177, 112, 0.14), transparent);
    filter: blur(14px);
    opacity: 0.85;
    animation: drift 17s ease-in-out infinite alternate;
}

.dust-one {
    bottom: 12%;
}

.dust-two {
    bottom: 4%;
    opacity: 0.55;
    animation-duration: 24s;
    animation-direction: alternate-reverse;
}

.mountains {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18%;
    z-index: -4;
    height: 26vh;
    background-repeat: repeat-x;
    background-size: 760px 100%;
    opacity: 0.78;
    clip-path: polygon(0 100%, 0 72%, 7% 68%, 13% 48%, 19% 63%, 25% 34%, 32% 62%, 40% 42%, 48% 69%, 56% 38%, 63% 58%, 71% 31%, 79% 62%, 88% 46%, 95% 70%, 100% 66%, 100% 100%);
}

.mountains-back {
    bottom: 22%;
    background: linear-gradient(180deg, #36515a, #18222a);
    opacity: 0.55;
    transform: scaleX(1.15);
}

.mountains-front {
    bottom: 14%;
    background: linear-gradient(180deg, #7f6848, #2b2019);
}

.county-road {
    position: absolute;
    left: 50%;
    bottom: -9vh;
    z-index: -1;
    width: min(58vw, 620px);
    height: 42vh;
    transform: translateX(-50%);
    background:
        linear-gradient(90deg, transparent 0 47%, rgba(242, 228, 200, 0.8) 48% 52%, transparent 53% 100%),
        linear-gradient(78deg, transparent 0 44%, rgba(10, 10, 10, 0.76) 45% 55%, transparent 56% 100%),
        linear-gradient(-78deg, transparent 0 44%, rgba(10, 10, 10, 0.78) 45% 55%, transparent 56% 100%);
    clip-path: polygon(43% 0, 57% 0, 100% 100%, 0 100%);
    opacity: 0.82;
}

.hero-content {
    position: relative;
    z-index: 5;
    display: grid;
    width: min(940px, 100%);
    justify-items: center;
    text-align: center;
    padding-top: clamp(12px, 4vh, 42px);
}

.hero-side {
    position: absolute;
    z-index: 6;
    border: 1px solid rgba(242, 228, 200, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(242, 228, 200, 0.07), rgba(242, 228, 200, 0.025)),
        rgba(7, 8, 9, 0.45);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
}

.hero-players {
    left: clamp(18px, 5vw, 76px);
    top: 50%;
    display: grid;
    width: min(220px, 22vw);
    min-width: 180px;
    gap: 6px;
    padding: 20px;
    transform: translateY(-28%);
}

.hero-players span,
.discord-heading span {
    color: var(--sand);
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-players strong {
    color: #f8ead0;
    font-family: "Oswald", Impact, sans-serif;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1;
}

.hero-players p {
    margin: 0;
    color: rgba(242, 228, 200, 0.64);
    font-weight: 700;
}

.discord-widget {
    right: clamp(18px, 4vw, 58px);
    top: 50%;
    width: 280px;
    overflow: hidden;
    opacity: 0.84;
    transform: translateY(-32%);
    transition: opacity 180ms ease, transform 180ms ease;
}

.discord-widget:hover,
.discord-widget:focus-within {
    opacity: 1;
    transform: translateY(-32%) translateY(-2px);
}

.discord-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(242, 228, 200, 0.1);
}

.discord-heading strong {
    color: rgba(242, 228, 200, 0.82);
    font-weight: 800;
}

.discord-status {
    display: grid;
    gap: 8px;
    padding: 22px 16px 24px;
    text-align: center;
}

.discord-status strong {
    color: #f8ead0;
    font-family: "Oswald", Impact, sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
}

.discord-status p {
    margin: 0;
    color: rgba(242, 228, 200, 0.68);
    font-weight: 800;
    text-transform: uppercase;
}

.server-logo {
    width: clamp(150px, 24vw, 270px);
    height: auto;
    margin-bottom: clamp(14px, 2vw, 24px);
    filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.62));
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--sand);
    font-size: clamp(0.88rem, 2vw, 1.05rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

h1 {
    margin: 0;
    font-family: "Oswald", Impact, sans-serif;
    font-size: clamp(4rem, 14vw, 10.5rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #f7ead2;
    text-shadow:
        0 2px 0 #8a4c24,
        0 8px 22px rgba(0, 0, 0, 0.72),
        0 0 42px rgba(239, 139, 52, 0.36);
}

.tagline {
    width: min(680px, 100%);
    margin: 18px 0 0;
    color: rgba(242, 228, 200, 0.86);
    font-size: clamp(1.05rem, 2.4vw, 1.38rem);
    line-height: 1.45;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 158px;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid rgba(242, 228, 200, 0.28);
    border-radius: 6px;
    color: var(--cream);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(242, 228, 200, 0.72);
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rust), var(--sun));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.btn-secondary {
    background: rgba(15, 24, 30, 0.58);
    backdrop-filter: blur(8px);
}

.bottom-strip {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 5;
    display: flex;
    width: min(620px, calc(100% - 32px));
    justify-content: center;
    gap: clamp(12px, 4vw, 34px);
    padding-top: 16px;
    border-top: 1px solid rgba(242, 228, 200, 0.28);
    transform: translateX(-50%);
    color: rgba(242, 228, 200, 0.72);
    font-weight: 700;
    text-transform: uppercase;
}

.content-section {
    position: relative;
    padding: clamp(64px, 9vw, 110px) 18px;
    background:
        linear-gradient(180deg, rgba(8, 11, 13, 0), rgba(8, 11, 13, 0.72)),
        radial-gradient(circle at 84% 18%, rgba(40, 84, 97, 0.24), transparent 30%);
}

.content-section + .content-section {
    border-top: 1px solid rgba(242, 228, 200, 0.1);
}

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

.section-heading {
    width: min(760px, 100%);
    margin-bottom: 34px;
}

.section-heading h2,
.split-layout h2 {
    margin: 0;
    font-family: "Oswald", Impact, sans-serif;
    font-size: clamp(2.3rem, 6vw, 5rem);
    line-height: 1;
    text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.split-layout > div > p,
.notice-panel p,
.feature-card p,
.faq-item p,
.rules-hero p,
.rule-card li,
.stat-card p {
    color: rgba(242, 228, 200, 0.78);
    font-size: 1.08rem;
    line-height: 1.65;
}

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

.feature-card,
.notice-panel,
.faq-item,
.rule-card,
.stat-card {
    border: 1px solid rgba(242, 228, 200, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(242, 228, 200, 0.075), rgba(242, 228, 200, 0.03)),
        rgba(8, 11, 13, 0.54);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.feature-card {
    min-height: 268px;
    padding: 26px;
}

.feature-number {
    display: inline-flex;
    margin-bottom: 30px;
    color: var(--sun);
    font-weight: 800;
}

.feature-card h3,
.notice-panel strong,
.rule-card h2 {
    display: block;
    margin: 0 0 12px;
    font-family: "Oswald", Impact, sans-serif;
    color: #f8ead0;
    font-size: 1.65rem;
    line-height: 1.08;
    text-transform: uppercase;
}

.split-section,
.stats-section {
    background:
        linear-gradient(115deg, rgba(20, 39, 43, 0.9), rgba(73, 48, 30, 0.72)),
        radial-gradient(circle at 22% 50%, rgba(239, 139, 52, 0.18), transparent 30%);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 28px;
    align-items: center;
}

.notice-panel {
    padding: 28px;
}

.notice-panel span,
.rule-card span,
.stat-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--sand);
    font-weight: 800;
    text-transform: uppercase;
}

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

.stat-card {
    display: grid;
    min-height: 230px;
    align-content: space-between;
    padding: 28px;
    overflow: hidden;
    position: relative;
}

.stat-card::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -52px;
    width: 150px;
    aspect-ratio: 1;
    border: 1px solid rgba(239, 139, 52, 0.24);
    border-radius: 999px;
}

.stat-card strong {
    color: #f8ead0;
    font-family: "Oswald", Impact, sans-serif;
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 1;
    text-transform: uppercase;
}

.stat-card p {
    margin: 16px 0 0;
}

.faq-section {
    padding-bottom: clamp(80px, 10vw, 132px);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    padding: 0 22px;
}

.faq-item summary {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #f8ead0;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 800;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--sun);
    font-family: "Oswald", Impact, sans-serif;
    font-size: 1.8rem;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin: 0;
    padding: 0 0 22px;
}

.site-footer {
    display: flex;
    min-height: 96px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 22px 18px;
    border-top: 1px solid rgba(242, 228, 200, 0.12);
    background: #070809;
    color: rgba(242, 228, 200, 0.72);
    font-weight: 700;
    text-align: center;
}

.site-footer img {
    width: 72px;
    height: auto;
}

.site-footer a,
.back-link {
    color: var(--sand);
    font-weight: 800;
    text-decoration: none;
}

.site-footer a:hover,
.back-link:hover {
    color: #f8ead0;
}

.rules-page {
    min-height: 100vh;
    padding: 108px 18px 80px;
    background:
        radial-gradient(circle at 50% 0%, rgba(239, 139, 52, 0.28), transparent 24%),
        linear-gradient(180deg, #14252b 0%, #14100d 46%, #080809 100%);
}

.rules-hero {
    display: grid;
    width: min(980px, 100%);
    margin: 0 auto;
    justify-items: center;
    padding: 28px 0 46px;
    text-align: center;
}

.rules-logo {
    width: clamp(120px, 18vw, 210px);
    margin: 20px 0 10px;
    filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.62));
}

.rules-hero h1 {
    font-size: clamp(3.1rem, 9vw, 7.5rem);
}

.rules-hero p {
    width: min(700px, 100%);
    margin: 18px 0 0;
}

.rules-grid {
    display: grid;
    width: min(1120px, 100%);
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rule-card {
    padding: 26px;
}

.rule-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
}

.rule-wide {
    grid-column: 1 / -1;
}

.player-panel-page {
    min-height: 100vh;
    padding: 108px 18px 80px;
    background:
        radial-gradient(circle at 50% 0%, rgba(239, 139, 52, 0.28), transparent 24%),
        linear-gradient(180deg, #14252b 0%, #14100d 46%, #080809 100%);
}

.player-panel-hero {
    display: grid;
    width: min(980px, 100%);
    margin: 0 auto;
    justify-items: center;
    padding: 28px 0 46px;
    text-align: center;
}

.player-avatar {
    width: 140px;
    height: 140px;
    margin: 20px 0 10px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(242, 228, 200, 0.28);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.62);
}

.player-panel-hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
}

.player-panel-hero p {
    width: min(700px, 100%);
    margin: 18px 0 0;
}

.player-content {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.player-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 60px;
}

.info-card {
    padding: 20px;
    border: 1px solid rgba(242, 228, 200, 0.14);
    border-radius: 10px;
    background: rgba(7, 8, 9, 0.48);
    transition: background 180ms ease;
}

.info-card:hover {
    background: rgba(7, 8, 9, 0.62);
}

.card-label {
    display: block;
    margin-bottom: 10px;
    color: var(--sand);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8ead0;
    word-break: break-word;
}

.vehicles-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(242, 228, 200, 0.1);
}

.vehicles-section h2 {
    margin: 0 0 30px;
    color: #f7ead2;
    font-family: "Oswald", Impact, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vehicle-header-line {
   display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 2.5em;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.vehicles-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.vehicle-card {
    padding: 20px;
    border: 1px solid rgba(242, 228, 200, 0.12);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(15, 24, 30, 0.5), rgba(7, 8, 9, 0.65));
    transition: all 260ms ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.vehicle-card:hover {
    background: linear-gradient(180deg, rgba(20, 30, 35, 0.6), rgba(10, 12, 15, 0.75));
    border-color: rgba(242, 228, 200, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

.vehicle-card-left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: center;
    margin: auto;
}

.vehicle-card-right {
    display: grid;
    grid-template-columns: 1fr;
}

.vehicle-card-visual {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(8, 11, 13, 0.8), rgba(0, 0, 0, 0.95));
    display: grid;
    place-items: center;
    padding: 12px;
}

.vehicle-thumb {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.vehicle-img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 8px;
    align-items: center;
    margin: auto;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
    gap: 10px;
    flex-wrap: wrap;
}

.vehicle-model {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #f8ead0;
    text-transform: capitalize;
}

.vehicle-plate {
    display: inline-block;
    padding: 8px 14px;
    border: 2px solid var(--sand);
    border-radius: 6px;
    background: rgba(217, 177, 112, 0.15);
    color: var(--sand);
    font-size: 0.8rem;
    font-weight: 900;
    font-family: monospace;
    letter-spacing: 1.5px;
    margin: 0;
    white-space: nowrap;
}

.vehicle-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #f7ead2;
    margin: 0;
    text-transform: capitalize;
}

.vehicle-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 25px;
    margin-top: 14px;
}

.vehicle-stats li {
    padding: 10px 12px;
    border: 1px solid rgba(242, 228, 200, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.9rem;
    color: rgba(242, 228, 200, 0.85);
    transition: all 180ms ease;
}

.vehicle-stats li:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(242, 228, 200, 0.15);
}

.vehicle-details p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: rgba(242, 228, 200, 0.78);
}

.vehicle-details p strong {
    color: var(--sand);
    font-weight: 700;
}

.no-vehicles {
    padding: 30px 20px;
    text-align: center;
    color: rgba(242, 228, 200, 0.56);
    font-style: italic;
    border: 1px solid rgba(242, 228, 200, 0.12);
    border-radius: 10px;
    background: rgba(7, 8, 9, 0.32);
}

@keyframes drift {
    from {
        transform: translateX(-2%);
    }

    to {
        transform: translateX(2%);
    }
}

@media (max-width: 640px) {
    .site-nav {
        position: absolute;
        top: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .nav-brand {
        justify-content: center;
    }

    .nav-links {
        justify-content: center;
    }

    .nav-links a {
        min-height: 34px;
        padding: 6px 9px;
        font-size: 0.92rem;
    }

    .hero {
        padding: 178px 16px 112px;
    }

    .hero-actions {
        width: 100%;
    }

    .btn {
        width: min(260px, 100%);
    }

    .county-road {
        width: 92vw;
    }

    .bottom-strip {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        font-size: 0.9rem;
    }

    .hero-side {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: min(360px, 100%);
        transform: none;
    }

    .vehicle-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vehicle-card-visual {
        aspect-ratio: 16 / 9;
    }

    .vehicle-stats {
        grid-template-columns: 1fr;
    }

    .vehicles-section h2 {
        font-size: 1.5rem;
    }

    .hero-players {
        order: 2;
        min-width: 0;
        margin-top: 22px;
        justify-self: center;
    }

    .discord-widget {
        order: 3;
        margin-top: 14px;
        justify-self: center;
        opacity: 0.9;
    }

    .discord-widget:hover,
    .discord-widget:focus-within {
        transform: none;
    }

    .discord-status {
        padding: 20px 16px 22px;
    }

    .feature-grid,
    .stats-grid,
    .split-layout,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .site-footer {
        flex-direction: column;
    }

    .rule-wide {
        grid-column: auto;
    }
}

@media (min-width: 641px) and (max-width: 1080px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding-bottom: 260px;
    }

    .hero-players {
        top: auto;
        bottom: 88px;
        transform: none;
    }

    .discord-widget {
        top: auto;
        bottom: 88px;
        transform: none;
    }

    .discord-widget:hover,
    .discord-widget:focus-within {
        transform: translateY(-2px);
    }

    .discord-status {
        padding: 20px 16px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
