.play-page {
    display: grid;
    gap: 24px;
    padding: 36px 0 68px;
}

.play-hero-card,
.play-panel,
.play-status-card,
.play-download-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.play-hero-card {
    display: grid;
    grid-template-columns: 1.45fr 0.95fr;
    gap: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.play-hero-card::before,
.play-panel::before,
.play-status-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(177, 45, 63, 0.14), transparent 28%),
        linear-gradient(180deg, transparent, rgba(185, 138, 75, 0.03));
}

.play-hero-copy,
.play-panel > *,
.play-status-card > * {
    position: relative;
    z-index: 1;
}

.play-eyebrow,
.play-status-label,
.play-download-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

.play-hero-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 0.98;
    color: var(--text);
}

.play-hero-copy p,
.play-section-heading p {
    margin: 0;
    max-width: 680px;
    color: var(--muted-strong);
    line-height: 1.7;
}

.play-hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.play-hero-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(185, 138, 75, 0.1);
    border: 1px solid rgba(185, 138, 75, 0.22);
    color: var(--text);
}

.play-status-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.play-status-value {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 1.9rem;
    font-weight: 800;
}

.play-status-value.is-online {
    color: #67d98c;
}

.play-status-value.is-offline {
    color: #ff8585;
}

.play-status-subtext {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.55;
}

.play-status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.play-status-item {
    padding: 14px;
    border-radius: 14px;
    background: var(--panel-soft);
    border: 1px solid var(--line);
}

.play-status-item span {
    display: block;
    margin-bottom: 5px;
    font-size: 0.78rem;
    color: var(--muted);
}

.play-status-item strong {
    color: var(--text);
    font-size: 1rem;
}

.play-panel {
    padding: 26px;
    position: relative;
    overflow: hidden;
}

.play-section-heading {
    margin-bottom: 22px;
}

.play-panel h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 1.7rem;
}

.play-download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.play-download-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    position: relative;
    overflow: hidden;
}

.play-download-card.primary {
    border-color: rgba(185, 138, 75, 0.24);
    background: linear-gradient(180deg, rgba(36, 29, 21, 0.96), rgba(22, 19, 15, 0.98));
}

.play-download-card.is-unavailable {
    opacity: 0.78;
}

.play-download-card strong {
    display: block;
    color: var(--text);
    font-size: 1.3rem;
}

.play-download-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.play-download-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.play-download-meta span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--panel-soft);
    border: 1px solid var(--line);
    color: var(--muted-strong);
    font-size: 0.8rem;
    font-weight: 700;
}

.play-download-disabled {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .play-hero-card,
    .play-download-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .play-page {
        padding: 26px 0 50px;
    }

    .play-hero-card,
    .play-panel,
    .play-status-card,
    .play-download-card {
        border-radius: 20px;
    }

    .play-hero-card,
    .play-panel,
    .play-status-card {
        padding: 22px;
    }

    .play-status-grid {
        grid-template-columns: 1fr;
    }
}
