@font-face {
    font-family: "Worst Paint Job Ever";
    src: url("./WorstPaintJobEver.ttf") format("truetype");
    font-display: swap;
}

:root {
    --font-display: "Worst Paint Job Ever", ui-sans-serif, system-ui, sans-serif;
    --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --bg: #080504;
    --bg-2: #120a06;
    --paint-rust: #c45a28;
    --paint-ember: #8a3a1c;
    --paint-void: #050302;
    --panel: rgba(255, 255, 255, 0.08);
    --panel-strong: rgba(255, 255, 255, 0.14);
    --text: #fff7fb;
    --muted: #d8c6df;
    --pink: #e27a3a;
    --pink-2: #f0a767;
    --yellow: #ffd166;
    --cyan: #7bdff2;
    --green: #9cffcb;
    --danger: #ff6b6b;
    --border: rgba(255, 255, 255, 0.18);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --max: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text);
    background-color: var(--paint-void);
    background-image: url("./space.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Soft vignette so text stays readable over the artwork */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5, 3, 2, 0.35) 0%, transparent 28%, transparent 72%, rgba(5, 3, 2, 0.5) 100%),
        linear-gradient(90deg, rgba(5, 3, 2, 0.25) 0%, transparent 22%, transparent 78%, rgba(5, 3, 2, 0.2) 100%);
}

body > * {
    position: relative;
    z-index: 1;
}

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

.container {
    width: min(100% - 40px, var(--max));
    margin: 0 auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(16, 11, 7, 0.82);
    border-bottom: 1px solid rgba(214, 140, 84, 0.16);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, var(--pink), var(--yellow));
    color: #190719;
    box-shadow: 0 12px 35px rgba(255, 95, 183, 0.34);
    font-size: 22px;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
}

.nav-links a:hover {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--panel);
    color: var(--text);
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, background 180ms ease, border 180ms ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--panel-strong);
    border-color: rgba(255, 255, 255, 0.34);
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--pink-2));
    color: #190719;
    border: 0;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff77c5, #ffc2e6);
}

.hero {
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: center;
}

.hero-brand-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.hero-copy-column {
    max-width: 740px;
}

.hero-logo-stack {
    --wordmark-offset: 82px;
    position: relative;
    width: min(100%, 460px);
    margin: 0 0 calc(18px + var(--wordmark-offset));
}

.hero-wordmark {
    display: block;
    width: 100%;
    height: auto;
    transform: translateY(var(--wordmark-offset));
    filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.3));
}

.hero-emblem-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(78px, 12vw, 124px);
    height: auto;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--pink-2);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 100;
}

strong,
b {
    font-weight: 600;
}

h1 {
    margin: 22px 0 18px;
    font-size: 76px;
    line-height: 0.92;
    letter-spacing: 0.05em;
}

.gradient-text {
    background: linear-gradient(135deg, #fff, #ffe3b8 35%, #ff8a3d 70%, #ffd166);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    margin: 0;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
    max-width: 700px;
}

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

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 34px;
    max-width: 650px;
}

.platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0;
}

.hero-brand-column .hero-actions {
    margin-top: 2px;
}

.platform-badge {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.07);
}

.stat strong {
    display: block;
    font-size: 25px;
    color: white;
}

.stat span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
}

.trailer-card {
    align-self: start;
    padding: 18px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
        radial-gradient(circle at 50% 12%, rgba(255, 95, 183, 0.2), transparent 42%);
    box-shadow: var(--shadow);
}

.trailer-wide {
    margin-top: 18px;
}

.trailer-head {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 5, 15, 0.6);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pink-2);
}

.trailer-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 16px var(--green);
}

.trailer-note {
    margin: 12px 4px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.trailer-carousel {
    position: relative;
    margin-top: 14px;
}

.carousel-viewport {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.carousel-track {
    display: flex;
    transition: transform 260ms ease;
}

.carousel-slide {
    flex: 0 0 100%;
    min-height: 120px;
    display: block;
}

.carousel-slide iframe,
.carousel-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.carousel-slide iframe {
    background: #000;
}

.carousel-slide img {
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(10, 5, 15, 0.82);
    color: var(--text);
    font-size: 25px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.04);
    background: rgba(18, 9, 25, 0.95);
}

.carousel-btn-prev {
    left: 8px;
}

.carousel-btn-next {
    right: 8px;
}

.carousel-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.carousel-thumb {
    height: 100px;
    min-height: 54px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
}

.carousel-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 54px;
    object-fit: cover;
}

.carousel-thumb.is-active {
    border-color: var(--pink-2);
    box-shadow: 0 0 0 2px rgba(240, 167, 103, 0.16);
}

.ship-card {
    position: relative;
    height: 100%;
    min-height: 560px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
        radial-gradient(circle at 50% 15%, rgba(255, 95, 183, 0.22), transparent 35%);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.ship-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 22px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.orbit {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(123, 223, 242, 0.24);
    border-radius: 50%;
    top: 76px;
    left: 50%;
    transform: translateX(-50%) rotate(-12deg);
}

.planet {
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    right: -54px;
    bottom: -42px;
    background:
        radial-gradient(circle at 28% 25%, #fff4bd, transparent 18%),
        linear-gradient(135deg, var(--yellow), #ff8d66 55%, #b34cff);
    box-shadow: inset -30px -38px 60px rgba(0, 0, 0, 0.26), 0 0 70px rgba(255, 209, 102, 0.22);
    opacity: 0.9;
}

.rocket {
    position: absolute;
    left: 50%;
    top: 64px;
    width: 150px;
    height: 390px;
    transform: translateX(-50%) rotate(6deg);
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.34));
    animation: float 5.5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0) rotate(6deg);
    }

    50% {
        transform: translateX(-50%) translateY(-16px) rotate(3deg);
    }
}

.nose {
    width: 96px;
    height: 118px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff, #f3d9ef);
    border-radius: 80px 80px 24px 24px;
    clip-path: polygon(50% 0, 100% 70%, 85% 100%, 15% 100%, 0 70%);
    border: 3px solid rgba(255, 255, 255, 0.6);
}

.body {
    position: relative;
    width: 112px;
    height: 210px;
    margin: -8px auto 0;
    background: linear-gradient(90deg, #fdf6ff, #ffd7ef 45%, #d2efff);
    border-radius: 22px;
    border: 3px solid rgba(255, 255, 255, 0.55);
    overflow: hidden;
}

.body::before,
.body::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 22px;
    background: rgba(255, 95, 183, 0.78);
}

.body::before {
    top: 34px;
}

.body::after {
    bottom: 42px;
}

.window {
    position: absolute;
    width: 46px;
    height: 46px;
    left: 50%;
    top: 76px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff, var(--cyan) 35%, #2d6cdf 76%);
    border: 5px solid rgba(36, 16, 47, 0.85);
}

.fin {
    position: absolute;
    width: 42px;
    height: 84px;
    bottom: 46px;
    background: linear-gradient(135deg, var(--pink), #d936a2);
    border-radius: 18px 18px 6px 6px;
}

.fin-left {
    left: 4px;
    transform: rotate(-18deg);
}

.fin-right {
    right: 4px;
    transform: rotate(18deg);
}

.flame {
    width: 58px;
    height: 82px;
    margin: -4px auto 0;
    background: linear-gradient(180deg, var(--yellow), #ff7a59 50%, transparent 90%);
    border-radius: 50% 50% 55% 55%;
    filter: blur(0.2px);
    animation: flame 0.22s ease-in-out infinite alternate;
}

@keyframes flame {
    from {
        transform: scaleY(0.86);
        opacity: 0.78;
    }

    to {
        transform: scaleY(1.12);
        opacity: 1;
    }
}

.callout {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(10, 5, 15, 0.62);
    backdrop-filter: blur(12px);
    color: var(--text);
    font-weight: 400;
    font-size: 13px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.callout span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 20px var(--green);
}

.callout-1 {
    top: 92px;
    left: 40px;
}

.callout-2 {
    top: 262px;
    right: 32px;
}

.callout-3 {
    bottom: 96px;
    left: 52px;
}

section {
    padding: 70px 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1;
    letter-spacing: 0.05em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

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

.feature-card,
.panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.feature-card {
    padding: 24px;
    min-height: 245px;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 95, 183, 0.14);
    right: -38px;
    top: -44px;
}

.icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(255, 95, 183, 0.95), rgba(255, 209, 102, 0.9));
    color: #190719;
    font-size: 25px;
    margin-bottom: 18px;
    box-shadow: 0 14px 40px rgba(255, 95, 183, 0.24);
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    letter-spacing: 0.05em;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

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

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    padding: 24px;
}

.faq-item h3 {
    margin: 0 0 10px;
    font-size: 20px;
    letter-spacing: 0.05em;
}

.faq-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.gameplay-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 16px;
    align-items: stretch;
}

.panel {
    padding: 26px;
}

.steps {
    display: grid;
    gap: 14px;
}

.step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.step-num {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 95, 183, 0.18);
    color: var(--pink-2);
    font-weight: 400;
}

.step h3 {
    margin: 0 0 5px;
    font-size: 18px;
}

.step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.mock-window {
    min-height: 430px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at 50% 35%, rgba(123, 223, 242, 0.16), transparent 42%);
}

.window-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--pink);
}

.dot:nth-child(2) {
    background: var(--yellow);
}

.dot:nth-child(3) {
    background: var(--green);
}

.assembly {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 20px;
    padding-top: 20px;
}

.parts {
    display: grid;
    gap: 10px;
}

.part {
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    font-size: 24px;
}

.blueprint {
    min-height: 320px;
    border-radius: 22px;
    border: 1px dashed rgba(123, 223, 242, 0.28);
    background:
        linear-gradient(rgba(123, 223, 242, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 223, 242, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.mini-ship {
    width: 88px;
    height: 230px;
    position: relative;
}

.mini-ship div {
    margin: 0 auto;
}

.mini-ship .mini-nose {
    width: 54px;
    height: 60px;
    background: rgba(255, 255, 255, 0.86);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.mini-ship .mini-body {
    width: 72px;
    height: 120px;
    background: rgba(255, 95, 183, 0.8);
    border-radius: 12px;
}

.mini-ship .mini-engine {
    width: 50px;
    height: 44px;
    background: rgba(255, 209, 102, 0.9);
    border-radius: 8px 8px 20px 20px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tag {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--muted);
    font-weight: 400;
    font-size: 13px;
}

.cta {
    padding: 90px 0;
}

.cta-card {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 7vw, 72px);
    border-radius: 36px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 209, 102, 0.26), transparent 28%),
        radial-gradient(circle at 10% 80%, rgba(123, 223, 242, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(255, 95, 183, 0.22), rgba(255, 255, 255, 0.08));
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-card h2 {
    margin: 0 0 14px;
    font-size: clamp(38px, 6vw, 72px);
    letter-spacing: 0.05em;
    line-height: 0.98;
}

.cta-card p {
    max-width: 700px;
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.6;
}

footer {
    padding: 30px 0 44px;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 400;
}

.socials {
    display: flex;
    gap: 14px;
}

.socials a {
    color: var(--muted);
}

.socials a:hover {
    color: var(--text);
}

@media (max-width: 920px) {

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

    .ship-card {
        min-height: 500px;
    }

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

    .trailer-card {
        max-width: 100%;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, var(--max));
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 0px;
    }

    .hero-logo-stack {
        --wordmark-offset: 72px;
        width: min(100%, 320px);
        margin: 0 auto calc(14px + var(--wordmark-offset));
    }

    .hero-brand-column {
        align-items: center;
    }

    .hero-wordmark {
        width: 100%;
    }

    .hero-emblem-overlay {
        top: 56%;
        width: clamp(62px, 20vw, 86px);
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 22px;
    }

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

    .ship-card {
        min-height: 460px;
    }

    .rocket {
        transform: translateX(-50%) scale(0.85) rotate(6deg);
    }

    @keyframes float {

        0%,
        100% {
            transform: translateX(-50%) translateY(0) scale(0.85) rotate(6deg);
        }

        50% {
            transform: translateX(-50%) translateY(-16px) scale(0.85) rotate(3deg);
        }
    }

    .callout {
        font-size: 12px;
        padding: 10px 12px;
    }

    .callout-1 {
        left: 20px;
        top: 70px;
    }

    .callout-2 {
        right: 18px;
        top: 250px;
    }

    .callout-3 {
        left: 24px;
        bottom: 88px;
    }

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

    .parts {
        grid-template-columns: repeat(4, 1fr);
    }

    .part {
        height: 54px;
    }
}