:root {
    color-scheme: dark;
    --background: #0b1220;
    --background-raised: #111b2d;
    --surface: #162238;
    --surface-hover: #1c2c47;
    --line: rgba(191, 211, 235, 0.16);
    --line-strong: rgba(191, 211, 235, 0.34);
    --text: #edf4ff;
    --text-soft: #b8c8dc;
    --text-muted: #8092aa;
    --blue: #70b7ff;
    --red: #ff7377;
    --gold: #f1c777;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--background);
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 12% 0%, #1c3150 0, transparent 34rem),
        radial-gradient(circle at 100% 72%, #172a3a 0, transparent 30rem),
        var(--background);
    color: var(--text);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

a:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 5px;
}

.site-shell {
    display: flex;
    width: min(1120px, calc(100% - 48px));
    min-height: 100vh;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    padding: 48px 0;
}

.card-kicker {
    margin: 0;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

h3,
p {
    margin-top: 0;
}

.tracker-navigation {
    width: 100%;
}

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

.tracker-card {
    display: flex;
    min-height: 265px;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: linear-gradient(145deg, var(--background-raised),
                                var(--surface));
    text-decoration: none;
    transition: border-color 160ms ease, background-color 160ms ease,
                transform 160ms ease;
}

.tracker-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    background: var(--surface-hover);
}

.tracker-card-hitman .card-kicker {
    color: var(--red);
}

.tracker-card-palworld .card-kicker {
    color: var(--gold);
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 400;
    letter-spacing: -0.04em;
}

.tracker-card p {
    max-width: 410px;
    margin-bottom: 26px;
    color: var(--text-soft);
}

.card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.card-action span {
    color: var(--blue);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

@media (max-width: 680px) {
    .site-shell {
        width: calc(100% - 36px);
        padding-top: 58px;
    }

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

    .tracker-card {
        min-height: 230px;
        padding: 25px;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
