:root {
    --bg: #0f1113;
    --card:#121417;
    --accent: #7c5cff;
    --muted: #9aa3b2;
    --text: #e6eef6;
    --radius: 12px;
    --wrap: 1100px;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box
}


@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600&display=swap');

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #071018 0%, #0f1720 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.4;
}

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 28px
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: transparent;
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    z-index: 50
}

.logo {
    font-weight: 700;
    color: var(--text);
    text-decoration: none
}

.meta-links a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.95rem
}

.hero {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: center;
    padding: 40px 0
}

@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-media {
        order: -1
    }
}

.hero-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #111428, #0b0f14);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px
}

.hero-media img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 520px;
    object-fit: cover
}

/* overlay play button */
.overlay-play {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.hero-copy .title {
    font-size: 2rem;
    margin: 0 0 6px
}

.tagline {
    margin: 0 0 0px
}

.ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px
}

.btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer
}

.btn.primary {
    background: linear-gradient(90deg, var(--accent), #5fb5ff);
    border: none;
    color: #0b0b10
}

.btn.subtle {
    background: rgba(255, 255, 255, 0.03)
}

.micro-info {
    display: flex;
    gap: 12px;
    color: var(--muted);
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    font-size: 0.92rem
}

/* smaller sections */
.wrap.small {
    max-width: 760px
}

/* cards */
.grid {
    padding: 6px 0
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Each card */
.card {
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 12px;
}

/* Game title */
.game-title {
    margin-top: 0;
    margin-bottom: 16px;
    color: #b87333;
    /* your copper accent */
    font-size: 1.5rem;
    font-weight: 600;
}

/* Layout for screenshot + description */
.game-hero {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.screenshot {
    width: 280px;
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.description {
    flex: 1;
    min-width: 200px;
}

/* Download buttons */
.downloads {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.downloads .btn {
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.btn.primary {
    background: #b87333;
    color: #fff;
}

.btn.subtle {
    background: rgba(184, 115, 51, 0.15);
    color: #ddd;
}

/* Responsive adjustments */
@media(max-width: 720px) {
    .game-hero {
        flex-direction: column;
        align-items: center;
    }

    .description {
        min-width: unset;
        text-align: center;
    }

    .downloads {
        justify-content: center;
    }
}

.card img {
    width: 240px;
    height: 135px;
}

/* footer */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: #b87333
}

@media(max-width:700px) {
    .site-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start
    }
}