:root {
    --deep-navy: #0B1736;
    --midnight-blue: #13294B;
    --electric-green: #43D62C;
    --lime-glow: #7BFF4D;
    --gold-accent: #D4A62A;
    --soft-gray: #F5F7FA;
    --text-muted: #AAB3C5;
    --border: #243654;
    --danger: #FF4D6D;
    --info: #4EA8FF;
    --surface: rgba(19, 41, 75, .72);
    --surface-strong: rgba(19, 41, 75, .95);
    --shadow: 0 24px 70px rgba(0, 0, 0, .35);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--soft-gray);
    background:
        radial-gradient(circle at top left, rgba(67, 214, 44, .17), transparent 32rem),
        radial-gradient(circle at 82% 8%, rgba(123, 255, 77, .10), transparent 28rem),
        linear-gradient(180deg, #071126 0%, var(--deep-navy) 38%, #071126 100%);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(245,247,250,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,247,250,.025) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

a:hover { color: var(--lime-glow); }

img { max-width: 100%; display: block; }

button, input, select, textarea { font: inherit; }

.container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    transform: translateY(-120%);
    background: var(--lime-glow);
    color: var(--deep-navy);
    padding: 10px 14px;
    border-radius: 999px;
    z-index: 1000;
}

.skip-link:focus { transform: translateY(12px); left: 12px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 17, 38, .78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(245, 247, 250, .08);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand { display: flex; align-items: center; min-width: 210px; }
.brand img { height: 52px; width: auto; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(245, 247, 250, .08);
    background: rgba(19, 41, 75, .45);
    border-radius: 999px;
}

.main-nav a {
    color: var(--text-muted);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.main-nav a.is-active,
.main-nav a:hover {
    color: var(--soft-gray);
    background: rgba(67, 214, 44, .13);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.link-login { color: var(--text-muted); font-weight: 800; font-size: 14px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    color: #061020;
    background: linear-gradient(135deg, var(--lime-glow), var(--electric-green));
    box-shadow: 0 12px 34px rgba(67, 214, 44, .24);
}

.btn-secondary {
    color: var(--soft-gray);
    background: rgba(245, 247, 250, .08);
    border: 1px solid rgba(245, 247, 250, .12);
}

.btn-small { min-height: 40px; padding-inline: 14px; font-size: 14px; }
.w-full { width: 100%; }
.only-mobile { display: none; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(245, 247, 250, .12);
    background: rgba(245, 247, 250, .06);
}
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--soft-gray); }

.main-content { padding: 44px 0 72px; }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lime-glow);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 950;
}

.kicker::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--electric-green);
    border-radius: 999px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
    gap: 36px;
    align-items: center;
    min-height: 620px;
}

.hero h1, .page-hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(38px, 5vw, 74px);
    line-height: .94;
    letter-spacing: -0.06em;
}

.hero p, .page-hero p, .lead {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 680px;
}

.hero-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px;
    margin: 30px 0 22px;
    background: rgba(245, 247, 250, .08);
    border: 1px solid rgba(245, 247, 250, .10);
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.hero-search input {
    min-height: 54px;
    border: 0;
    outline: 0;
    color: var(--soft-gray);
    background: transparent;
    padding: 0 16px;
}

.hero-search input::placeholder { color: rgba(245, 247, 250, .52); }
.hero-search button { border-radius: 999px; border: 0; background: var(--electric-green); color: #071126; font-weight: 950; padding-inline: 26px; cursor: pointer; }

.hero-actions, .hero-badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-badges { margin-top: 22px; }
.hero-badges span, .footer-badges span {
    color: var(--text-muted);
    border: 1px solid rgba(245, 247, 250, .10);
    background: rgba(19, 41, 75, .50);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hero-panel {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px;
    border: 1px solid rgba(245, 247, 250, .10);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 50% 38%, rgba(67,214,44,.20), transparent 12rem),
        linear-gradient(145deg, rgba(19,41,75,.92), rgba(7,17,38,.88));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(123, 255, 77, .18);
    border-radius: 38px;
    transform: rotate(45deg);
}

.hero-panel img { width: 180px; position: relative; z-index: 2; filter: drop-shadow(0 22px 34px rgba(0,0,0,.42)); }

.floating-card {
    position: absolute;
    z-index: 3;
    width: 230px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(7, 17, 38, .88);
    border: 1px solid rgba(245, 247, 250, .12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .30);
}

.floating-card small, .floating-card span { color: var(--text-muted); display: block; }
.floating-card strong { display: block; margin: 6px 0; font-size: 22px; }
.deal-card { left: 22px; bottom: 42px; }
.coin-card { right: 22px; top: 54px; }
.coin-card strong { color: var(--gold-accent); }

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 20px 0 72px;
    border: 1px solid rgba(245, 247, 250, .10);
    background: rgba(245, 247, 250, .08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.trust-strip article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
    padding: 22px;
    background: rgba(19, 41, 75, .55);
}

.trust-strip p { grid-column: 2; margin: 0; color: var(--text-muted); line-height: 1.5; }
.trust-icon { grid-row: span 2; color: var(--lime-glow); font-size: 34px; }

.section { margin: 72px 0; }
.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}
.section-header h2 { margin: 10px 0 8px; font-size: clamp(28px, 3vw, 44px); letter-spacing: -0.04em; }
.section-header p { margin: 0; color: var(--text-muted); max-width: 680px; line-height: 1.6; }
.section-link { color: var(--lime-glow); font-weight: 950; white-space: nowrap; }

.category-grid, .game-grid, .product-grid, .seller-grid, .official-grid, .details-grid, .stats-grid, .support-grid, .admin-grid {
    display: grid;
    gap: 18px;
}
.category-grid { grid-template-columns: repeat(4, 1fr); }
.game-grid { grid-template-columns: repeat(4, 1fr); }
.product-grid { grid-template-columns: repeat(3, 1fr); }
.seller-grid { grid-template-columns: repeat(3, 1fr); }
.official-grid { grid-template-columns: repeat(3, 1fr); }
.details-grid { grid-template-columns: repeat(2, 1fr); }
.stats-grid { grid-template-columns: repeat(4, 1fr); margin: 28px 0 54px; }
.support-grid { grid-template-columns: repeat(3, 1fr); }
.admin-grid { grid-template-columns: repeat(3, 1fr); }

.category-card, .game-card, .product-card, .seller-card, .official-card, .details-grid article, .stats-grid article, .support-grid article, .notice-card, .legal-content article, .admin-grid article, .support-form, .auth-card {
    background: var(--surface);
    border: 1px solid rgba(245, 247, 250, .10);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .18);
}

.category-card, .game-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
    min-height: 178px;
}
.category-card:hover, .game-card:hover, .product-card:hover, .seller-card:hover, .official-card:hover { transform: translateY(-2px); border-color: rgba(123,255,77,.34); }
.category-card, .game-card, .product-card, .seller-card, .official-card { transition: .18s ease; }
.category-card span { color: var(--lime-glow); font-size: 34px; }
.category-card strong, .game-card strong { font-size: 20px; }
.category-card small, .game-card small, .category-card em, .game-card em { color: var(--text-muted); font-style: normal; }

.game-avatar {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--midnight-blue), rgba(67,214,44,.18));
    border: 1px solid rgba(123,255,77,.20);
    border-radius: 18px;
    color: var(--lime-glow);
    font-weight: 950;
}

.product-card { overflow: hidden; }
.product-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 190px;
    background:
        radial-gradient(circle, rgba(123,255,77,.16), transparent 8rem),
        linear-gradient(145deg, rgba(19,41,75,.92), rgba(7,17,38,.90));
}
.game-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    color: var(--deep-navy);
    background: var(--lime-glow);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
}
.media-cube { color: var(--electric-green); font-size: 64px; text-shadow: 0 0 22px rgba(67,214,44,.35); }
.media-cube.big { font-size: 110px; }
.product-body { padding: 18px; }
.product-meta, .product-footer, .rating-line, .seller-line, .toolbar, .range-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.product-meta { color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; font-weight: 900; }
.product-card h3 { margin: 12px 0; font-size: 18px; line-height: 1.25; }
.seller-line { color: var(--text-muted); justify-content: flex-start; flex-wrap: wrap; font-size: 14px; }
.seller-line a { color: var(--soft-gray); font-weight: 900; }
.rating-line { justify-content: flex-start; color: var(--text-muted); font-size: 14px; }
.stars { color: var(--gold-accent); letter-spacing: 1px; }
.product-footer { margin-top: 18px; }
.product-footer strong, .price-box strong { display: block; font-size: 24px; color: var(--soft-gray); }
.product-footer small, .price-box span { display: block; color: var(--gold-accent); margin-top: 4px; }
.delivery { color: var(--lime-glow); font-size: 13px; font-weight: 900; }

.badge {
    display: inline-flex;
    align-items: center;
    color: var(--soft-gray);
    background: rgba(245, 247, 250, .08);
    border: 1px solid rgba(245, 247, 250, .10);
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 950;
}
.badge--success { color: #061020; background: var(--electric-green); border-color: var(--electric-green); }
.badge--warning, .badge--gold { color: #061020; background: var(--gold-accent); border-color: var(--gold-accent); }

.split-section {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 20px;
    margin: 72px 0;
}
.safe-box, .coin-explainer, .faq-preview, .seller-summary, .listing-info, .listing-gallery, .seller-profile {
    border-radius: var(--radius-xl);
    background: var(--surface-strong);
    border: 1px solid rgba(245, 247, 250, .10);
    box-shadow: var(--shadow);
}
.safe-box, .coin-explainer, .faq-preview { padding: 32px; }
.safe-box h2, .coin-explainer h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.05; letter-spacing: -.04em; }
.steps { display: grid; gap: 14px; padding: 0; list-style: none; }
.steps li { display: grid; gap: 4px; padding: 16px; background: rgba(245,247,250,.06); border-radius: 16px; border: 1px solid rgba(245,247,250,.08); }
.steps span, .coin-explainer p { color: var(--text-muted); line-height: 1.6; }
.coin-symbol { display: grid; place-items: center; width: 74px; height: 74px; border-radius: 24px; color: #061020; background: var(--gold-accent); font-size: 34px; box-shadow: 0 18px 40px rgba(212,166,42,.20); }

.seller-card { padding: 22px; display: grid; gap: 18px; grid-template-columns: auto 1fr; }
.seller-avatar { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 18px; color: #061020; background: linear-gradient(135deg, var(--lime-glow), var(--electric-green)); font-weight: 950; font-size: 22px; }
.seller-avatar.large { width: 92px; height: 92px; border-radius: 28px; font-size: 36px; }
.seller-card h3 { margin: 0 0 6px; }
.seller-card p { margin: 0; color: var(--text-muted); }
.seller-card dl { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; }
.seller-card dl div { padding: 12px; background: rgba(245,247,250,.06); border-radius: 14px; }
.seller-card dt { color: var(--text-muted); font-size: 12px; }
.seller-card dd { margin: 4px 0 0; font-weight: 950; }

.official-card { padding: 24px; }
.official-card h3 { font-size: 22px; margin: 14px 0 8px; }
.official-card p { color: var(--text-muted); line-height: 1.6; }
.official-card strong { display: block; font-size: 24px; }
.official-card small { color: var(--gold-accent); font-weight: 900; }

.faq-preview { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.faq-preview h2 { margin: 10px 0; font-size: 34px; }
.faq-preview p { color: var(--text-muted); }

.page-hero.compact {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    margin-bottom: 32px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 86% 24%, rgba(67,214,44,.16), transparent 18rem),
        linear-gradient(145deg, rgba(19,41,75,.92), rgba(7,17,38,.88));
    border: 1px solid rgba(245, 247, 250, .10);
    box-shadow: var(--shadow);
}
.page-hero.compact h1 { font-size: clamp(34px, 4vw, 58px); max-width: 860px; }

.market-layout { display: grid; grid-template-columns: 300px 1fr; gap: 22px; align-items: start; }
.filters {
    position: sticky;
    top: 104px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: rgba(19,41,75,.82);
    border: 1px solid rgba(245,247,250,.10);
}
.filters h2 { margin-top: 0; }
.filters label { display: grid; gap: 8px; color: var(--text-muted); font-weight: 800; margin-bottom: 14px; }
.filters input, .filters select, .toolbar select, .support-form input, .support-form textarea, .auth-card input {
    width: 100%;
    border: 1px solid rgba(245,247,250,.12);
    background: rgba(7,17,38,.72);
    color: var(--soft-gray);
    border-radius: 14px;
    padding: 13px 14px;
    outline: 0;
}
.check-list label { display: flex; grid-template-columns: auto 1fr; align-items: center; gap: 10px; margin-bottom: 10px; }
.toolbar { margin-bottom: 18px; padding: 14px 16px; background: rgba(19,41,75,.52); border-radius: 18px; border: 1px solid rgba(245,247,250,.08); }

.notice-card { padding: 22px; margin-bottom: 28px; }
.notice-card strong { color: var(--gold-accent); }
.notice-card p { color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }

.listing-detail { display: grid; grid-template-columns: 1fr .88fr; gap: 22px; margin-bottom: 28px; }
.listing-gallery { min-height: 520px; padding: 18px; }
.gallery-main { position: relative; display: grid; place-items: center; height: 420px; border-radius: 24px; background: radial-gradient(circle, rgba(67,214,44,.18), transparent 12rem), rgba(7,17,38,.72); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.gallery-thumbs span { height: 70px; border-radius: 16px; background: rgba(245,247,250,.08); border: 1px solid rgba(245,247,250,.08); }
.listing-info { padding: 30px; }
.listing-info h1 { font-size: clamp(32px, 4vw, 52px); line-height: 1; letter-spacing: -.04em; }
.price-box { padding: 18px; background: rgba(245,247,250,.06); border-radius: 18px; margin: 22px 0; border: 1px solid rgba(245,247,250,.08); }
.price-box small { color: var(--text-muted); }
.buy-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.security-alert { margin-top: 18px; padding: 16px; border-radius: 16px; background: rgba(212,166,42,.12); border: 1px solid rgba(212,166,42,.28); color: #FFE2A1; line-height: 1.5; }
.details-grid article, .stats-grid article, .support-grid article { padding: 24px; }
.details-grid h2, .support-grid h2 { margin-top: 0; }
.details-grid p, .support-grid p, .legal-content p { color: var(--text-muted); line-height: 1.7; }
.seller-summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px; margin: 28px 0; }

.seller-profile { overflow: hidden; margin-bottom: 24px; }
.seller-cover { height: 160px; background: linear-gradient(135deg, rgba(67,214,44,.25), rgba(19,41,75,.55)), url('/assets/img/brand-sheet.png') center/cover; opacity: .72; }
.seller-profile-body { display: flex; align-items: center; gap: 22px; padding: 0 28px 28px; margin-top: -42px; position: relative; }
.seller-profile h1 { margin: 6px 0; font-size: 42px; }
.seller-profile p { color: var(--text-muted); }
.stats-grid article strong { display: block; font-size: 28px; color: var(--lime-glow); margin-bottom: 6px; }
.stats-grid article span { color: var(--text-muted); }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline article { position: relative; padding: 24px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid rgba(245,247,250,.10); }
.timeline span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--electric-green); color: #061020; font-weight: 950; }
.timeline p { color: var(--text-muted); line-height: 1.6; }

.faq-list { display: grid; gap: 14px; max-width: 900px; margin-inline: auto; }
.faq-item { background: var(--surface); border: 1px solid rgba(245,247,250,.10); border-radius: 18px; padding: 18px 22px; }
.faq-item summary { cursor: pointer; font-weight: 950; font-size: 18px; }
.faq-item p { color: var(--text-muted); line-height: 1.6; }

.legal-content { display: grid; gap: 18px; max-width: 980px; margin-inline: auto; }
.legal-content article { padding: 26px; }
.legal-content h2 { margin-top: 0; }

.support-form, .auth-card { padding: 24px; display: grid; gap: 14px; max-width: 680px; margin: 28px auto 0; }
.support-form label, .auth-card label { display: grid; gap: 8px; color: var(--text-muted); font-weight: 850; }
.support-form textarea { min-height: 140px; resize: vertical; }

.auth-shell { display: grid; grid-template-columns: 1fr 420px; gap: 28px; align-items: center; min-height: 620px; }
.auth-copy h1 { font-size: clamp(38px, 5vw, 68px); line-height: .96; letter-spacing: -.06em; }
.auth-copy p, .auth-card p { color: var(--text-muted); line-height: 1.6; }
.auth-card a { color: var(--lime-glow); font-weight: 900; }

.admin-grid article { padding: 24px; font-weight: 950; color: var(--lime-glow); }

.site-footer {
    border-top: 1px solid rgba(245,247,250,.08);
    background: rgba(7, 17, 38, .92);
    padding: 54px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.footer-logo { height: 62px; width: auto; margin-bottom: 14px; }
.site-footer p { color: var(--text-muted); line-height: 1.6; max-width: 380px; }
.site-footer h3 { margin: 0 0 14px; }
.site-footer a { display: block; color: var(--text-muted); margin: 10px 0; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(245,247,250,.08); color: var(--text-muted); font-size: 14px; }

@media (max-width: 1040px) {
    .main-nav {
        position: fixed;
        top: 82px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border-radius: 22px;
        padding: 12px;
        background: rgba(7,17,38,.96);
        box-shadow: var(--shadow);
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { border-radius: 14px; }
    .menu-toggle { display: block; }
    .link-login, .header-actions .btn-small { display: none; }
    .brand { min-width: 0; }
    .hero, .listing-detail, .split-section, .market-layout, .auth-shell { grid-template-columns: 1fr; }
    .filters { position: fixed; inset: 92px 16px auto; max-height: calc(100vh - 108px); overflow: auto; z-index: 55; display: none; }
    .filters.is-open { display: block; }
    .only-mobile { display: inline-flex; }
    .product-grid, .seller-grid, .official-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid, .game-grid, .stats-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
    .container { width: min(var(--container), calc(100% - 22px)); }
    .main-content { padding-top: 24px; }
    .header-inner { min-height: 72px; }
    .brand img { height: 44px; }
    .hero { min-height: auto; padding-top: 12px; }
    .hero h1, .page-hero h1 { font-size: 40px; }
    .hero-search { grid-template-columns: 1fr; border-radius: 24px; }
    .hero-search button { min-height: 48px; }
    .hero-panel { min-height: 430px; }
    .floating-card { width: 190px; }
    .deal-card { left: 12px; bottom: 20px; }
    .coin-card { right: 12px; top: 24px; }
    .trust-strip, .category-grid, .game-grid, .product-grid, .seller-grid, .official-grid, .details-grid, .stats-grid, .support-grid, .admin-grid, .timeline, .footer-grid { grid-template-columns: 1fr; }
    .section-header, .faq-preview, .seller-summary, .footer-bottom, .toolbar { align-items: stretch; flex-direction: column; }
    .page-hero.compact { padding: 26px; min-height: 250px; }
    .listing-info { padding: 22px; }
    .gallery-main { height: 310px; }
    .buy-actions .btn { width: 100%; }
    .seller-profile-body { align-items: flex-start; flex-direction: column; }
    .trust-strip article { grid-template-columns: 1fr; }
    .trust-strip p { grid-column: auto; }
    .range-row { flex-direction: column; }
}

/* Build 02 — Auth, perfis e banco */
.flash-stack{display:grid;gap:10px;margin:0 0 18px}.flash{padding:14px 16px;border-radius:16px;border:1px solid var(--border);background:rgba(245,247,250,.06);color:var(--soft-gray)}.flash a{color:var(--lime-glow);font-weight:800}.flash--success{border-color:rgba(67,214,44,.38);background:rgba(67,214,44,.10)}.flash--warning{border-color:rgba(212,166,42,.42);background:rgba(212,166,42,.12)}.flash--error{border-color:rgba(255,77,109,.42);background:rgba(255,77,109,.12)}
.check-row{display:flex!important;align-items:flex-start;gap:10px;line-height:1.4;color:var(--text-muted)}.check-row input{width:auto!important;margin-top:4px}.compact-list{margin:18px 0 0;padding-left:18px;color:var(--text-muted)}.compact-list li{margin:6px 0}.settings-form{max-width:720px;background:linear-gradient(180deg,rgba(19,41,75,.92),rgba(11,23,54,.92));border:1px solid var(--border);border-radius:28px;padding:24px;display:grid;gap:16px}.settings-form label{display:grid;gap:8px;color:var(--soft-gray);font-weight:700}.settings-form input,.settings-form textarea{width:100%;border:1px solid var(--border);border-radius:16px;background:rgba(7,10,18,.72);color:var(--soft-gray);padding:13px 14px;outline:none}.settings-form textarea{min-height:130px;resize:vertical}.settings-form input:focus,.settings-form textarea:focus{border-color:var(--electric-green);box-shadow:0 0 0 3px rgba(67,214,44,.14)}
.dashboard-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin:28px 0}.panel-card{background:linear-gradient(180deg,rgba(19,41,75,.94),rgba(11,23,54,.96));border:1px solid var(--border);border-radius:26px;padding:22px;box-shadow:var(--shadow)}.panel-card h2{margin:0 0 10px}.panel-card p{color:var(--text-muted)}.table-wrap{overflow:auto;border-radius:18px;border:1px solid var(--border)}.admin-table{width:100%;border-collapse:collapse;min-width:560px}.admin-table th,.admin-table td{text-align:left;padding:13px 14px;border-bottom:1px solid var(--border)}.admin-table th{background:rgba(7,10,18,.55);color:var(--soft-gray)}.admin-table td{color:var(--text-muted)}
@media(max-width:900px){.dashboard-grid{grid-template-columns:1fr}.header-actions{gap:8px}.header-actions .link-login:nth-of-type(n+2){display:none}} 

/* Build 03 — anúncios e marketplace funcional */
.product-media img{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(1.04) contrast(1.03)}
.filter-form,.sort-form,.inline-form,.moderation-form{margin:0}.sort-form select{min-width:180px}.empty-state{grid-column:1/-1;background:linear-gradient(180deg,rgba(19,41,75,.94),rgba(11,23,54,.96));border:1px solid var(--border);border-radius:26px;padding:28px;box-shadow:var(--shadow)}.empty-state h2{margin:0 0 8px}.empty-state p{color:var(--text-muted)}
.listing-form{background:linear-gradient(180deg,rgba(19,41,75,.94),rgba(11,23,54,.96));border:1px solid var(--border);border-radius:28px;padding:24px;display:grid;gap:18px;box-shadow:var(--shadow)}.form-grid{display:grid;gap:16px}.form-grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}.listing-form label,.filter-form label,.report-form label,.moderation-form label{display:grid;gap:8px;color:var(--soft-gray);font-weight:800}.listing-form input,.listing-form select,.listing-form textarea,.filter-form input,.filter-form select,.report-form input,.report-form select,.report-form textarea,.moderation-form input{width:100%;border:1px solid var(--border);border-radius:16px;background:rgba(7,10,18,.72);color:var(--soft-gray);padding:13px 14px;outline:none}.listing-form textarea,.report-form textarea{min-height:130px;resize:vertical}.listing-form input:focus,.listing-form select:focus,.listing-form textarea:focus,.filter-form input:focus,.filter-form select:focus,.report-form textarea:focus,.moderation-form input:focus{border-color:var(--electric-green);box-shadow:0 0 0 3px rgba(67,214,44,.14)}.listing-form small{color:var(--text-muted);font-weight:500}.action-cell{display:flex;gap:8px;align-items:center;flex-wrap:wrap}.btn-danger{background:rgba(255,77,109,.13);border:1px solid rgba(255,77,109,.38);color:#fff}.btn-danger:hover{background:rgba(255,77,109,.22)}.report-form{display:grid;gap:14px;margin-top:12px}.moderation-form{display:grid;gap:8px;min-width:240px}.admin-grid a{background:linear-gradient(180deg,rgba(19,41,75,.94),rgba(11,23,54,.96));border:1px solid var(--border);border-radius:24px;padding:20px;color:var(--soft-gray);font-weight:900;text-decoration:none}.admin-grid a:hover{border-color:rgba(123,255,77,.34);transform:translateY(-2px)}
@media(max-width:760px){.form-grid.two{grid-template-columns:1fr}.action-cell{display:grid}.moderation-form{min-width:0}.sort-form select{min-width:0;width:100%}}

/* Build 4 — Checkout, pedidos e carteira */
.checkout-grid{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(320px,.8fr);gap:22px;margin:28px 0}.checkout-summary{position:sticky;top:92px;align-self:start}.summary-list{display:grid;gap:12px;margin:18px 0}.summary-list div{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0;border-bottom:1px solid var(--border)}.summary-list dt{color:var(--text-muted);font-weight:800}.summary-list dd{margin:0;color:var(--soft-gray);font-weight:900}.checkbox-line{display:flex!important;gap:10px;align-items:flex-start;line-height:1.45;color:var(--text-muted)!important}.checkbox-line input{width:auto!important;margin-top:4px}.order-actions{align-items:flex-start;flex-wrap:wrap}.delivery-form{display:grid;gap:12px;width:100%;max-width:640px}.delivery-form label{display:grid;gap:8px;color:var(--soft-gray);font-weight:800}.delivery-form textarea{width:100%;min-height:110px;border:1px solid var(--border);border-radius:16px;background:rgba(7,10,18,.72);color:var(--soft-gray);padding:13px 14px;outline:none;resize:vertical}.timeline{display:grid!important;grid-template-columns:1fr!important;gap:12px;margin:0;padding:0;list-style:none}.timeline li{padding:16px 18px;border:1px solid var(--border);border-radius:18px;background:rgba(7,10,18,.32)}.timeline li strong{display:block;color:var(--soft-gray);text-transform:uppercase;font-size:12px;letter-spacing:.08em}.timeline li span{display:block;width:auto;height:auto;background:transparent;color:var(--text-muted);font-weight:700;margin-top:4px}.timeline li p{margin:8px 0 0;color:var(--text-muted);line-height:1.55}.muted{color:var(--text-muted)}
@media (max-width:860px){.checkout-grid{grid-template-columns:1fr}.checkout-summary{position:static}.summary-list div{align-items:flex-start;flex-direction:column;gap:4px}}

/* Build 5 — chat, entrega e evidências */
.chat-panel { scroll-margin-top: 96px; }
.chat-thread {
    display: grid;
    gap: 14px;
    margin: 18px 0;
    max-height: 520px;
    overflow: auto;
    padding: 8px;
    border: 1px solid rgba(245, 247, 250, .08);
    border-radius: 20px;
    background: rgba(11, 23, 54, .38);
}
.chat-message {
    max-width: 82%;
    padding: 14px 16px;
    border: 1px solid rgba(245, 247, 250, .10);
    border-radius: 18px 18px 18px 6px;
    background: rgba(19, 41, 75, .78);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}
.chat-message--own {
    justify-self: end;
    border-radius: 18px 18px 6px 18px;
    border-color: rgba(67, 214, 44, .25);
    background: linear-gradient(135deg, rgba(67, 214, 44, .13), rgba(19, 41, 75, .85));
}
.chat-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: var(--muted, #AAB3C5);
    font-size: .86rem;
}
.chat-meta strong { color: var(--text, #F5F7FA); }
.chat-message p { margin: 0 0 8px; white-space: normal; }
.chat-form,
.evidence-form {
    border-top: 1px solid rgba(245, 247, 250, .08);
    padding-top: 16px;
    margin-top: 16px;
}
.chat-form textarea,
.evidence-form textarea {
    min-height: 96px;
}
.evidence-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7BFF4D;
    font-weight: 700;
    text-decoration: none;
}
.evidence-link:hover { text-decoration: underline; }
#evidencias { scroll-margin-top: 96px; }
@media (max-width: 720px) {
    .chat-message { max-width: 100%; }
    .chat-thread { max-height: none; }
}
