@font-face {
    font-family: "Manrope";
    src: url("fonts/manrope.woff2") format("woff2");
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-primary: #ff6021;
    --primary-hover: #c24919;
    --primary-pressed: #a63e15;
    --dark: #161616;
    --wrapper-bg: #151516;
    --surface: #202021;
    --stroke: #444447;
    --text: #ffffff;
    --muted: #a5a5ac;
    --success: #1bca04;
    --radius: 16px;
}

* {
    box-sizing: border-box;
    -webkit-user-select: none;
    user-select: none;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", system-ui, sans-serif;
    color: var(--text);
    background:
        radial-gradient(ellipse 90% 55% at 50% -15%, rgba(255, 96, 33, 0.22), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(255, 96, 33, 0.08), transparent 50%),
        var(--wrapper-bg);
}

.container {
    width: min(100%, 380px);
    margin: 0 auto;
    padding: 28px 16px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.brand-bar {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-primary);
}

.game-title {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}

.game-screen {
    width: 300px;
    position: relative;
}

canvas {
    display: block;
    width: 300px;
    height: 500px;
    border-radius: var(--radius);
    background: #1a1a1c;
    box-shadow:
        0 0 0 1px var(--stroke),
        0 20px 48px rgba(0, 0, 0, 0.45);
}

.game-description {
    margin: 14px 0 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.tagline {
    margin: 4px 0 0;
    font-size: 0.78rem;
    color: var(--muted);
}

.wallet-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff6021 0%, #e3531b 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.wallet-link:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}
