* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-top: #08080d;
    --bg-mid: #17172a;
    --bg-bottom: #0f1d34;
    --cyan: #00eaff;
    --magenta: #da0ef5;
    --magenta-dark: #b008cc;
    --text: #ffffff;
    --muted: #b9bfd0;
    --panel: rgba(8, 12, 20, 0.78);
    --panel-border: rgba(0, 234, 255, 0.22);
}

body {
    font-family: Arial, sans-serif;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top right, rgba(218, 14, 245, 0.16), transparent 28%),
        radial-gradient(circle at bottom left, rgba(0, 234, 255, 0.12), transparent 30%),
        linear-gradient(135deg, var(--bg-top) 0%, var(--bg-mid) 48%, var(--bg-bottom) 100%);
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--panel-border);
}

.studio-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--cyan);
    font-weight: bold;
    font-size: 1.05rem;
}

.studio-logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 234, 255, 0.5));
}

.hero {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    min-height: calc(100vh - 73px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    padding: 40px 0 56px;
}

.hero-copy,
.hero-visual {
    position: relative;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 234, 255, 0.25);
    border-radius: 999px;
    background: rgba(0, 234, 255, 0.08);
    color: var(--cyan);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: bold;
}

.game-logo {
    margin-bottom: 22px;
}

.game-logo img {
    display: block;
    max-width: min(420px, 100%);
    height: auto;
    filter: drop-shadow(0 0 28px rgba(218, 14, 245, 0.45));
}

.hero-title {
    font-size: 4.25rem;
    line-height: 1.02;
    margin-bottom: 18px;
    text-shadow: 0 0 20px rgba(218, 14, 245, 0.22);
}

.hero-description {
    max-width: 640px;
    font-size: 1.14rem;
    line-height: 1.7;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 34px 0 26px;
}

.play-button,
.steam-wishlist-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 16px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.play-button {
    background: linear-gradient(45deg, var(--magenta), var(--magenta-dark));
    color: var(--text);
    box-shadow: 0 0 28px rgba(218, 14, 245, 0.38);
}

.play-button:hover,
.play-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(218, 14, 245, 0.48);
    background: linear-gradient(45deg, #ff1493, var(--magenta));
}

.play-button.is-loading {
    opacity: 0.92;
}

.steam-wishlist-button {
    border: 2px solid #66c0f4;
    background: #1b2838;
    color: var(--text);
    box-shadow: 0 0 24px rgba(102, 192, 244, 0.18);
}

.steam-wishlist-button:hover,
.steam-wishlist-button:focus-visible {
    transform: translateY(-2px);
    background: #11202c;
    box-shadow: 0 10px 34px rgba(102, 192, 244, 0.28);
}

.play-icon,
.steam-icon {
    font-size: 1.1rem;
}

.status-card {
    max-width: 620px;
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.status-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--cyan);
}

.status-card p {
    color: var(--muted);
    line-height: 1.6;
}

.status-highlight {
    color: var(--text);
}

.preview-frame {
    position: relative;
    padding: 16px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.preview-frame::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.28), rgba(218, 14, 245, 0.24));
    z-index: -1;
    filter: blur(18px);
}

.preview-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 2px solid rgba(0, 234, 255, 0.35);
}

.demo-info {
    margin-top: 16px;
    text-align: center;
    color: #9ba6bd;
    font-size: 0.95rem;
}