﻿        :root { color-scheme: dark; --bg: #101016; --text: #f7f5ff; --muted: #aaa7bd; --accent: #c2adff; }
        * { box-sizing: border-box; }
        body { margin: 0; background: var(--bg); color: var(--text); font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
        body::before { content: ""; position: absolute; inset: 0 0 auto; height: 720px; pointer-events: none; z-index: -1; background: radial-gradient(ellipse at 50% 15%, #34245280, transparent 65%); }
        a { color: inherit; text-decoration: none; }
        a:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; }
        .site-header { max-width: 1240px; margin: 0 auto; padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid #ffffff0d; }
        .wordmark { font-size: 14px; font-weight: 700; letter-spacing: -.2px; display: flex; align-items: center; gap: 11px; }
        .brand-mark { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 9px; background: var(--accent); color: #201632; font-size: 21px; }
        .social-icons { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
        .social-icons a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid #ffffff10; background: #ffffff04; border-radius: 12px; transition: background .2s, transform .2s; }
        .social-icons a:hover { background: #ffffff12; transform: translateY(-2px); }
        .social-icons img { width: 22px; height: 22px; object-fit: contain; }
        main { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
        .hero { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 46px 0 30px; }
        .mascot { position: relative; padding: 7px; border-radius: 50%; border: 1px solid #c2adff30; background: #c2adff09; box-shadow: 0 0 60px #b399ff12; }
        .mascot img { display: block; width: 112px; height: 112px; object-fit: cover; border-radius: 50%; }
        .eyebrow { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin: 24px 0 12px; }
        .hero h1 { font-size: clamp(30px, 4.1vw, 53px); line-height: 1.12; letter-spacing: -2px; margin: 0; overflow-wrap: anywhere; }
        .hero h1 span { color: var(--accent); }
        .hero-copy { margin: 17px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
        .total-stat { margin-top: 33px; padding: 21px 35px 18px; border: 1px solid #c2adff20; border-radius: 18px; background: linear-gradient(120deg, #c2adff0d, #c2adff03); min-width: min(100%, 370px); max-width: 100%; }
        .stat-label { display: flex; align-items: center; justify-content: center; gap: 8px; color: #dbd5ee; font-size: 11px; letter-spacing: 1.8px; font-weight: 700; text-transform: uppercase; }
        .stat-spark { color: var(--accent); font-size: 15px; }
        #total-plays { display: block; margin: 10px 0 8px; font-family: 'Courier New', monospace; font-size: clamp(25px, 4.2vw, 45px); font-weight: 700; line-height: 1.2; font-variant-numeric: tabular-nums; letter-spacing: -1.5px; white-space: nowrap; }
        #plays-status { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
        .games-section { padding: 21px 0 44px; }
        .section-heading { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 20px; }
        .section-heading h2 { font-size: 21px; letter-spacing: -.6px; margin: 0; }
        .section-heading h2 span { margin-left: 8px; border: 1px solid #ffffff16; border-radius: 7px; padding: 3px 7px; color: var(--muted); font-size: 11px; vertical-align: middle; }
        .section-note { color: var(--muted); font-size: 12px; }
        .container { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
        .game-link { min-width: 0; padding: 9px; border: 1px solid #ffffff0f; border-radius: 20px; background: #191920; transition: transform .2s, border-color .2s, box-shadow .2s; }
        .game-link:hover { transform: translateY(-6px); border-color: #c2adff70; box-shadow: 0 16px 36px #00000040; }
        .game-art { position: relative; overflow: hidden; border-radius: 12px; aspect-ratio: 1; background: #25232c; }
        .game-art img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
        .game-link:hover .game-art img { transform: scale(1.04); }
        .game-info { padding: 15px 9px 10px; }
        .game-info h3 { font-size: 15px; line-height: 1.4; letter-spacing: -.2px; margin: 0; min-height: 42px; }
        .game-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 12px; }
        .game-plays { color: var(--muted); margin: 0; font-size: 12px; line-height: 1.5; }
        .play-arrow { display: grid; place-items: center; border-radius: 50%; width: 27px; height: 27px; flex: 0 0 27px; background: #ffffff08; color: var(--accent); font-size: 17px; transition: background .2s; }
        .game-link:hover .play-arrow { background: #c2adff24; }
        footer { display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid #ffffff0d; padding: 23px 0 29px; color: var(--muted); font-size: 11px; line-height: 1.6; }
        footer p { margin: 0; }
        @media (max-width: 850px) { .container { grid-template-columns: repeat(2, minmax(0, 1fr)); } .game-info h3 { min-height: 0; } }
        @media (max-width: 700px) { .site-header { flex-direction: column; gap: 16px; padding: 19px 20px; } .social-icons { order: -1; } main { padding: 0 20px; } .hero { padding-top: 32px; } .hero h1 { letter-spacing: -1.2px; } .hero-copy { max-width: 270px; } .mascot img { width: 96px; height: 96px; } .total-stat { padding: 20px 16px 17px; } .section-note { font-size: 11px; } .container { gap: 12px; } .game-link { padding: 6px; border-radius: 16px; } .game-info { padding: 12px 5px 8px; } .game-info h3 { font-size: 13px; min-height: 37px; } .game-plays { font-size: 11px; } footer { flex-direction: column; align-items: center; gap: 5px; text-align: center; } }
        @media (max-width: 360px) { main { padding: 0 14px; } .section-note { display: none; } .game-meta { gap: 3px; } .play-arrow { width: 22px; height: 22px; flex-basis: 22px; } }
        @media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }

