:root {
    --bg-top: #071126;
    --bg-bottom: #250d15;
    --card: rgba(0, 0, 0, 0.55);
    --card-soft: rgba(255, 255, 255, 0.13);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.86);
    --text-muted: rgba(255, 255, 255, 0.72);
    --accent: #d5303b;
    --accent-strong: #103e7e;
    --success: #aee2ff;
    --shadow: 0 14px 40px rgba(16, 62, 126, 0.32);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at top left, rgba(16, 62, 126, 0.28), transparent 38%),
        radial-gradient(circle at bottom right, rgba(213, 48, 59, 0.20), transparent 42%),
        linear-gradient(135deg, var(--bg-top), var(--bg-bottom));
    color: var(--text-primary);
    font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
    text-align: center;
    overflow-x: hidden;
}

body {
    display: flex;
    justify-content: center;
}

.page-shell {
    width: min(100%, 480px);
    min-height: 100vh;
    padding: 15px;
}

.frame.simple {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

.header-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge.flag {
    background: linear-gradient(90deg, rgba(16,62,126,0.98) 0 33%, rgba(255,255,255,0.98) 33% 66%, rgba(213,48,59,0.98) 66% 100%);
    color: #09101b;
}

.badge.accent {
    background: rgba(213, 48, 59, 0.18);
    color: #ffe7ea;
}

.header h1 {
    margin: 12px 0 10px;
    font-family: Rockwell, Georgia, serif;
    font-size: clamp(34px, 7.5vw, 40px);
    line-height: 0.97;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.subheadline {
    margin: 0;
    color: var(--success);
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-wrap {
    margin: 18px 0 12px;
}

.hero-card {
    position: relative;
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
}

.hero-card img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
}

.hero-gradient {
    position: absolute;
    inset: auto 0 0;
    height: 52%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
}

.hero-copy {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    display: grid;
    gap: 6px;
    padding: 14px 12px;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(174, 226, 255, 0.20);
    color: var(--success);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy strong {
    display: inline-block;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    font-size: 1.02rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero-copy span:last-child {
    display: inline-block;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.32);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.online-pill {
    display: inline-block;
    margin: 12px 0;
    padding: 11px 22px;
    border-radius: 30px;
    background: #f5f3ef;
    color: #0a1220;
    font-size: 1.04rem;
    font-weight: 800;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.28);
}

.last-activity {
    margin: 8px 0 16px;
    color: var(--text-secondary);
    font-size: 0.97rem;
}

.activity-stack {
    display: grid;
    gap: 9px;
    margin: 18px 0;
}

.activity-toast {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    width: 100%;
    border: 0;
    padding: 14px;
    border-radius: 13px;
    background: var(--card-soft);
    color: #fff;
    text-align: left;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.activity-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14);
}

.activity-toast strong {
    display: block;
    font-size: 0.99rem;
}

.activity-toast small {
    display: block;
    margin-top: 4px;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.activity-toast.is-live {
    background: linear-gradient(90deg, rgba(16,62,126,0.94), rgba(213,48,59,0.94));
    color: #fff;
}

.activity-toast.is-live small {
    color: rgba(255, 255, 255, 0.84);
}

.content {
    margin-top: 22px;
}

.section-head h2 {
    margin: 0 0 12px;
    font-size: 1.36rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin: 0 0 22px;
}

.profile-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 0;
    padding: 0;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: left;
}

.profile-card img {
    display: block;
    width: 100%;
    height: 205px;
    object-fit: cover;
    object-position: center top;
}

.profile-gradient {
    position: absolute;
    inset: auto 0 0;
    height: 58%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
}

.profile-online {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-info {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    display: grid;
    gap: 4px;
    padding: 14px 8px;
}

.profile-info strong {
    font-size: 0.9rem;
    line-height: 1.2;
}

.profile-info small {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.25;
}

.body-text {
    margin: 22px 0;
    padding: 0 15px;
    font-size: 1.05rem;
    line-height: 1.45;
}

.cta-button {
    width: 100%;
    border: 0;
    border-radius: 50px;
    background: linear-gradient(90deg, #d5303b 0%, #103e7e 100%);
    color: #fff;
    font-size: 1.18rem;
    font-weight: 800;
    padding: 20px 28px;
    box-shadow: var(--shadow);
}

.cta-arrow {
    margin-left: 8px;
}

.footer-note {
    margin-top: 36px;
    color: var(--text-muted);
    font-size: 0.84rem;
}

.variant-grid {
    display: grid;
    gap: 14px;
    padding-top: 18px;
}
