* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1E1808;
    color: #EDE1C4;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ─── HEADER ─────────────────────────────────────────────── */
/* Desktop: padding 20px 80px */
.site-header {
    background-color: #1B1607;
    border-bottom: 1px solid #3E3822;
    padding: 20px 80px;
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
}

.header-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.header-logo__icon {
    width: 40px;
    height: 40px;
}

.header-logo__name {
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: #DBC459;
}

/* ─── MAIN CONTAINER ─────────────────────────────────────── */
/* Desktop: padding 0 80px 24px, gap 64px */
.main-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    padding: 0 80px 24px;
}

/* ─── HERO / MTG CARD ────────────────────────────────────── */
.hero-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 24px;
}

/* Desktop card: 506px wide, padding 24px, gap 11px, border 6px */
.mtg-card {
    display: flex;
    flex-direction: column;
    width: 506px;
    background-color: #284E26;
    border: 6px solid #342E1C;
    border-radius: 8px;
    padding: 24px;
    gap: 11px;
    position: relative;
}

/* Header row: height 56px, font Inter 500 18px */
.mtg-card__header {
    background: #EDE1C4;
    border: 2px solid #3F3922;
    height: 56px;
    padding: 1px 20px;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Art: height 304px */
.mtg-card__art {
    border: 2px solid #3F3922;
    height: 304px;
    overflow: hidden;
}

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

/* Type row: padding 10px 16px, font Inter 500 18px */
.mtg-card__type {
    background: #EDE1C4;
    border: 2px solid #3F3922;
    padding: 10px 16px;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
}

/* Text block: gradient, padding 16px, gap 12px */
.mtg-card__text {
    background: linear-gradient(135deg, #FACE9F 0%, #FFE6CC 100%);
    border: 2px solid #3F3922;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mtg-card__ability {
    font-family: 'Times New Roman', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #163C14;
}

.mtg-card__flavor {
    font-family: 'Times New Roman', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #193D14;
}

/* P/T badge: Inter 700 36px, absolute bottom-right */
.mtg-card__pt {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #EDE1C4;
    border: 2px solid #342E1C;
    border-radius: 6px;
    padding: 9px 35px;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.028em;
}

/* ─── WOMBAT PATH SECTION ────────────────────────────────── */
/* Desktop: gap 64px, full width, padding 0 0 24px */
.wombat-path-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    padding: 0 0 24px;
}

/* Desktop: Times 700 64px, uppercase, green */
.wombat-path-title {
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.15;
    text-transform: uppercase;
    color: #A1CE9A;
    align-self: center;
}

.stats-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Stat cards row: gap 32px */
.stats-row {
    display: flex;
    gap: 32px;
    width: 100%;
}

/* Stat card: #403923, padding 24px 40px, gap 155px (icon top, value bottom) */
.stat-card {
    flex: 1;
    background-color: #403923;
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 155px;
}

.stat-card--gold {
    border-left: 7px solid #DAC45A;
}

.stat-card--green {
    border-left: 7px solid #A1CE9A;
}

.stat-card__icon {
    width: 64px;
    height: 64px;
}

.stat-card__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Label: Inter 500 40px */
.stat-card__label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.21;
    color: #EDE1C4;
}

/* Value: Times 700 64px */
.stat-card__value {
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.15;
    color: #DAC45A;
}

.stat-card__value--green {
    color: #A1CE9A;
}

/* Max Speed banner: #2B5126, border-left 6px gold, padding 40px, space-between */
.max-speed-banner {
    width: 100%;
    background-color: #2B5126;
    border-left: 6px solid #DAC45A;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 235px;
}

.max-speed-banner__left {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

/* Max Speed title: Times 400 48px */
.max-speed-banner__title {
    font-family: 'Times New Roman', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.5;
    color: #EDE1C4;
}

/* Subtitle: Inter 600 20px */
.max-speed-banner__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #90B885;
}

/* Value: Times 700 64px gold */
.max-speed-banner__value {
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.5;
    color: #DAC45A;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ─── CTA SECTION ────────────────────────────────────────── */
/* Desktop: #26210D, border 6px, padding 80px, gap 43px */
.cta-section {
    width: 100%;
    background-color: #26210D;
    border: 6px solid #3E3822;
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 43px;
}

/* Content wrapper: 784px, gap 22px */
.cta-section__content {
    width: 784px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.cta-section__text-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Eyebrow: Times 400 24px, letter-spacing 4px, gold, uppercase */
.cta-section__eyebrow {
    font-family: 'Times New Roman', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 4px;
    color: #DAC45A;
    text-align: center;
    text-transform: uppercase;
}

/* Headline: Times 700 48px */
.cta-section__headline {
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.5;
    color: #EDE1C4;
    text-align: center;
}

/* Body block: 521px, gap 35px */
.cta-section__body-block {
    width: 521px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
}

/* Body: Inter 500 24px, #ADA68B */
.cta-section__body {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    color: #ADA68B;
    text-align: center;
}

/* Sponsor: Times 400 24px, #7E7966 */
.cta-section__sponsor {
    font-family: 'Times New Roman', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    color: #7E7966;
    text-align: center;
}

/* Button: gradient, Inter 700 40px, letter-spacing 10%, padding 35px */
.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 35px 0;
    background: linear-gradient(90deg, #85AD7B 0%, #4C7446 100%);
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.cta-button:hover {
    opacity: 0.85;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
/* Desktop: border-top, padding 80px, gap 16px */
.site-footer {
    border-top: 1px solid #3E3822;
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* Top block: 1280px */
.site-footer__top {
    width: 1280px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* "Proudly Sponsored by": Times 400 24px, #7E7966 */
.site-footer__sponsored-by {
    font-family: 'Times New Roman', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    color: #7E7966;
    text-align: center;
}

/* Brand: Inter 700 32px, gold */
.site-footer__brand {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    color: #DBC459;
    text-align: center;
    text-decoration: underline;
}

/* Bottom block: 1280px, gap 8px */
.site-footer__bottom {
    width: 1280px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Copyright: Times 400 32px, #7E7966 */
.site-footer__copyright {
    font-family: 'Times New Roman', serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.5;
    color: #7E7966;
    text-align: center;
}

/* Disclaimer: Times 400 24px, #7E7966 */
.site-footer__disclaimer {
    font-family: 'Times New Roman', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    color: #7E7966;
    text-align: center;
}

/* ─── TABLET ≤ 768px ─────────────────────────────────────── */
@media (max-width: 768px) {
    .site-header {
        padding: 16px 24px;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .main-container {
        padding: 0 24px 40px;
        gap: 48px;
    }

    .hero-section {
        padding-top: 32px;
    }

    .mtg-card {
        width: 100%;
        max-width: 480px;
    }

    .wombat-path-section {
        gap: 40px;
        padding: 0 0 24px;
    }

    .wombat-path-title {
        font-size: 52px;
    }

    .stats-grid {
        gap: 16px;
    }

    .stat-card {
        gap: 40px;
        padding: 24px 28px;
    }

    .stat-card__label {
        font-size: 28px;
    }

    .stat-card__value {
        font-size: 52px;
    }

    .max-speed-banner {
        gap: 24px;
        padding: 32px 28px;
        flex-wrap: wrap;
    }

    .max-speed-banner__title {
        font-size: 36px;
    }

    .max-speed-banner__subtitle {
        font-size: 16px;
    }

    .max-speed-banner__value {
        font-size: 52px;
    }

    .cta-section {
        padding: 48px 32px;
        gap: 32px;
    }

    .cta-section__content {
        width: 100%;
    }

    .cta-section__eyebrow {
        font-size: 18px;
    }

    .cta-section__headline {
        font-size: 36px;
    }

    .cta-section__body-block {
        width: 100%;
        gap: 24px;
    }

    .cta-section__body {
        font-size: 18px;
    }

    .cta-section__sponsor {
        font-size: 18px;
    }

    .cta-button {
        font-size: 28px;
        padding: 28px 0;
    }

    .site-footer {
        padding: 48px 24px;
    }

    .site-footer__top,
    .site-footer__bottom {
        width: 100%;
    }

    .site-footer__copyright {
        font-size: 22px;
    }

    .site-footer__disclaimer {
        font-size: 16px;
    }
}

/* ─── MOBILE ≤ 480px ─────────────────────────────────────── */
@media (max-width: 480px) {
    .site-header {
        padding: 14px 16px;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .header-logo__name {
        font-size: 20px;
    }

    .main-container {
        padding: 0 16px 32px;
        gap: 40px;
    }

    .hero-section {
        padding-top: 20px;
    }

    .mtg-card {
        width: 100%;
        max-width: 100%;
        padding: 16px;
        gap: 8px;
    }

    .mtg-card__header {
        font-size: 14px;
        height: auto;
        min-height: 48px;
        padding: 8px 12px;
    }

    .mtg-card__art {
        height: 220px;
    }

    .mtg-card__type {
        font-size: 15px;
        padding: 8px 12px;
    }

    .mtg-card__ability {
        font-size: 15px;
    }

    .mtg-card__flavor {
        font-size: 13px;
    }

    .mtg-card__pt {
        font-size: 28px;
        padding: 6px 20px;
    }

    .wombat-path-section {
        gap: 32px;
        padding: 0 0 16px;
        align-items: stretch;
    }

    .wombat-path-title {
        font-size: 36px;
        text-align: center;
        line-height: 1.1;
    }

    .stats-grid {
        gap: 12px;
    }

    /* Stat cards stack vertically */
    .stats-row {
        flex-direction: column;
        gap: 12px;
    }

    .stat-card {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 20px 24px;
        justify-content: space-between;
    }

    .stat-card__icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .stat-card__info {
        flex: 1;
        gap: 2px;
    }

    .stat-card__label {
        font-size: 22px;
        line-height: 1.2;
    }

    .stat-card__value {
        font-size: 44px;
        line-height: 1;
    }

    /* Max speed: column */
    .max-speed-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 28px 24px;
    }

    .max-speed-banner__title {
        font-size: 34px;
        line-height: 1.1;
    }

    .max-speed-banner__subtitle {
        font-size: 13px;
    }

    .max-speed-banner__value {
        font-size: 44px;
        line-height: 1.2;
    }

    /* CTA */
    .cta-section {
        padding: 32px 16px;
        gap: 28px;
        border-width: 4px;
    }

    .cta-section__content {
        width: 100%;
        gap: 16px;
    }

    .cta-section__eyebrow {
        font-size: 13px;
        letter-spacing: 0.2em;
    }

    .cta-section__headline {
        font-size: 28px;
        line-height: 1.3;
    }

    .cta-section__body-block {
        width: 100%;
        gap: 20px;
    }

    .cta-section__body {
        font-size: 15px;
        line-height: 1.6;
    }

    .cta-section__sponsor {
        font-size: 14px;
    }

    .cta-button {
        font-size: 18px;
        letter-spacing: 0.15em;
        padding: 24px 0;
    }

    /* Footer */
    .site-footer {
        padding: 32px 16px;
        gap: 12px;
    }

    .site-footer__top,
    .site-footer__bottom {
        width: 100%;
    }

    .site-footer__sponsored-by {
        font-size: 14px;
    }

    .site-footer__brand {
        font-size: 20px;
    }

    .site-footer__copyright {
        font-size: 16px;
        line-height: 1.4;
    }

    .site-footer__disclaimer {
        font-size: 12px;
        line-height: 1.5;
    }
}
    .link-wrapp {
        display: flex;
        align-items: center;
        justify-content: center;
    }
