:root {
            --ink: #142044;
            --muted: #4e584f;
            --line: #7d866a;
            --blue: #17256d;
            --paper: #f8ead0;
            --white: #fffdf8;
            --toolbar: #667055;
            --tool: #a7c487;
            --frame: #a9c98b;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            color: var(--ink);
            background: #11182d;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
            line-height: 1.55;
        }

        .container {
            width: min(1220px, calc(100vw - 24px));
            margin: 12px 0;
            padding: 42px 34px 22px;
            background: var(--paper);
            border: 5px solid var(--frame);
        }

        h1 {
            max-width: 850px;
            margin: 0 0 20px;
            color: var(--ink);
            font-size: clamp(36px, 5.5vw, 62px);
            line-height: 1.02;
            text-shadow: 0 1px 0 #fff;
        }

        h2 {
            color: var(--ink);
            margin-bottom: 8px;
        }

        p {
            color: var(--muted);
            line-height: 1.5;
        }

        .game-card {
            display: grid;
            grid-template-columns: minmax(240px, 360px) 1fr;
            gap: 24px;
            align-items: center;
            margin-top: 24px;
            padding: 24px;
            border: 2px solid var(--blue);
            border-top: 7px solid var(--toolbar);
            border-radius: 3px;
            background: var(--white);
        }

        .game-card img {
            display: block;
            width: 100%;
            border: 1px solid var(--line);
            border-radius: 3px;
            box-shadow: 0 0 8px rgba(0,0,0,0.12);
        }

        .button {
            display: inline-block;
            margin-top: 20px;
            padding: 11px 16px;
            color: var(--ink);
            border: 2px solid var(--blue);
            border-radius: 3px;
            background: var(--tool);
            text-decoration: none;
            font-weight: 800;
            transition: background 0.2s;
        }

        .button:hover {
            background: #bdd79e;
        }

        .back-link {
            display: inline-block;
            margin-bottom: 18px;
            color: var(--blue);
            text-decoration: none;
            font-weight: 800;
        }

        .back-link:hover {
            text-decoration: underline;
        }

        .site-footer {
            margin-top: 28px;
            padding-top: 18px;
            border-top: 2px solid var(--toolbar);
            color: var(--muted);
            font-size: 0.9rem;
            text-align: right;
        }

        @media (max-width: 720px) {
            body {
                align-items: flex-start;
            }

            .container {
                width: calc(100% - 12px);
                margin: 6px 0;
                padding: 34px 18px 20px;
            }

            .game-card {
                grid-template-columns: 1fr;
            }
        }
