:root {
    --bg: #090b10;
    --panel: #111722;
    --panel-2: #17202d;
    --line: rgba(255, 255, 255, 0.1);
    --text: #f4f7fb;
    --muted: #9aa8b7;
    --teal: #12d6b0;
    --gold: #f5c451;
    --red: #ff6b6b;
    --green: #4ade80;
    --blue: #66a6ff;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; }

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}
body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img, svg, canvas, video { max-width: 100%; }
main { min-width: 0; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 5vw;
    background: rgba(9, 11, 16, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.brand, .nav, .hero-actions, .balance-row, .panel-heading, .footer { display: flex; align-items: center; }
.brand { gap: 10px; font-weight: 800; font-size: 1.1rem; }
.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #06110e;
    background: linear-gradient(135deg, var(--teal), var(--gold));
}

.nav { gap: 18px; color: var(--muted); font-weight: 600; font-size: 0.94rem; }
.nav a:hover { color: var(--text); }
.nav-button, .primary-button, .secondary-button, .card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
}

.nav-button, .secondary-button { border: 1px solid var(--line); background: rgba(255,255,255,0.06); }
.primary-button { background: linear-gradient(135deg, var(--teal), var(--gold)); color: #07110e; }
.full { width: 100%; }

.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: grid;
    align-items: center;
    overflow: hidden;
}

.hero-image, .hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image { object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(9,11,16,0.9), rgba(9,11,16,0.5), rgba(9,11,16,0.28)); }
.hero-content {
    position: relative;
    width: min(680px, 90vw);
    margin-left: 5vw;
    padding-bottom: 9vh;
}

.eyebrow {
    display: inline-block;
    color: var(--teal);
    text-transform: uppercase;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 8vw, 7.5rem); line-height: 0.92; margin-bottom: 18px; letter-spacing: 0; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; margin-bottom: 12px; }
h3 { margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.65; }
.hero p { max-width: 560px; font-size: 1.08rem; }
.hero-actions { gap: 12px; flex-wrap: wrap; margin: 26px 0 16px; }
.notice { font-size: 0.85rem !important; }

.band { padding: 72px 5vw; }
.section-heading { margin-bottom: 28px; }
.market-band { background: #0d121a; }
.market-grid, .product-grid, .detail-grid, .stats-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
}

.market-tile, .product-card, .panel, .balance-card, .wallet-summary, .auth-form, .account-sidebar {
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.market-tile { padding: 18px; min-height: 140px; }
.market-tile strong { display: block; font-size: 1.4rem; }
.market-tile span { color: var(--muted); font-size: 0.9rem; }
.market-price { margin: 18px 0 8px; font-size: 1.45rem; font-weight: 800; }
.market-change { font-weight: 800; }
.market-change.up { color: var(--green); }
.market-change.down { color: var(--red); }
.loading { color: var(--muted); }

.split-band {
    background: linear-gradient(180deg, #090b10 0%, #0d121a 100%);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lobby-wrap {
    width: min(1180px, 90vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(420px, 1.12fr);
    gap: 32px;
    align-items: start;
}
.lobby-copy {
    padding-top: 8px;
}
.lobby-copy h2 {
    max-width: 460px;
    font-size: clamp(2rem, 3.4vw, 3.45rem);
}
.lobby-copy p {
    max-width: 520px;
}
.lobby-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
}
.lobby-stat {
    min-height: 96px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.045);
}
.lobby-stat strong {
    display: block;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1;
    margin-bottom: 10px;
    color: var(--text);
}
.lobby-stat span {
    color: var(--muted);
    font-size: 0.86rem;
}
.muted { color: var(--muted); }
.live-panels { display: grid; gap: 14px; }
.activity-panel { display: grid; gap: 10px; }
.online-panel {
    padding: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.online-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.online-head span, .online-row small { color: var(--muted); }
.online-head strong { display: block; font-size: 1.25rem; line-height: 1.1; margin-top: 4px; }
.online-head em {
    font-style: normal;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--green);
    background: rgba(74,222,128,0.12);
    border: 1px solid rgba(74,222,128,0.32);
    font-weight: 800;
}
.online-users { display: grid; gap: 8px; }
.online-row {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) max-content;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}
.online-row strong, .online-row small { display: block; }
.online-row b { font-size: 0.85rem; color: var(--gold); white-space: nowrap; }
.online-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.feed-title {
    color: var(--muted);
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 4px 0 10px;
}
.activity-row {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    border-radius: 8px;
}
.activity-row p { margin: 0; color: var(--text); overflow-wrap: anywhere; }
.activity-row time { color: var(--muted); font-size: 0.82rem; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.12); }

.product-card { padding: 22px; }
.product-symbol {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #07110e;
    background: var(--gold);
    font-weight: 900;
    margin-bottom: 18px;
}
.product-card dl, .detail-grid { margin: 18px 0; }
.product-card dl div, .detail-grid div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}
dt, .detail-grid span { color: var(--muted); }
dd { margin: 0; font-weight: 800; }
.card-link { width: 100%; background: rgba(18,214,176,0.14); border: 1px solid rgba(18,214,176,0.4); color: var(--teal); }
.empty-state { color: var(--muted); text-align: center; padding: 24px; }

.about-band {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
    background: #0d121a;
}
.stats-strip div { padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,0.05); }
.stats-strip strong { display: block; font-size: 2rem; color: var(--gold); }
.stats-strip span { color: var(--muted); }

.auth-page, .product-detail, .wallet-page, .account-shell {
    width: min(1180px, 90vw);
    margin: 48px auto 80px;
}
.auth-page {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 24px;
    min-height: 650px;
}
.auth-art {
    padding: 56px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(18,214,176,0.25), rgba(102,166,255,0.18)), url('../images/hero-trading.png') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.login-art { background-position: right center; }
.auth-art h1 { font-size: clamp(2.5rem, 5vw, 5rem); }
.auth-form { padding: 34px; align-self: center; }
label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--muted); font-weight: 700; }
.optional { color: var(--muted); font-weight: 500; font-size: 0.85rem; }
input, select {
    width: 100%;
    min-height: 48px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.07);
    color: var(--text);
    padding: 0 14px;
    font: inherit;
}
select option { color: #101318; }
.password-checker {
    display: grid;
    gap: 10px;
    margin: -4px 0 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.045);
}
.password-meter {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
}
.password-meter span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--red);
    transition: width 180ms ease, background 180ms ease;
}
.password-checker[data-strength="medium"] .password-meter span { background: var(--gold); }
.password-checker[data-strength="strong"] .password-meter span { background: var(--green); }
.password-score {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
}
.password-checker ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.password-checker li {
    color: var(--muted);
    font-size: 0.82rem;
}
.password-checker li::before {
    content: '-';
    display: inline-block;
    width: 16px;
    color: var(--red);
    font-weight: 900;
}
.password-checker li.is-valid {
    color: var(--green);
}
.password-checker li.is-valid::before {
    content: '+';
    color: var(--green);
}
.form-error, .flash {
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 14px;
}
.form-error, .flash.error { background: rgba(255,107,107,0.16); color: #ffd2d2; border: 1px solid rgba(255,107,107,0.4); }
.flash.success { background: rgba(74,222,128,0.16); color: #d7ffe4; border: 1px solid rgba(74,222,128,0.4); }
.flash { width: min(920px, 90vw); margin: 18px auto 0; }
.auth-switch { text-align: center; margin: 16px 0 0; }
.auth-switch a { color: var(--teal); font-weight: 800; }
.auth-form .secondary-button { margin-top: 10px; }

.account-shell {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 22px;
    align-items: start;
}
.account-sidebar, .panel, .wallet-summary { padding: 24px; }
.avatar {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: #07110e;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
}
.account-main { display: grid; gap: 22px; }
.topup-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(245,196,81,0.32);
    background: linear-gradient(135deg, rgba(245,196,81,0.16), rgba(18,214,176,0.09));
    box-shadow: var(--shadow);
}
.topup-callout h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.topup-callout p {
    margin: 0;
}
.balance-row { gap: 14px; align-items: stretch; flex-wrap: wrap; }
.balance-card { flex: 1; min-width: 180px; padding: 22px; }
.balance-card span, .wallet-summary span { color: var(--muted); }
.balance-card strong, .wallet-summary strong { display: block; margin-top: 8px; font-size: 2rem; }
.panel-heading { justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.panel-heading h2 { font-size: 1.35rem; margin: 0; }
.panel-heading span { color: var(--muted); }
.compact { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.verified-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 10px;
    margin: 0 0 18px;
    border-radius: 999px;
    color: var(--green);
    background: rgba(74,222,128,0.12);
    border: 1px solid rgba(74,222,128,0.32);
    font-size: 0.82rem;
    font-weight: 800;
}
.mini-referral {
    display: grid;
    gap: 6px;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.045);
}
.mini-referral span, .referral-code-pill span { color: var(--muted); font-size: 0.86rem; }
.mini-referral strong, .referral-code-pill strong { color: var(--gold); overflow-wrap: anywhere; }
.referral-box {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-bottom: 22px;
}
.referral-code-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(245,196,81,0.28);
    border-radius: 8px;
    background: rgba(245,196,81,0.08);
}
.referral-code-pill span {
    text-transform: uppercase;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}
.referral-share {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}
.referral-share input {
    min-height: 48px;
    font-weight: 700;
    color: var(--text);
    background: rgba(255,255,255,0.045);
}
.copy-link-button {
    min-width: 126px;
    height: 48px;
    color: var(--text);
}
.copy-status {
    grid-column: 1 / -1;
    min-height: 16px;
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 700;
}

.table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-size: 0.82rem; text-transform: uppercase; }
.status { padding: 6px 10px; border-radius: 999px; font-weight: 800; font-size: 0.82rem; }
.status.pending { background: rgba(245,196,81,0.15); color: var(--gold); }
.status.paid { background: rgba(74,222,128,0.15); color: var(--green); }
.status.failed, .status.cancelled { background: rgba(255,107,107,0.15); color: var(--red); }

.product-detail {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 36px;
    align-items: center;
}
.detail-visual {
    min-height: 480px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: radial-gradient(circle at 50% 45%, rgba(18,214,176,0.25), transparent 42%), #0e141d;
}
.coin-orbit {
    display: grid;
    place-items: center;
    width: min(280px, 70vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #fff0a8);
    color: #12120a;
    box-shadow: 0 0 0 22px rgba(245,196,81,0.08), 0 40px 90px rgba(245,196,81,0.22);
}
.coin-orbit span { font-size: 4rem; font-weight: 900; }
.detail-copy h1 { font-size: clamp(2.4rem, 5vw, 5rem); }
.detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-grid div { display: grid; }
.buy-box { margin-top: 24px; display: grid; gap: 10px; }
.buy-box span { color: var(--muted); text-align: center; }

.wallet-page {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 22px;
}
.wallet-page .panel:last-child { grid-column: 1 / -1; }
.wallet-summary { min-height: 230px; display: flex; flex-direction: column; justify-content: center; }
.wallet-form h1 { font-size: 2rem; }

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(3, 6, 10, 0.76);
    backdrop-filter: blur(12px);
}
.modal-backdrop[hidden] { display: none; }
.modal-panel {
    position: relative;
    width: min(460px, 100%);
    max-height: min(720px, 92vh);
    overflow-y: auto;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #151c27, #0f141d);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: rgba(255,255,255,0.06);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.modal-close:hover { color: var(--text); }
.modal-heading { padding-right: 42px; margin-bottom: 18px; }
.modal-heading h2 { font-size: 2rem; margin-bottom: 8px; }
.modal-heading p, .modal-note { margin: 0; }
.modal-balance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.045);
}
.modal-balance span { color: var(--muted); }
.modal-balance strong { color: var(--gold); font-size: 1.25rem; }
.topup-modal-form { display: grid; }
.modal-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
}
.product-modal-panel {
    width: min(760px, 100%);
}
.product-modal-head {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}
.product-modal-head .modal-heading {
    min-width: 0;
    padding-right: 44px;
    margin-bottom: 8px;
}
.product-modal-symbol {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    color: #07110e;
    background: linear-gradient(135deg, var(--gold), #ffe898);
    box-shadow: 0 0 0 10px rgba(245,196,81,0.08);
    font-size: 1.15rem;
    font-weight: 900;
}
.product-modal-copy {
    margin: 4px 0 18px;
}
.product-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
    padding: 2px 0 4px;
}
.product-modal-grid div {
    min-height: 64px;
}
.product-modal-grid strong {
    overflow-wrap: anywhere;
}
.product-modal-form {
    margin-top: 16px;
}
.product-modal-form span {
    color: var(--muted);
    text-align: center;
}

.footer {
    justify-content: space-between;
    gap: 20px;
    padding: 28px 5vw;
    border-top: 1px solid var(--line);
    color: var(--muted);
}
.footer div { display: grid; gap: 4px; }

@media (max-width: 860px) {
    .site-header { align-items: flex-start; flex-direction: column; gap: 14px; padding: 16px 5vw; }
    .nav { flex-wrap: wrap; gap: 12px; }
    .hero { min-height: 760px; }
    .hero-content { margin: 0 auto; padding-top: 130px; }
    .lobby-wrap, .about-band, .auth-page, .account-shell, .product-detail, .wallet-page {
        grid-template-columns: 1fr;
    }
    .lobby-copy h2, .lobby-copy p { max-width: none; }
    .auth-page { min-height: auto; }
    .auth-art { min-height: 360px; padding: 30px; }
    .panel-heading { align-items: flex-start; flex-direction: column; }
    .panel-heading span { width: 100%; }
    .account-sidebar h2, .account-sidebar p, .balance-card strong, .wallet-summary strong { overflow-wrap: anywhere; }
    .topup-callout { align-items: stretch; flex-direction: column; }
    .balance-row { flex-direction: column; }
    .referral-box, .referral-share { grid-template-columns: 1fr; }
    .detail-visual { min-height: 340px; }
    .detail-grid, .product-modal-grid { grid-template-columns: 1fr; }
    .wallet-page .panel:last-child { grid-column: auto; }
    .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
    .site-header { position: static; padding: 14px 12px; }
    .brand { width: 100%; }
    .nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
    }
    .nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        padding: 0 8px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255,255,255,0.045);
        text-align: center;
    }
    h1 { font-size: 2.5rem; line-height: 1; }
    h2 { font-size: 1.7rem; }
    .band { padding: 54px 5vw; }
    .hero { min-height: 680px; }
    .hero-content { width: calc(100% - 24px); padding-top: 60px; }
    .hero-actions a { width: 100%; }
    .market-grid, .product-grid, .stats-strip, .compact { grid-template-columns: 1fr; }
    .auth-page, .product-detail, .wallet-page, .account-shell { width: calc(100% - 24px); margin: 24px auto 56px; }
    .auth-art { min-height: 300px; padding: 22px; }
    .auth-form, .panel, .account-sidebar { padding: 20px; }
    .balance-card, .wallet-summary { padding: 18px; }
    .balance-card strong, .wallet-summary strong { font-size: 1.6rem; }
    .topup-callout { padding: 20px; }
    .detail-visual { min-height: 260px; }
    .coin-orbit { width: min(210px, 68vw); box-shadow: 0 0 0 14px rgba(245,196,81,0.08), 0 28px 70px rgba(245,196,81,0.2); }
    .coin-orbit span { font-size: 2.8rem; }
    .modal-backdrop {
        place-items: start center;
        padding: 12px;
        overflow-y: auto;
    }
    .modal-panel {
        width: 100%;
        max-height: calc(100dvh - 24px);
        padding: 20px;
    }
    .modal-heading h2 { font-size: 1.6rem; }
    .modal-balance { align-items: flex-start; flex-direction: column; }
    .password-checker ul { grid-template-columns: 1fr; }
    .lobby-stats { grid-template-columns: 1fr; }
    .online-row { grid-template-columns: 10px minmax(0, 1fr); }
    .online-row b { grid-column: 2; }
    .activity-row time { display: none; }
    .product-modal-head { grid-template-columns: 1fr; }
    .product-modal-head .modal-heading { padding-right: 42px; }
    .product-modal-symbol { width: 58px; height: 58px; }
    table { min-width: 620px; }
}
