:root {
    --bg: #f6f1e8;
    --card: #fffaf2;
    --text: #1f2937;
    --muted: #6b7280;
    --accent: #0f766e;
    --accent-dark: #115e59;
    --border: #e7dcc8;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.15), transparent 26%),
        radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.15), transparent 22%),
        var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px 20px 56px;
}

.narrow {
    max-width: 900px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 8px;
}

.brand h1 {
    margin: 0;
    font-size: 1.8rem;
}

.brand p,
.panel p,
.info-card span,
footer {
    color: var(--muted);
    line-height: 1.7;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--accent-dark);
    font-size: .85rem;
    font-weight: 700;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: stretch;
}

.panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 28px;
}

.hero-copy h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    margin: 0 0 14px;
}

.play-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    margin-top: 22px;
    padding: 8px 18px;
    border-radius: 16px;
    background: #111827;
    color: #fff;
    box-shadow: var(--shadow);
    font-weight: 700;
}

.play-icon {
    width: 28px;
    height: 28px;
}

.play-badge span {
    display: grid;
    line-height: 1.1;
    text-align: left;
}

.play-badge small {
    font-size: .68rem;
    font-weight: 500;
    opacity: .8;
}

.play-badge strong {
    font-size: 1.02rem;
}

.info-card div {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.info-card div:last-child {
    border-bottom: 0;
}

.info-card strong {
    display: block;
    margin-bottom: 4px;
}

.section {
    margin-top: 24px;
}

.section h3,
.policy-page h1 {
    margin-top: 0;
}

.policy-grid {
    display: grid;
    gap: 12px;
}

.policy-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
}

.back-link {
    color: var(--accent-dark);
    font-weight: 700;
}

.policy-content {
    color: #4b5563;
    line-height: 1.75;
}

.policy-content :first-child {
    margin-top: 0;
}

.policy-content :last-child {
    margin-bottom: 0;
}

footer {
    margin-top: 24px;
    text-align: center;
    font-size: .95rem;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }
}
