/* v1/css/theme.css — Ana site teması (kırmızı / lacivert), V2 bileşenlerinin üzerine */

:root {
    --bg-main: #0a0f1e;
    --bg-card: #121a2e;
    --bg-lighter: #1a2238;
    --bg-4: #222c48;
    --text-main: #f2f3f9;
    --text-muted: #97a1b5;
    --text-3: #646f88;
    --primary: #e50914;
    --primary-hover: #b00710;
    --primary-glow: rgba(229, 9, 20, 0.4);
    --success: #22c55e;
    --success-bg: rgba(34, 197, 94, 0.1);
    --blue: #3b82f6;
    --warning: #f9a826;
    --danger: #f25050;
    --border: rgba(255, 255, 255, 0.08);
    --border2: rgba(255, 255, 255, 0.14);
    --radius: 14px;
    --font-display: 'Rajdhani', 'Inter', sans-serif;
}

body.v1 {
    background: radial-gradient(1100px 520px at 50% -8%, rgba(229, 9, 20, 0.14), transparent 60%), var(--bg-main);
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, .display {
    font-family: var(--font-display);
    letter-spacing: 0.01em;
}

.page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px 70px;
    flex: 1;
}

.text-accent { color: var(--primary); }
.text-success { color: var(--success); }
.muted { color: var(--text-muted); }

/* ---------- Nav ---------- */
.v1-nav.site-nav {
    position: sticky;
    top: 12px;
    z-index: 60;
    width: calc(100% - 32px);
    max-width: 1280px;
    margin: 12px auto 0;
    padding: 10px 18px;
    border-radius: 18px;
    background: rgba(18, 26, 46, 0.88);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 14px;
}

.v1-nav .brand { gap: 10px; }

.v1-nav .brand-mark {
    background: linear-gradient(135deg, #ff3d3d, var(--primary));
    box-shadow: 0 6px 18px var(--primary-glow);
}

.v1-nav .brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.brand-accent { color: var(--primary); }

.v1-nav .nav-links {
    margin: 0 auto;
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
}

.v1-nav .nav-links a {
    padding: 8px 13px;
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}

.v1-nav .nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.v1-nav .nav-links a.active { color: #fff; background: rgba(255, 255, 255, 0.09); }
.v1-nav .nav-links a.nav-free { color: #ff5a63; font-weight: 600; }
.v1-nav .nav-links a.nav-free.active { background: rgba(229, 9, 20, 0.16); }

.nav-new {
    padding: 2px 7px;
    border-radius: 6px;
    background: var(--success);
    color: #052e16;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: transparent;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.nav-auth { display: flex; gap: 8px; align-items: center; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid var(--border2);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); }

.v1-nav .btn-cta {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 6px 18px var(--primary-glow);
}

.v1-nav .nav-member { gap: 8px; }

.v1-nav .rights-pill {
    border-color: rgba(229, 9, 20, 0.55);
    color: #ff5a63;
    background: rgba(229, 9, 20, 0.08);
}

.bell-menu { position: relative; }

.bell-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border2);
    background: transparent;
    color: #fff;
    cursor: pointer;
    position: relative;
    font-size: 15px;
}

.bell-btn:hover { background: rgba(255, 255, 255, 0.06); }

.bell-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: grid;
    place-items: center;
}

.bell-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: 340px;
    max-width: calc(100vw - 32px);
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border2);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 70;
}

.bell-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.bell-readall {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    font-family: inherit;
}

.bell-list { max-height: 380px; overflow-y: auto; }

.bell-empty {
    padding: 34px 14px;
    text-align: center;
    color: var(--text-3);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    font-size: 13px;
}

.bell-empty i { font-size: 28px; opacity: 0.6; }

.bell-item {
    display: flex;
    gap: 12px;
    padding: 12px 14px;
    text-decoration: none;
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
}

.bell-item:hover { background: rgba(255, 255, 255, 0.04); }
.bell-item.unread { background: rgba(229, 9, 20, 0.06); }

.bell-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--bg-lighter);
    display: grid;
    place-items: center;
    color: #ff5a63;
    flex-shrink: 0;
}

.bell-item-body { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.bell-item-body span { color: var(--text-muted); font-size: 12px; }
.bell-item-body small { color: var(--text-3); font-size: 11px; }

.v1-nav .profile-avatar { overflow: hidden; background: #1f2a44; }
.v1-nav .profile-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-dropdown .profile-sep { height: 1px; background: var(--border); margin: 6px 0; }

.rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
    padding: 2px 8px;
    border-radius: 8px;
    background: rgba(249, 168, 38, 0.14);
    border: 1px solid rgba(249, 168, 38, 0.4);
    color: #fbbf24;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .nav-toggle { display: inline-grid; place-items: center; }
    .v1-nav .nav-links {
        display: none;
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(100% + 8px);
        flex-direction: column;
        background: var(--bg-card);
        border: 1px solid var(--border2);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    }
    .v1-nav .nav-links.open { display: flex; }
    .v1-nav .nav-member { margin-left: 0; }
    .v1-nav .profile-label { display: none; }
}

/* ---------- Footer ---------- */
.v1-footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    background: #070b16;
    padding: 46px 20px 22px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 28px;
}

.footer-brand p { margin: 14px 0 16px; color: var(--text-muted); font-size: 13.5px; line-height: 1.6; }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fff; }

.footer-social { display: flex; gap: 8px; }

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--text-muted);
    text-decoration: none;
}

.footer-social a:hover { color: #fff; border-color: var(--primary); }

.footer-col h4 {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26px;
    height: 2px;
    background: var(--primary);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    padding: 4px 0;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    max-width: 1200px;
    margin: 34px auto 0;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-3);
    font-size: 12px;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ---------- Shared section bits ---------- */
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin: 54px 0 20px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff5a63;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-head h2 { font-size: 30px; margin-top: 6px; }
.section-head p { color: var(--text-muted); margin-top: 6px; font-size: 14px; }
.section-link { color: var(--text-muted); text-decoration: none; font-size: 13.5px; white-space: nowrap; }
.section-link:hover { color: #fff; }

.page-header-center h1 { font-size: 40px; }
.title-rule { display: block; width: 54px; height: 3px; background: var(--primary); margin: 12px auto 0; border-radius: 2px; }

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
}

.icon-tile {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 19px;
    flex-shrink: 0;
}

.tile-red { background: linear-gradient(135deg, #ff4d4d, var(--primary)); box-shadow: 0 8px 20px var(--primary-glow); }
.tile-blue { background: linear-gradient(135deg, #4f8bff, #2563eb); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35); }
.tile-green { background: linear-gradient(135deg, #34d399, #16a34a); box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35); }
.tile-cyan { background: linear-gradient(135deg, #22d3ee, #0891b2); box-shadow: 0 8px 20px rgba(8, 145, 178, 0.35); }
.tile-gold { background: linear-gradient(135deg, #fbbf24, #d97706); box-shadow: 0 8px 20px rgba(217, 119, 6, 0.35); }
.tile-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35); }

.stat-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
}

.stat-tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-tile strong { font-family: var(--font-display); font-size: 30px; line-height: 1; }
.stat-tile span { color: var(--text-3); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.stat-tile .num-red { color: #ff3d47; }
.stat-tile .num-green { color: var(--success); }
.stat-tile .num-blue { color: #60a5fa; }

.chip-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 8px;
    border: 1px solid rgba(229, 9, 20, 0.45);
    color: #ff5a63;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(229, 9, 20, 0.08);
}

.note-red {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(229, 9, 20, 0.4);
    background: rgba(229, 9, 20, 0.07);
    color: #f3c0c3;
    font-size: 13.5px;
    line-height: 1.55;
}

.note-green {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.07);
    color: #bbf7d0;
    font-size: 13.5px;
    line-height: 1.55;
}

.note-gold {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(249, 168, 38, 0.4);
    background: rgba(249, 168, 38, 0.07);
    color: #fde68a;
    font-size: 13.5px;
    line-height: 1.55;
}

.btn-primary { background: var(--primary); border-color: var(--primary); box-shadow: 0 6px 18px var(--primary-glow); }
.btn-primary:hover:not(:disabled) { background: var(--primary-hover); }
.btn-blue { background: var(--blue) !important; border-color: var(--blue) !important; box-shadow: 0 6px 18px rgba(59, 130, 246, 0.35) !important; }
.btn-sm { padding: 8px 14px !important; font-size: 13px !important; }

/* ---------- Home ---------- */
.hero {
    position: relative;
    min-height: 560px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0d1424;
    border: 1px solid var(--border);
    margin-top: 6px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease;
    filter: saturate(1.1);
}

.hero-bg.active { opacity: 1; }

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 15, 30, 0.55), rgba(10, 15, 30, 0.78) 60%, rgba(10, 15, 30, 0.95));
}

.hero-inner { position: relative; z-index: 2; padding: 60px 20px; max-width: 760px; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 99px;
    border: 1px solid rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 10px #4ade80; }

.hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1;
    font-weight: 700;
}

.hero h1 span { display: block; color: var(--primary); }
.hero p { color: #d3d8e6; font-size: 17px; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.hero-actions .btn-primary, .hero-actions .btn-ghost { padding: 14px 26px; font-size: 15px; border-radius: 99px; }
.hero-vitrin { position: absolute; bottom: 44px; left: 0; right: 0; text-align: center; font-size: 12.5px; color: var(--text-muted); z-index: 2; }
.hero-vitrin strong { color: #fff; }
.hero-dots { position: absolute; bottom: 20px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 2; }
.hero-dots button { width: 8px; height: 8px; border-radius: 4px; border: none; background: rgba(255, 255, 255, 0.35); cursor: pointer; padding: 0; transition: width 0.2s; }
.hero-dots button.active { width: 26px; background: var(--primary); }
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border2);
    background: rgba(10, 15, 30, 0.6);
    color: #fff;
    cursor: pointer;
}

.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.stats-row .stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; text-align: center; }
.stats-row strong { display: block; font-family: var(--font-display); font-size: 36px; color: #fff; }
.stats-row strong em { color: var(--primary); font-style: normal; }
.stats-row span { color: var(--text-muted); font-size: 13px; }

.games-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 1fr);
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
}

.games-row > * { scroll-snap-align: start; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.feature h3 { font-size: 21px; margin: 16px 0 8px; }
.feature p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; position: relative; }
.step-num { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: rgba(229, 9, 20, 0.25); line-height: 1; }
.step h3 { font-size: 20px; margin: 10px 0 6px; }
.step p { color: var(--text-muted); font-size: 13.5px; line-height: 1.6; }

.reviews-strip { overflow: hidden; position: relative; }
.reviews-track { display: flex; gap: 14px; width: max-content; animation: scrollX 60s linear infinite; }
.reviews-strip:hover .reviews-track { animation-play-state: paused; }

@keyframes scrollX { to { transform: translateX(-50%); } }

.review-card {
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-user { display: flex; align-items: center; gap: 10px; }
.review-user .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-lighter); display: grid; place-items: center; font-weight: 700; color: #fff; }
.review-user strong { font-size: 14px; }
.review-user small { display: block; color: #4ade80; font-size: 11px; }
.review-stars { color: #fbbf24; font-size: 13px; letter-spacing: 1px; }
.review-text { color: #d3d8e6; font-size: 13.5px; line-height: 1.6; font-style: italic; }
.review-meta { color: var(--text-3); font-size: 12px; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
.reviews-grid .review-card { width: auto; }

.home-cta {
    margin-top: 60px;
    border-radius: 22px;
    padding: 46px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.22), rgba(18, 26, 46, 0.9));
    border: 1px solid rgba(229, 9, 20, 0.35);
}

.home-cta h2 { font-size: 34px; }
.home-cta p { color: var(--text-muted); margin: 8px 0 20px; }

@media (max-width: 900px) {
    .stats-row, .steps { grid-template-columns: repeat(2, 1fr); }
    .features { grid-template-columns: 1fr; }
    .hero { min-height: 480px; }
}

/* ---------- Catalog cards (V2 base + esongames touches) ---------- */
.card-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 6px;
    text-align: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
}

.card-strip.special { background: linear-gradient(90deg, #f97316, #ef4444); }
.card-strip.featured { background: linear-gradient(90deg, #ef4444, #b00710); }
.catalog-card.has-strip { border-color: rgba(239, 68, 68, 0.45); }
.catalog-card.special.has-strip { border-color: rgba(249, 115, 22, 0.55); }

.buy-btn {
    margin-top: auto;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
}

.buy-btn.special { background: linear-gradient(90deg, #f97316, #ef4444); }
.buy-btn:hover { filter: brightness(1.1); }
.card-price { font-size: 13px; color: #4ade80; font-weight: 700; }

.catalog-toolbar { display: flex; flex-direction: column; align-items: center; gap: 14px; margin: 18px 0 26px; }
.count-tile { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 40px; text-align: center; }
.count-tile strong { display: block; font-family: var(--font-display); font-size: 40px; color: #ff3d47; line-height: 1; }
.count-tile span { color: var(--text-3); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.filter-chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.search-big {
    width: 100%;
    max-width: 620px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 6px 6px 18px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border2);
}

.search-big input { flex: 1; background: transparent; border: none; color: #fff; font-size: 15px; outline: none; font-family: inherit; }
.search-big .btn-primary { border-radius: 12px; padding: 12px 22px; }

/* ---------- Game detail ---------- */
.game-hero { display: grid; grid-template-columns: 300px 1fr; gap: 30px; align-items: start; margin-top: 14px; }
.game-cover-big { border-radius: 18px; overflow: hidden; border: 1px solid var(--border2); aspect-ratio: 2 / 3; background: var(--bg-card); }
.game-cover-big img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.game-title { font-size: 40px; line-height: 1.05; }
.game-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 20px; align-items: center; }
.stock { display: inline-flex; align-items: center; gap: 6px; color: #4ade80; font-size: 13px; font-weight: 600; }
.stock .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; }
.stock.out { color: var(--text-muted); }
.stock.out .dot { background: var(--text-3); box-shadow: none; }
.genre-chip { padding: 4px 10px; border-radius: 8px; background: var(--bg-lighter); border: 1px solid var(--border); color: var(--text-muted); font-size: 12px; }
.game-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.game-actions .btn-primary { padding: 13px 26px; font-size: 15px; }
.game-section { margin-top: 32px; }
.game-section h2 { font-size: 24px; margin-bottom: 12px; }
.game-about { color: #d3d8e6; line-height: 1.7; font-size: 14.5px; }
.shots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.shots-grid a { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16 / 9; background: var(--bg-card); }
.shots-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.shots-grid a:hover img { transform: scale(1.04); }
.info-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.info-list div { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; }
.info-list small { display: block; color: var(--text-3); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.info-list strong { font-size: 14px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); text-decoration: none; font-size: 14px; margin-bottom: 14px; }
.back-link:hover { color: #fff; }

@media (max-width: 800px) {
    .game-hero { grid-template-columns: 1fr; }
    .game-cover-big { max-width: 260px; }
}

/* ---------- Auth ---------- */
.auth-wrap { display: flex; justify-content: center; padding: 30px 0 40px; }
.auth-card.v1-auth { max-width: 430px; width: 100%; border-top: 3px solid var(--primary); text-align: left; }
.auth-logo { width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 18px; background: linear-gradient(135deg, #ff3d3d, var(--primary)); display: grid; place-items: center; color: #fff; font-size: 26px; box-shadow: 0 10px 28px var(--primary-glow); }
.v1-auth h1 { text-align: center; font-size: 30px; }
.v1-auth .auth-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin: 6px 0 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.field .input { position: relative; }
.field .input i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-3); font-size: 14px; }
.field input, .field textarea, .field select {
    width: 100%;
    padding: 13px 14px 13px 40px;
    border-radius: 12px;
    border: 1px solid var(--border2);
    background: var(--bg-main);
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.field textarea, .field select, .field input.plain { padding-left: 14px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15); }
.field-hint { color: var(--text-3); font-size: 12px; margin-top: 6px; }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-muted); margin: 6px 0 16px; }
.check-row input { margin-top: 3px; accent-color: var(--primary); }
.check-row a { color: #fff; font-weight: 600; text-decoration: none; }
.captcha-box { margin: 0 0 16px; min-height: 0; }
.auth-alt { text-align: center; color: var(--text-muted); font-size: 13.5px; margin-top: 18px; }
.auth-alt a { color: #ff5a63; text-decoration: none; font-weight: 600; }
.form-error { display: none; padding: 10px 12px; border-radius: 10px; background: rgba(242, 80, 80, 0.12); border: 1px solid rgba(242, 80, 80, 0.4); color: #fca5a5; font-size: 13px; margin-bottom: 14px; }
.form-error.show { display: block; }
.form-ok { display: none; padding: 10px 12px; border-radius: 10px; background: var(--success-bg); border: 1px solid rgba(34, 197, 94, 0.4); color: #86efac; font-size: 13px; margin-bottom: 14px; }
.form-ok.show { display: block; }

/* ---------- Profile ---------- */
.profile-card {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.08), var(--bg-card));
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 20px;
    padding: 26px;
    max-width: 720px;
    margin: 20px auto 18px;
}

.profile-top { display: flex; gap: 18px; align-items: flex-start; }
.profile-big-avatar { width: 78px; height: 78px; border-radius: 20px; overflow: hidden; background: #1f2a44; border: 2px solid rgba(255, 255, 255, 0.1); flex-shrink: 0; }
.profile-big-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-name { font-size: 30px; line-height: 1; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--text-muted); font-size: 13px; margin-top: 8px; }
.profile-meta span { display: inline-flex; align-items: center; gap: 6px; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.profile-actions .btn-ghost { padding: 9px 15px; font-size: 13px; border-radius: 99px; }
.profile-actions .btn-primary { padding: 9px 15px; font-size: 13px; border-radius: 99px; }
.profile-warn { margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.profile-warn .actions { margin-left: auto; display: flex; gap: 8px; }
.profile-warn .btn-primary, .profile-warn .btn-ghost { padding: 8px 14px; font-size: 13px; border-radius: 99px; }
.profile-stats { max-width: 720px; margin: 0 auto; }
.recent-wrap { max-width: 720px; margin: 26px auto 0; }
.recent-head { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.recent-head::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.recent-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; }
.recent-card { border-radius: 12px; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); text-decoration: none; color: #fff; }
.recent-card .cov { aspect-ratio: 2 / 3; background: var(--bg-lighter); display: grid; place-items: center; color: var(--text-3); font-size: 22px; }
.recent-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.recent-card strong { display: block; padding: 8px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Redeem ---------- */
.redeem-wrap { display: flex; justify-content: center; padding: 50px 0; }
.redeem-card { width: 100%; max-width: 450px; background: var(--bg-card); border: 1px solid var(--border2); border-top: 3px solid var(--primary); border-radius: 20px; padding: 32px 28px; text-align: center; }
.redeem-card h1 { font-size: 30px; margin: 14px 0 6px; }
.redeem-card .sub { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; }
.key-input { width: 100%; padding: 15px; border-radius: 12px; border: 1px solid var(--border2); background: var(--bg-main); color: #fff; font-family: 'Courier New', monospace; font-size: 18px; letter-spacing: 0.22em; text-align: center; text-transform: uppercase; outline: none; }
.key-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15); }
.redeem-card .btn-primary { width: 100%; margin-top: 12px; padding: 14px; font-size: 15px; }
.redeem-info { margin-top: 16px; padding: 14px; border-radius: 12px; background: var(--bg-main); border: 1px solid var(--border); text-align: left; color: var(--text-muted); font-size: 13px; line-height: 1.6; }
.redeem-info strong { color: #ff3d47; }
.redeem-promo { margin-top: 12px; padding: 16px; border-radius: 12px; border: 1px solid rgba(34, 197, 94, 0.4); background: rgba(34, 197, 94, 0.06); }
.redeem-promo p { color: #86efac; font-size: 14px; font-weight: 600; margin-bottom: 10px; }

/* ---------- Loyalty ---------- */
.loyalty-head { text-align: center; padding: 10px 0 22px; }
.loyalty-head h1 { font-size: 42px; display: inline-flex; align-items: center; gap: 14px; }
.loyalty-head h1 span { color: #4ade80; }
.loyalty-head p { color: var(--text-muted); max-width: 620px; margin: 10px auto 0; line-height: 1.6; }
.loyalty-head p a { color: #4ade80; }
.ref-banner { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: 16px; background: linear-gradient(90deg, rgba(229, 9, 20, 0.14), var(--bg-card)); border: 1px solid rgba(229, 9, 20, 0.35); margin: 0 auto 18px; max-width: 780px; }
.ref-banner p { color: var(--text-muted); font-size: 13.5px; line-height: 1.55; }
.ref-banner strong { color: #fff; }
.ref-banner .btn-primary { margin-left: auto; white-space: nowrap; border-radius: 99px; }
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 780px; margin: 0 auto 18px; }
.info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.info-card h3 { font-size: 16px; margin: 14px 0 6px; font-family: 'Inter', sans-serif; }
.info-card p { color: var(--text-muted); font-size: 13px; line-height: 1.6; }
.info-card p a { color: #4ade80; }
.loyalty-stats { max-width: 780px; margin: 0 auto 18px; }
.progress-card { max-width: 780px; margin: 0 auto 26px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; }
.progress-top { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.progress-top strong { color: #fff; }
.progress-top .next { color: #4ade80; }
.progress-bar { height: 16px; border-radius: 8px; background: var(--bg-main); overflow: hidden; }
.progress-bar span { display: block; height: 100%; background: linear-gradient(90deg, #22c55e, #4ade80); border-radius: 8px; color: #052e16; font-size: 10px; font-weight: 800; text-align: right; padding-right: 6px; line-height: 16px; transition: width 0.6s; }
.milestones { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.milestone { display: flex; align-items: center; gap: 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; }
.milestone.reached { border-color: rgba(34, 197, 94, 0.45); }
.milestone .icon-tile { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.milestone.reached .icon-tile { background: linear-gradient(135deg, #34d399, #16a34a); }
.milestone-body { flex: 1; min-width: 0; }
.milestone-body strong { display: block; font-size: 15px; }
.milestone-body small { color: var(--text-muted); font-size: 12.5px; }
.milestone-body small b { color: #4ade80; font-weight: 600; }
.mini-bar { height: 4px; border-radius: 2px; background: var(--bg-main); margin-top: 8px; overflow: hidden; }
.mini-bar span { display: block; height: 100%; background: #3b82f6; }
.milestone-status { font-size: 12px; color: var(--text-3); padding: 6px 12px; border-radius: 8px; background: var(--bg-main); border: 1px solid var(--border); white-space: nowrap; }
.milestone-status.done { color: #4ade80; border-color: rgba(34, 197, 94, 0.4); }
.rank-c-1 strong { color: #93c5fd; } .rank-c-2 strong { color: #fbbf24; } .rank-c-3 strong { color: #fcd34d; }
.rank-c-4 strong { color: #67e8f9; } .rank-c-5 strong { color: #fb923c; } .rank-c-6 strong { color: #c084fc; }

@media (max-width: 760px) { .info-cards { grid-template-columns: 1fr; } .ref-banner { flex-wrap: wrap; } .ref-banner .btn-primary { margin-left: 0; } }

/* ---------- Referrals ---------- */
.ref-head { text-align: center; padding: 10px 0 22px; }
.ref-head h1 { font-size: 40px; }
.ref-head p { color: var(--text-muted); max-width: 640px; margin: 10px auto 0; line-height: 1.6; font-size: 14px; }
.ref-head p strong { color: #fff; }
.ref-head .em { color: #ff5a63; }
.ref-card { max-width: 640px; margin: 0 auto 16px; background: var(--bg-card); border: 1px solid var(--border); border-top: 3px solid var(--primary); border-radius: 16px; padding: 22px; }
.ref-card h2 { font-size: 20px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.ref-empty { text-align: center; padding: 10px 0 6px; }
.ref-empty .icon-tile { margin: 0 auto 12px; width: 56px; height: 56px; }
.ref-empty p { color: var(--text-muted); font-size: 13.5px; line-height: 1.6; margin-bottom: 14px; }
.link-box { display: flex; gap: 8px; }
.link-box input { flex: 1; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border2); background: var(--bg-main); color: #fff; font-size: 13px; font-family: 'Courier New', monospace; }
.ref-stats { max-width: 640px; margin: 0 auto 16px; }
.invitee-list { display: flex; flex-direction: column; gap: 8px; }
.invitee { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border-radius: 10px; background: var(--bg-main); border: 1px solid var(--border); font-size: 13px; }
.invitee small { color: var(--text-3); }
.ref-note { padding: 12px 14px; border-radius: 10px; background: var(--bg-main); border: 1px solid var(--border); color: var(--text-muted); font-size: 12.5px; line-height: 1.6; }
.ref-note a { color: #ff5a63; }

/* ---------- Suggest ---------- */
.suggest-head { text-align: center; padding: 6px 0 22px; }
.suggest-head .icon-tile { margin: 0 auto 12px; width: 56px; height: 56px; }
.suggest-head h1 { font-size: 40px; }
.suggest-head h1 span { color: var(--primary); }
.suggest-head p { color: var(--text-muted); max-width: 560px; margin: 8px auto 0; line-height: 1.6; font-size: 14px; }
.suggest-card { max-width: 560px; margin: 0 auto 26px; background: var(--bg-card); border: 1px solid var(--border); border-top: 3px solid var(--primary); border-radius: 16px; padding: 22px; }
.suggest-card h2 { font-size: 19px; display: flex; align-items: center; gap: 8px; }
.quota { color: var(--text-muted); font-size: 12.5px; margin: 4px 0 12px; }
.quota strong { color: #fff; }
.quota-bar { height: 3px; background: var(--bg-main); border-radius: 2px; margin-bottom: 18px; overflow: hidden; }
.quota-bar span { display: block; height: 100%; background: var(--primary); }
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 18px; }
.cat { background: var(--bg-main); border: 1px solid var(--border); border-radius: 12px; padding: 12px 6px; text-align: center; cursor: pointer; color: var(--text-muted); font-size: 11px; font-weight: 700; display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: inherit; }
.cat .icon-tile { width: 36px; height: 36px; border-radius: 10px; font-size: 15px; }
.cat.active { border-color: #60a5fa; color: #fff; background: rgba(59, 130, 246, 0.1); }
.autocomplete { position: relative; }
.ac-list { position: absolute; left: 0; right: 0; top: 100%; z-index: 20; background: var(--bg-card); border: 1px solid var(--border2); border-radius: 12px; overflow: hidden; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5); }
.ac-item { display: flex; align-items: center; gap: 10px; padding: 8px 12px; cursor: pointer; font-size: 13px; }
.ac-item:hover { background: rgba(255, 255, 255, 0.05); }
.ac-item img { width: 46px; height: 18px; object-fit: cover; border-radius: 3px; }
.sug-list { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.sug-empty { text-align: center; padding: 30px 16px; border: 1px dashed var(--border2); border-radius: 14px; color: var(--text-muted); font-size: 13.5px; }
.sug-empty .icon-tile { margin: 0 auto 10px; }
.sug-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; }
.sug-item-top { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-bottom: 4px; }
.sug-item strong { font-size: 14px; }
.sug-item p { color: var(--text-muted); font-size: 13px; line-height: 1.5; }
.sug-item small { color: var(--text-3); font-size: 11.5px; }
.status-pill { padding: 3px 9px; border-radius: 8px; font-size: 11px; font-weight: 700; }
.status-pending { background: rgba(249, 168, 38, 0.15); color: #fbbf24; }
.status-approved { background: var(--success-bg); color: #4ade80; }
.status-rejected { background: rgba(242, 80, 80, 0.15); color: #fca5a5; }

@media (max-width: 560px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Settings / support ---------- */
.settings-wrap { max-width: 520px; margin: 10px auto; }
.settings-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.settings-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.avatar-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.avatar-opt { border-radius: 14px; overflow: hidden; border: 2px solid transparent; background: #1f2a44; cursor: pointer; padding: 0; aspect-ratio: 1; }
.avatar-opt img { width: 100%; height: 100%; display: block; }
.avatar-opt.is-image img { object-fit: cover; }
.avatar-opt.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2); }
.ticket { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; }
.ticket-reply { margin-top: 10px; padding: 10px 12px; border-radius: 10px; background: rgba(34, 197, 94, 0.07); border: 1px solid rgba(34, 197, 94, 0.3); font-size: 13px; color: #d1fae5; }

/* ---------- Products ---------- */
.prod-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 0 0 22px; }
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.prod-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.prod-img { aspect-ratio: 16 / 9; background: var(--bg-lighter); display: grid; place-items: center; color: var(--text-3); font-size: 28px; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-body h3 { font-size: 15px; font-family: 'Inter', sans-serif; }
.prod-body p { color: var(--text-muted); font-size: 12.5px; line-height: 1.5; }
.prod-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.prod-price del { color: var(--text-3); font-size: 12px; }
.prod-price strong { color: #4ade80; font-size: 18px; }
.prod-cat-title { font-size: 22px; margin: 26px 0 12px; }

/* ---------- Buy modal ---------- */
.buy-panel { max-width: 520px; }
.package-list { display: flex; flex-direction: column; gap: 8px; margin: 14px 0; }
.package { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; padding: 12px 14px; border-radius: 12px; background: var(--bg-main); border: 1px solid var(--border); text-decoration: none; color: #fff; position: relative; }
.package:hover { border-color: var(--primary); }
.package.popular { border-color: rgba(229, 9, 20, 0.6); background: rgba(229, 9, 20, 0.06); }
.package.disabled { opacity: 0.6; pointer-events: none; }
.package-tag { position: absolute; top: -9px; left: 14px; padding: 2px 8px; border-radius: 6px; background: var(--primary); color: #fff; font-size: 9.5px; font-weight: 800; letter-spacing: 0.1em; }
.package-main strong { display: block; font-size: 15px; }
.package-main small, .package-price small { color: var(--text-3); font-size: 11.5px; }
.package-price { text-align: right; }
.package-price strong { display: block; font-family: var(--font-display); font-size: 22px; }
.package-cta { padding: 8px 14px; border-radius: 9px; background: var(--primary); font-size: 13px; font-weight: 700; }
.buy-note { text-align: center; color: var(--text-3); font-size: 12px; }

/* ---------- Coming soon ---------- */
.soon-panel { max-width: 420px; text-align: center; }
.soon-icon { width: 64px; height: 64px; margin: 0 auto 12px; border-radius: 20px; background: linear-gradient(135deg, #ff3d3d, var(--primary)); display: grid; place-items: center; font-size: 26px; color: #fff; box-shadow: 0 10px 28px var(--primary-glow); }
.soon-panel h2 { font-size: 28px; margin-bottom: 8px; }
.soon-panel p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }

/* ---------- Live toast ---------- */
.live-toast {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 80;
    display: flex;
    gap: 12px;
    align-items: center;
    width: 280px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(18, 26, 46, 0.96);
    border: 1px solid rgba(229, 9, 20, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    font-size: 12.5px;
    color: var(--text-muted);
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
}

.live-toast.show { transform: none; opacity: 1; }
.live-toast img { width: 44px; height: 58px; object-fit: cover; border-radius: 6px; }
.live-toast strong { color: #fff; }
.live-toast-game { color: #fff; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 190px; }
.live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #4ade80; margin-right: 4px; }

/* ---------- Legal / FAQ ---------- */
.legal { max-width: 800px; margin: 0 auto; }
.legal h1 { font-size: 38px; }
.legal .updated { color: var(--text-3); font-size: 13px; margin: 6px 0 20px; }
.legal .intro { color: #d3d8e6; line-height: 1.7; margin-bottom: 18px; }
.legal section { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; margin-bottom: 12px; }
.legal h2 { font-size: 19px; margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
.legal h2 .n { width: 26px; height: 26px; border-radius: 8px; background: var(--primary); color: #fff; display: grid; place-items: center; font-size: 13px; font-family: 'Inter', sans-serif; }
.legal p, .legal li { color: var(--text-muted); line-height: 1.7; font-size: 14px; }
.legal ul { padding-left: 18px; }
.legal strong { color: #fff; }
.legal a { color: #ff5a63; }

.faq-cats { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.faq-item-v1 .faq-q { font-family: 'Inter', sans-serif; }
.faq-more { text-align: center; margin-top: 30px; padding: 28px; border-radius: 16px; background: var(--bg-card); border: 1px solid var(--border); }
.faq-more h3 { font-size: 22px; margin-bottom: 6px; }
.faq-more p { color: var(--text-muted); margin-bottom: 14px; }
