:root {
    --blue: #0c5ff7;
    --blue-dark: #0746c9;
    --blue-soft: #edf5ff;
    --ink: #0d1b3e;
    --muted: #63708b;
    --line: #dde5f1;
    --panel: #ffffff;
    --canvas: #f7faff;
    --green: #078347;
    --green-soft: #eafaf1;
    --amber: #a85a00;
    --amber-soft: #fff6e5;
    --red: #b3262f;
    --red-soft: #fff0f1;
    --purple: #6f42db;
    --shadow: 0 12px 38px rgba(32, 67, 124, .09);
    --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--canvas);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 4%, rgba(59, 130, 246, .08), transparent 23rem),
        radial-gradient(circle at 88% 14%, rgba(14, 165, 233, .06), transparent 22rem),
        linear-gradient(#fff, var(--canvas) 36rem);
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.notice-bar {
    background: #07183d;
    color: #dce8ff;
    font-size: 13px;
    text-align: center;
    padding: 7px 0;
}

.notice-bar .wrap { display: flex; align-items: center; justify-content: center; gap: 9px; }
.age-dot { display: inline-grid; place-items: center; min-width: 28px; height: 22px; padding: 0 5px; border-radius: 999px; background: #fff; color: var(--ink); font-size: 11px; font-weight: 900; }

.site-header {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 18px rgba(24, 54, 104, .05);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
}

.header-main { min-height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 11px;
    padding: 5px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(145deg, #08153b 12%, #123b9a 70%, #0d76f8);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.14), 0 5px 15px rgba(9, 46, 128, .24);
    line-height: .95;
    letter-spacing: .03em;
}
.brand-mark small { font-size: 8px; font-weight: 800; }
.brand-mark small:last-child { color: #7aff64; }
.brand-mark strong { font-size: 15px; line-height: 1.05; }
.brand-name { font-size: 22px; font-weight: 850; letter-spacing: -.025em; }

.menu-button { display: block; width: 44px; height: 44px; padding: 10px; background: #fff; border: 0; border-radius: 10px; cursor: pointer; }
.menu-button > span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

.site-nav { border-top: 1px solid #edf1f7; }
.nav-inner { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.nav-inner a, .nav-placeholder { display: inline-flex; align-items: center; gap: 8px; color: #293655; font-weight: 650; font-size: 14px; padding: 13px 16px; border-radius: 10px; }
.nav-inner a span, .nav-placeholder span { color: var(--blue); font-size: 17px; font-weight: 900; }
.nav-placeholder { opacity: .58; cursor: not-allowed; }
.nav-inner a:hover, .nav-inner a[aria-current="page"] { color: var(--blue); background: var(--blue-soft); }

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--blue);
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), #136eea);
    color: #fff;
    padding: 11px 20px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(12, 95, 247, .18);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); background: var(--blue-dark); color: #fff; box-shadow: 0 11px 24px rgba(12, 95, 247, .23); }
.button-outline { background: #fff; color: var(--blue); box-shadow: none; }
.button-outline:hover { background: var(--blue-soft); color: var(--blue-dark); }
.button-small { min-height: 38px; padding: 8px 14px; font-size: 13px; white-space: nowrap; }
.button-quiet { background: #eef2f8; border-color: #dfe6f1; color: #30405f; box-shadow: none; }
.button-quiet:hover { background: #e4eaf4; color: var(--ink); }
.button-disabled { color: #7d8699; border-color: #d6dce6; background: #eef1f5; box-shadow: none; cursor: not-allowed; }
.button-disabled:hover { transform: none; color: #7d8699; background: #eef1f5; box-shadow: none; }

.hero { overflow: hidden; border-bottom: 1px solid #e5ecf6; background: linear-gradient(115deg, rgba(255,255,255,.9), rgba(239,246,255,.78)); }
.hero-grid { min-height: 470px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 60px; padding-top: 44px; padding-bottom: 44px; }
.hero-copy { max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 12px; line-height: 1.3; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #12ad65; box-shadow: 0 0 0 5px rgba(18, 173, 101, .12); }
.hero h1 { margin: 12px 0 12px; color: var(--ink); font-size: clamp(43px, 5.3vw, 67px); line-height: .99; letter-spacing: -.055em; font-weight: 900; }
.hero h1 span { color: var(--blue); }
.hero-copy > p { margin: 0 0 20px; max-width: 600px; color: #56637d; font-size: 18px; line-height: 1.55; }

.hero-search { width: min(590px, 100%); display: grid; grid-template-columns: 1fr auto; padding: 6px; border: 1px solid #cfdbed; border-radius: 12px; background: #fff; box-shadow: 0 9px 26px rgba(27, 64, 123, .08); }
.hero-search input { width: 100%; min-width: 0; padding: 8px 13px; border: 0; outline: none; color: var(--ink); background: transparent; }
.hero-search button { border: 0; border-radius: 8px; padding: 8px 22px; background: var(--ink); color: #fff; font-weight: 800; cursor: pointer; }
.hero-search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(12, 95, 247, .1); }
.hero-stats { width: min(570px, 100%); margin: 17px 0 21px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #dfe7f2; border-radius: 12px; background: #fff; overflow: hidden; }
.hero-stats > span { min-height: 66px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 8px 10px; color: #52617c; border-right: 1px solid #edf1f6; }
.hero-stats > span:last-child { border-right: 0; }
.hero-stats i { color: var(--blue); font-size: 23px; font-style: normal; font-weight: 900; }
.hero-stats b { display: grid; font-weight: inherit; line-height: 1.2; }
.hero-stats strong { color: #24324f; font-size: 12px; }
.hero-stats small { color: #68758d; font-size: 10px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-art { position: relative; min-height: 382px; display: grid; place-items: center; }
.hero-art > img { width: min(100%, 620px); height: auto; object-fit: contain; filter: drop-shadow(0 20px 25px rgba(17, 50, 105, .1)); }
.hero-art::before { content: ""; position: absolute; width: 370px; height: 370px; left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(63, 129, 255, .19), rgba(65, 138, 255, .04) 59%, transparent 60%); }
.phone { position: absolute; left: 50%; top: 50%; width: 198px; height: 370px; transform: translate(-50%, -50%) rotate(-1deg); padding: 10px; border: 4px solid #07152f; border-radius: 34px; background: #0c172d; box-shadow: 0 27px 52px rgba(11, 35, 84, .3), inset 0 0 0 2px #334056; }
.phone-screen { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 22px; overflow: hidden; color: #fff; background: radial-gradient(circle at 50% 23%, #174aa2, #071b4f 55%, #061435); box-shadow: inset 0 0 45px rgba(64, 137, 255, .25); }
.phone-screen::before { content: "♛"; color: #ffd84e; font-size: 62px; line-height: 1; text-shadow: 0 4px 15px rgba(255, 197, 38, .27); }
.phone-screen small { font-size: 14px; font-weight: 900; letter-spacing: .13em; }
.phone-screen strong { margin-top: 3px; font-size: 35px; line-height: 1; letter-spacing: -.04em; }
.phone-screen b { color: #7eff57; font-size: 21px; letter-spacing: .12em; }
.phone-screen span { margin-top: 27px; padding: 6px 11px; border-radius: 999px; background: rgba(255,255,255,.1); color: #c6d7ff; font-size: 11px; }
.phone-speaker { position: absolute; z-index: 2; width: 70px; height: 18px; left: 50%; top: 10px; transform: translateX(-50%); border-radius: 0 0 12px 12px; background: #081126; }
.float-card { position: absolute; z-index: 3; width: 110px; height: 112px; border: 5px solid rgba(255,255,255,.93); border-radius: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; box-shadow: 0 16px 30px rgba(20, 39, 80, .22); transform: rotate(-8deg); }
.float-card span { font-size: 39px; line-height: 1; font-weight: 900; }
.float-card strong { margin-top: 6px; font-size: 11px; letter-spacing: .08em; }
.float-rummy { left: 2%; top: 24px; background: linear-gradient(145deg, #7d145b, #291049); }
.float-slots { right: 0; top: 44px; transform: rotate(8deg); background: linear-gradient(145deg, #844707, #241305); }
.float-bingo { right: 3%; bottom: 27px; transform: rotate(7deg); background: linear-gradient(145deg, #098e6e, #034535); }
.coin { position: absolute; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; border: 4px solid #ffca2e; border-radius: 50%; color: #8e5a00; background: radial-gradient(circle at 35% 30%, #fff38a, #ffc21c); box-shadow: 0 9px 18px rgba(172, 105, 0, .2); font-weight: 900; }
.coin-one { left: 10%; bottom: 64px; transform: rotate(-12deg); }
.coin-two { right: 10%; top: 14px; }

.panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 4px 16px rgba(27, 60, 111, .045); }
.home-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; padding-top: 22px; }
.popular-panel, .home-sidebar > .panel, .latest-panel, .how-panel, .faq-panel { padding: 17px; }
.home-sidebar { display: grid; gap: 18px; align-content: start; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 13px; }
.section-heading h2 { margin: 2px 0 0; font-size: 20px; line-height: 1.2; letter-spacing: -.025em; }
.section-heading > a { white-space: nowrap; font-size: 13px; font-weight: 800; }

.game-list { display: grid; gap: 9px; }
.game-row { display: flex; align-items: center; gap: 12px; min-width: 0; border: 1px solid #e3e9f2; border-radius: 12px; padding: 9px; background: #fff; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.game-row:hover { transform: translateY(-1px); border-color: #cbd9ef; box-shadow: 0 8px 20px rgba(24, 59, 115, .08); }
.game-main-link { flex: 1; min-width: 0; display: flex; align-items: center; gap: 11px; color: var(--ink); }
.game-main-link:hover { color: var(--ink); }
.game-icon { flex: 0 0 auto; width: 62px; height: 62px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; border-radius: 14px; color: #fff; background: linear-gradient(145deg, #0d4d25, #021e13); border: 2px solid rgba(255,255,255,.55); box-shadow: inset 0 0 0 1px rgba(0,0,0,.22), 0 5px 12px rgba(8, 35, 24, .15); line-height: 1; text-align: center; }
.game-icon small { max-width: 56px; overflow: hidden; text-overflow: ellipsis; font-size: 7px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: #98fcb4; white-space: nowrap; }
.game-icon strong { margin-top: 5px; font-size: 21px; letter-spacing: -.04em; text-shadow: 0 2px 4px rgba(0,0,0,.35); }
.game-icon.category-rummy { background: linear-gradient(145deg, #134b2b, #031d12); }
.game-icon.category-slots { background: linear-gradient(145deg, #5f1693, #210139); }
.game-icon.category-spin { background: linear-gradient(145deg, #0b86c9, #08336c); }
.game-icon.category-777-jackpot { background: linear-gradient(145deg, #8f5009, #351602); }
.game-icon.category-bingo { background: linear-gradient(145deg, #078a92, #043742); }
.game-icon.category-arcade { background: linear-gradient(145deg, #d84b0d, #5c1301); }
.game-icon.category-games { background: linear-gradient(145deg, #125ee6, #0a214f); }
.game-icon.theme-blue { background: linear-gradient(145deg, #176cf0, #071e4f); }
.game-icon.theme-purple { background: linear-gradient(145deg, #792fe5, #26064f); }
.game-icon.theme-cyan { background: linear-gradient(145deg, #0a9dbc, #073652); }
.game-icon.theme-green { background: linear-gradient(145deg, #13945a, #042d1c); }
.game-icon.theme-orange { background: linear-gradient(145deg, #d56811, #4a1902); }
.game-icon.theme-pink { background: linear-gradient(145deg, #cf2e78, #480529); }
.game-icon.has-image { padding: 0; background: #fff; }
.game-icon img { width: 100%; height: 100%; object-fit: cover; }
.game-icon-large { width: 132px; height: 132px; border-radius: 27px; }
.game-icon-large small { max-width: 110px; font-size: 12px; }
.game-icon-large strong { margin-top: 8px; font-size: 40px; }
.game-copy { min-width: 0; display: grid; gap: 3px; }
.game-copy > strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 15px; line-height: 1.25; }
.game-copy > small { color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; }
.game-stats { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; color: var(--purple); font-size: 10px; font-weight: 750; }
.status { display: inline-flex; width: fit-content; align-items: center; border-radius: 999px; padding: 3px 7px; font-size: 10px; font-weight: 800; line-height: 1.3; }
.status-unverified { background: var(--amber-soft); color: var(--amber); }
.status-reviewed { background: var(--blue-soft); color: var(--blue-dark); }
.status-verified { background: var(--green-soft); color: var(--green); }
.status-blocked { background: var(--red-soft); color: var(--red); }
.game-row-compact .game-icon { width: 55px; height: 55px; }
.game-row-compact .game-icon strong { font-size: 18px; }
.game-row-compact .game-copy > small { display: none; }
.game-row-compact .button { min-width: 92px; }

.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; }
.category-grid a { min-height: 108px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; border: 1px solid #e3eaf3; border-radius: 12px; background: linear-gradient(#fff, #fbfdff); color: var(--ink); }
.category-grid a:hover { border-color: #bcd0f1; background: var(--blue-soft); }
.category-grid strong { font-size: 12px; }
.category-grid small { color: var(--muted); font-size: 10px; }
.category-symbol { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 11px; color: var(--blue); background: #edf4ff; font-size: 16px; font-weight: 900; }
.category-symbol.category-rummy { color: #6d28d9; background: #f2ebff; }
.category-symbol.category-slots { color: #df5600; background: #fff1e7; }
.category-symbol.category-spin { color: #0784b0; background: #e8f8ff; }
.category-symbol.category-777-jackpot { color: #a85a00; background: #fff6df; font-size: 12px; }
.category-symbol.category-bingo { color: #07836f; background: #e8faf7; }

.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.trust-grid > div { display: grid; grid-template-columns: 36px 1fr; grid-template-rows: auto auto; column-gap: 9px; border: 1px solid #e4ebf4; border-radius: 12px; padding: 10px; }
.trust-grid > div > span { grid-row: 1 / 3; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; color: var(--blue); background: var(--blue-soft); font-size: 18px; font-weight: 900; }
.trust-grid strong { font-size: 12px; }
.trust-grid small { color: var(--muted); font-size: 9px; }

.latest-panel { margin-top: 18px; }
.tile-scroll { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 10px; }
.game-tile { min-width: 0; border: 1px solid #e2e9f2; border-radius: 12px; padding: 9px; background: #fff; }
.game-tile a { min-width: 0; display: flex; align-items: center; gap: 8px; color: var(--ink); }
.game-tile .game-icon { width: 46px; height: 46px; border-radius: 11px; }
.game-tile .game-icon small { font-size: 6px; }
.game-tile .game-icon strong { font-size: 15px; }
.game-tile a > span:last-child { min-width: 0; display: grid; }
.game-tile strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; }
.game-tile small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: 8px; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.steps li { position: relative; min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; text-align: center; padding: 14px; border: 1px solid #e1e8f2; border-radius: 13px; }
.steps li > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-size: 14px; font-weight: 900; box-shadow: 0 6px 14px rgba(12, 95, 247, .22); }
.steps strong { display: block; font-size: 12px; }
.steps small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.faq-list { display: grid; gap: 7px; }
.faq-list details { border: 1px solid #e3e9f2; border-radius: 9px; background: #fff; overflow: hidden; }
.faq-list summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; color: #26344e; cursor: pointer; font-size: 12px; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 18px; transition: transform .18s ease; }
.faq-list details[open] summary { background: #f7faff; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 12px 12px; color: var(--muted); font-size: 12px; }

.about-home { margin-top: 18px; padding: 25px 6px 34px; display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 38px; }
.about-home h2 { margin: 6px 0 8px; font-size: 28px; letter-spacing: -.035em; }
.about-home p { color: var(--muted); }
.check-list { list-style: none; margin: 15px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 7px 18px; }
.check-list li { position: relative; padding-left: 24px; font-size: 13px; font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 10px; }
.verification-card { display: flex; gap: 15px; padding: 22px; border: 1px solid #cfe0f9; border-radius: 18px; background: linear-gradient(135deg, #f1f7ff, #fff); }
.verification-card strong { font-size: 18px; }
.verification-card p { margin: 6px 0 10px; font-size: 12px; }
.verification-card a { font-size: 12px; font-weight: 800; }
.shield-icon { flex: 0 0 auto; width: 60px; height: 66px; display: grid; place-items: center; clip-path: polygon(50% 0, 92% 14%, 88% 70%, 50% 100%, 12% 70%, 8% 14%); color: #fff; background: linear-gradient(145deg, #2f8bff, #0643c6); font-size: 30px; font-weight: 900; filter: drop-shadow(0 7px 10px rgba(16, 84, 202, .25)); }

.responsible-strip { border-block: 1px solid #cfe0f8; background: linear-gradient(105deg, #eef6ff, #fff); }
.responsible-inner { min-height: 92px; display: flex; align-items: center; gap: 17px; }
.responsible-inner > div:nth-child(2) { display: grid; }
.responsible-inner strong { color: var(--blue-dark); font-size: 18px; }
.responsible-inner span { color: var(--muted); font-size: 12px; }
.responsible-points { margin-left: auto; display: flex; gap: 10px; }
.responsible-points span { border: 1px solid #cfdef4; border-radius: 999px; background: #fff; padding: 7px 10px; color: #31415f; font-weight: 700; }
.responsible-inner .shield-icon { width: 48px; height: 54px; font-size: 23px; }

.site-footer { padding: 30px 0 18px; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, .55fr); gap: 38px; }
.footer-brand .brand-mark { width: 44px; height: 44px; }
.footer-brand .brand-name { font-size: 17px; }
.footer-grid p { max-width: 330px; color: var(--muted); font-size: 12px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 7px; }
.footer-grid h2 { margin: 0 0 5px; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.footer-grid a { color: #53617b; font-size: 12px; }
.footer-grid a:hover { color: var(--blue); }
.footer-bottom { margin-top: 24px; padding-top: 14px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #e5eaf1; }
.footer-bottom p { margin: 0; color: #748099; font-size: 10px; }
.footer-bottom p:first-child { max-width: 760px; }

.breadcrumbs { padding-top: 16px; padding-bottom: 10px; }
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 12px; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumbs li:not(:last-child)::after { content: "›"; color: #a7b0c0; font-size: 18px; }

.listing-hero { padding-top: 26px; padding-bottom: 24px; }
.listing-hero h1, .content-hero h1 { margin: 6px 0 8px; font-size: clamp(34px, 5vw, 51px); line-height: 1.05; letter-spacing: -.045em; }
.listing-hero > p, .content-hero > p { max-width: 760px; margin: 0; color: var(--muted); font-size: 16px; }
.filter-bar { margin-top: 22px; display: grid; grid-template-columns: minmax(220px, 1fr) 240px auto auto; align-items: end; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.filter-bar label { display: grid; gap: 4px; color: #34425e; font-size: 11px; font-weight: 800; }
.filter-bar input, .filter-bar select { min-width: 0; height: 44px; padding: 0 12px; border: 1px solid #d9e1ec; border-radius: 8px; background: #fff; color: var(--ink); outline: none; }
.filter-bar input:focus, .filter-bar select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(12, 95, 247, .1); }
.directory-section { padding-bottom: 36px; }
.results-line { margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.results-line span { color: var(--muted); font-size: 12px; }
.directory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.directory-grid .game-row { min-height: 92px; }
.empty-state { padding: 60px 20px; border: 1px dashed #c9d5e8; border-radius: var(--radius); background: #fff; text-align: center; }
.empty-state > span { color: var(--blue); font-size: 38px; font-weight: 900; }
.empty-state h1, .empty-state h2 { margin: 8px 0 6px; }
.empty-state p { margin: 0 0 18px; color: var(--muted); }
.not-found { margin-block: 50px; }

.detail-page { display: grid; gap: 15px; padding-bottom: 36px; }
.alert { padding: 12px 15px; border-radius: 10px; font-size: 13px; font-weight: 700; }
.alert-warning { background: var(--amber-soft); border: 1px solid #f1d49c; color: var(--amber); }
.game-hero-card { display: grid; grid-template-columns: 132px 1fr; gap: 24px; align-items: center; padding: 22px 28px; }
.detail-labels { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { display: inline-flex; padding: 4px 9px; border-radius: 999px; color: var(--purple); background: #f3edff; font-size: 10px; font-weight: 800; }
.game-hero-copy h1 { margin: 7px 0 2px; font-size: clamp(30px, 4vw, 45px); line-height: 1.08; letter-spacing: -.045em; }
.game-hero-copy > p { max-width: 740px; margin: 0; color: var(--muted); }
.game-actions { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 11px; }
.verification-banner { display: flex; align-items: center; gap: 13px; padding: 14px 18px; border: 1px solid #f0d7a8; border-radius: 13px; background: var(--amber-soft); }
.verification-symbol { flex: 0 0 auto; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #d27a00; font-weight: 900; }
.verification-banner strong { color: #7e4800; }
.verification-banner p { margin: 1px 0 0; color: #805f2c; font-size: 12px; }
.verification-banner.verification-verified { border-color: #a8dfbf; background: var(--green-soft); }
.verification-verified .verification-symbol { background: var(--green); }
.verification-verified strong, .verification-verified p { color: #076b3b; }
.verification-banner.verification-reviewed { border-color: #bad3fb; background: var(--blue-soft); }
.verification-reviewed .verification-symbol { background: var(--blue); }
.verification-reviewed strong, .verification-reviewed p { color: var(--blue-dark); }
.verification-banner.verification-blocked { border-color: #f0bec2; background: var(--red-soft); }
.verification-blocked .verification-symbol { background: var(--red); }
.verification-blocked strong, .verification-blocked p { color: var(--red); }

.app-info-panel, .screenshots-panel, .prose-card, .feature-card, .safe-guide, .related-panel { padding: 19px; }
.app-info-grid { margin: 0; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #e3eaf3; border-radius: 12px; overflow: hidden; }
.app-info-grid > div { min-height: 52px; display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid #e7edf5; }
.app-info-grid > div:nth-child(odd) { border-right: 1px solid #e7edf5; }
.app-info-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
.app-info-grid dt { color: #5f6d86; font-size: 12px; font-weight: 750; }
.app-info-grid dd { margin: 0; font-size: 13px; font-weight: 750; }
.screenshot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.screenshot-grid img { width: 100%; aspect-ratio: 16/9; border: 1px solid var(--line); border-radius: 11px; object-fit: cover; background: #eef2f8; }
.detail-two-column { display: grid; grid-template-columns: 1.25fr .75fr; gap: 15px; }
.prose-card h2, .feature-card h2 { margin: 4px 0 8px; font-size: 23px; letter-spacing: -.03em; }
.prose-card p { color: #526078; font-size: 13px; }
.feature-list { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 9px; }
.feature-list li { display: flex; align-items: center; gap: 9px; color: #34435e; font-size: 13px; font-weight: 700; }
.feature-list span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; color: var(--green); background: var(--green-soft); }
.guide-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.guide-grid li { min-height: 134px; padding: 14px; border: 1px solid #e1e8f2; border-radius: 12px; }
.guide-grid li > span { display: grid; place-items: center; width: 30px; height: 30px; margin-bottom: 8px; border-radius: 50%; color: #fff; background: var(--blue); font-weight: 900; }
.guide-grid strong { font-size: 13px; }
.guide-grid p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }

.content-layout { display: grid; gap: 16px; padding-top: 20px; padding-bottom: 45px; }
.content-hero { padding: 22px 0 6px; }
.content-card { padding: clamp(24px, 5vw, 58px); }
.content-card h1 { margin: 6px 0 20px; font-size: clamp(34px, 5vw, 54px); line-height: 1.05; letter-spacing: -.045em; }
.prose { max-width: 820px; }
.prose p { color: #4e5c74; font-size: 16px; line-height: 1.75; }
.content-card > .button { margin-top: 12px; }
.callout { padding: 20px; }
.callout strong { font-size: 20px; }
.callout p { color: var(--muted); }

@media (max-width: 1050px) {
    .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 20px; }
    .hero-art { transform: scale(.9); }
    .home-layout { grid-template-columns: 1fr; }
    .tile-scroll { grid-template-columns: repeat(4, 1fr); }
    .category-grid { grid-template-columns: repeat(5, 1fr); }
    .footer-grid { grid-template-columns: 1.3fr repeat(3, .7fr); gap: 22px; }
}

@media (max-width: 820px) {
    .wrap { width: min(100% - 28px, 1180px); }
    .header-main { min-height: 66px; }
    .brand-mark { width: 44px; height: 44px; }
    .brand-name { font-size: 19px; }
    .menu-button { display: block; }
    .site-nav { display: none; }
    .site-nav.is-open { display: block; }
    .nav-inner { padding-block: 8px 13px; display: grid; grid-template-columns: 1fr 1fr; }
    .nav-inner a { padding: 10px 12px; }
    .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 10px; padding-top: 36px; }
    .hero-copy { max-width: none; }
    .hero-art { width: min(520px, 100%); min-height: 360px; margin: 0 auto; transform: none; }
    .info-grid, .about-home, .detail-two-column { grid-template-columns: 1fr; }
    .tile-scroll { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 5px; }
    .game-tile { flex: 0 0 180px; scroll-snap-align: start; }
    .directory-grid { grid-template-columns: 1fr; }
    .filter-bar { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .responsible-points { display: none; }
}

@media (max-width: 600px) {
    body { font-size: 15px; }
    .notice-bar { text-align: left; }
    .hero h1 { font-size: 43px; }
    .hero-copy > p { font-size: 16px; }
    .hero-actions .button { flex: 1; }
    .hero-art { min-height: 320px; transform: scale(.86); margin-block: -18px; }
    .phone { height: 345px; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-grid { grid-template-columns: 1fr; }
    .game-row { align-items: stretch; }
    .game-main-link { align-items: center; }
    .game-row > .button { align-self: center; width: 42px; min-width: 42px; padding-inline: 0; font-size: 0; }
    .game-row > .button span { font-size: 17px; }
    .game-copy > small { max-width: 190px; }
    .steps { grid-template-columns: 1fr; }
    .steps li { min-height: 90px; display: grid; grid-template-columns: 38px 1fr; text-align: left; }
    .check-list { grid-template-columns: 1fr; }
    .verification-card { padding: 17px; }
    .verification-card .shield-icon { width: 48px; height: 54px; }
    .responsible-inner { min-height: 82px; }
    .responsible-inner strong { font-size: 15px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
    .filter-bar { grid-template-columns: 1fr; }
    .filter-bar .button { width: 100%; }
    .results-line { align-items: flex-start; flex-direction: column; gap: 4px; }
    .game-hero-card { grid-template-columns: 90px 1fr; gap: 14px; padding: 17px; }
    .game-icon-large { width: 90px; height: 90px; border-radius: 20px; }
    .game-icon-large strong { font-size: 28px; }
    .game-icon-large small { font-size: 9px; }
    .game-hero-copy h1 { font-size: 28px; }
    .game-hero-copy > p { display: none; }
    .game-actions { grid-column: 1 / -1; }
    .game-actions .button { width: 100%; }
    .verification-banner { align-items: flex-start; }
    .app-info-grid { grid-template-columns: 1fr; }
    .app-info-grid > div, .app-info-grid > div:nth-child(odd), .app-info-grid > div:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid #e7edf5; }
    .app-info-grid > div:last-child { border-bottom: 0; }
    .app-info-grid > div { grid-template-columns: 125px 1fr; }
    .guide-grid { grid-template-columns: 1fr 1fr; }
    .screenshot-grid { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
    .wrap { width: min(100% - 20px, 1180px); }
    .brand-name { font-size: 17px; }
    .nav-inner { grid-template-columns: 1fr; }
    .hero h1 { font-size: 38px; }
    .hero-search button { padding-inline: 14px; }
    .category-grid { grid-template-columns: 1fr 1fr; }
    .game-icon { width: 54px; height: 54px; }
    .game-copy > small { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:first-child { grid-column: auto; }
    .game-hero-card { grid-template-columns: 76px 1fr; }
    .game-icon-large { width: 76px; height: 76px; }
    .guide-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Screenshot-matched public redesign */
:root {
    --blue: #0865ee;
    --blue-dark: #064cc4;
    --blue-soft: #eef5ff;
    --ink: #101d3e;
    --muted: #65718a;
    --line: #e2e9f2;
    --canvas: #fff;
    --shadow: 0 2px 12px rgba(25, 55, 105, .055);
    --radius: 12px;
}

body { background: #fff; font-size: 14px; line-height: 1.42; }
body::before { display: none; }
.wrap { width: min(1160px, calc(100% - 32px)); }
.ui-icon { width: 20px; height: 20px; flex: 0 0 auto; vertical-align: middle; }
.panel { border-color: var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.eyebrow { font-size: 10px; letter-spacing: .06em; }

.site-header { position: relative; top: auto; background: #fff; box-shadow: 0 2px 12px rgba(19, 45, 91, .07); }
.header-main { min-height: 62px; }
.brand { gap: 13px; }
.brand-mark { width: 44px; height: 44px; border-radius: 9px; padding: 4px 3px; background: linear-gradient(150deg, #071132, #102b78 68%, #075fdb); }
.brand-mark small { font-size: 6.5px; line-height: 1; }
.brand-mark strong { font-size: 14px; }
.brand-name { font-size: 23px; font-weight: 850; }
.menu-button { display: block; width: 42px; height: 42px; padding: 7px 6px; border: 0; }
.menu-button > span:not(.sr-only) { height: 2.5px; margin: 5px 0; }
.site-nav { border-top: 1px solid #edf1f6; }
.site-nav.is-collapsed { display: none; }
.nav-inner { min-height: 48px; justify-content: space-around; }
.nav-inner > a, .nav-inner > .nav-placeholder { min-height: 44px; padding: 8px 14px; gap: 8px; color: #28344f; font-size: 14px; font-weight: 650; }
.nav-inner > a .ui-icon, .nav-inner > .nav-placeholder .ui-icon { width: 21px; height: 21px; color: #25334e; }
.nav-inner > a[aria-current="page"], .nav-inner > a:hover { color: var(--blue); background: transparent; }
.nav-inner > a[aria-current="page"] .ui-icon, .nav-inner > a:hover .ui-icon { color: var(--blue); }
.nav-inner > a:nth-child(5) .ui-icon { color: #ff345f; }

.button { position: relative; isolation: isolate; overflow: hidden; min-height: 48px; border-radius: 9px; padding: 11px 21px; box-shadow: none; font-size: 14px; }
.button:hover { box-shadow: 0 7px 17px rgba(12, 95, 247, .18); }
.button-outline { border-width: 1.5px; }
.button-disabled, .button-disabled:hover { opacity: .8; }
.button .ui-icon { width: 19px; height: 19px; }
.button:not(.button-disabled)::after {
    content: "";
    position: absolute;
    inset: -35% auto -35% -55%;
    z-index: 1;
    width: 36%;
    transform: translateX(-150%) skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
    transition: transform .55s ease;
    pointer-events: none;
}
.menu-button, .sticky-telegram, .back-to-top { transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:not(.button-disabled):active, .menu-button:active, .sticky-telegram:not(.disabled):active, .back-to-top:active { transform: translateY(1px) scale(.98); }
.button:focus-visible, .menu-button:focus-visible, .sticky-telegram:focus-visible, .back-to-top:focus-visible, .category-grid a:focus-visible {
    outline: 3px solid rgba(12, 95, 247, .28);
    outline-offset: 3px;
}

@media (hover: hover) {
    .button:not(.button-disabled):hover::after, .button:not(.button-disabled):focus-visible::after { transform: translateX(650%) skewX(-18deg); }
    .menu-button:hover, .sticky-telegram:not(.disabled):hover, .back-to-top:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(12, 95, 247, .16); }
}

.hero { border-bottom: 0; background: linear-gradient(110deg, #fff 0%, #fff 57%, #f6faff 100%); }
.hero-grid { min-height: 385px; grid-template-columns: .95fr 1.05fr; gap: 30px; padding-top: 24px; padding-bottom: 20px; }
.hero-copy { max-width: 575px; }
.hero h1 { max-width: 540px; margin: 0 0 14px; font-size: clamp(48px, 5vw, 63px); line-height: .99; letter-spacing: -.05em; }
.hero h1 > span { display: block; }
.hero-copy > p { max-width: 525px; margin: 0 0 17px; font-size: 17px; line-height: 1.5; }
.hero-stats { width: min(555px, 100%); margin: 0 0 17px; border-radius: 10px; box-shadow: 0 3px 12px rgba(31, 64, 117, .04); }
.hero-stats > span { min-height: 65px; padding: 7px 8px; }
.hero-stats i { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: #eff5ff; font-size: 19px; }
.hero-stats i .ui-icon { width: 20px; height: 20px; }
.hero-stats > span:nth-child(2) i { color: #149658; background: #edfaf3; }
.hero-stats > span:nth-child(3) i { color: #15904e; background: #edfaf3; }
.hero-stats > span:nth-child(4) i { color: #f0a300; background: #fff9e8; }
.hero-stats strong { font-size: 12px; }
.hero-stats small { font-size: 9.5px; }
.hero-actions { gap: 15px; }
.hero-actions .button { width: 246px; }
.hero-art { min-height: 335px; }
.hero-art::before { z-index: 0; width: 440px; height: 330px; background: radial-gradient(ellipse, rgba(93, 155, 255, .16), transparent 68%); }
.hero-art > img { position: relative; z-index: 1; width: min(100%, 570px); filter: drop-shadow(0 18px 22px rgba(17, 50, 105, .09)); }
.hero-phone-name { position: absolute; z-index: 2; left: 50%; top: 61%; transform: translate(-50%, -50%) rotate(-1deg); display: grid; color: #fff; font-size: 22px; font-weight: 950; line-height: .92; letter-spacing: -.04em; text-align: center; text-shadow: 0 3px 7px rgba(0,0,0,.45); }
.hero-phone-name small { color: #fff; font-size: 12px; letter-spacing: .12em; }
.hero-art-label { position: absolute; z-index: 2; padding: 2px 5px; border-radius: 4px; color: #fff; background: rgba(5,14,38,.72); font-size: 8px; font-weight: 900; letter-spacing: .04em; text-shadow: 0 1px 2px rgba(0,0,0,.55); }
.hero-label-rummy { left: 18%; top: 43%; transform: rotate(-8deg); }
.hero-label-slots { right: 17%; top: 43%; transform: rotate(8deg); }
.hero-label-cards { left: 17%; bottom: 12%; transform: rotate(-8deg); }
.hero-label-lottery { right: 17%; bottom: 12%; transform: rotate(7deg); }

.home-layout { grid-template-columns: 1.025fr .975fr; gap: 12px; padding-top: 12px; }
.popular-panel, .home-sidebar > .panel, .latest-panel, .how-panel, .faq-panel { padding: 13px; }
.home-sidebar { gap: 12px; }
.section-heading { margin-bottom: 10px; align-items: center; }
.section-heading h2 { margin: 0; font-size: 18px; letter-spacing: -.025em; }
.section-heading > a { font-size: 11px; }
.heading-icon { color: #f4a300; font-size: 18px; }

.game-list { gap: 7px; }
.game-row { min-height: 69px; gap: 8px; padding: 6px; border-radius: 10px; }
.game-row:hover { transform: none; box-shadow: 0 4px 12px rgba(24, 59, 115, .065); }
.game-main-link { gap: 10px; }
.game-icon { width: 56px; height: 56px; border-radius: 12px; border: 1px solid rgba(255,255,255,.55); }
.game-icon small { max-width: 51px; color: #ffd73f; font-size: 6.5px; }
.game-icon strong { max-width: 51px; margin-top: 3px; padding-inline: 2px; display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; font-size: 14px; line-height: .92; }
.game-icon.game-icon-gold-rummy { background: radial-gradient(circle at 50% 18%, #156837, #042913 68%, #02150b); box-shadow: inset 0 0 0 2px #e7b52f, 0 4px 10px rgba(6, 43, 22, .25); }
.game-icon.game-icon-rummy-91 { background: linear-gradient(145deg, #168441, #052917); }
.game-icon.game-icon-spin-winner { background: linear-gradient(145deg, #107a3e, #072410); }
.game-icon.game-icon-yono-slots { background: linear-gradient(145deg, #521181, #17012b); }
.game-icon.game-icon-club-inr { background: linear-gradient(145deg, #6d20ab, #24043f); }
.game-copy { gap: 2px; }
.game-copy > strong { font-size: 13px; }
.game-stats { min-height: 16px; gap: 6px; color: #53617b; font-size: 10px; }
.game-stats > span:first-child { display: inline-flex; align-items: center; gap: 3px; }
.game-stats .ui-icon { width: 11px; height: 11px; color: var(--blue); }
.category-chip { margin-left: auto; border-radius: 999px; padding: 2px 7px; color: #8244cb; background: #f5ebff; font-size: 9.5px; }
.game-bonus { display: flex; align-items: center; gap: 4px; color: #05944e !important; font-size: 9.5px !important; }
.game-bonus .ui-icon { width: 11px; height: 11px; }
.game-specs { min-width: 88px; display: flex; justify-content: center; gap: 7px; color: #778197; font-size: 9.5px; }
.game-specs small + small::before { content: "•"; margin-right: 7px; color: #aab2c0; }
.game-row > .button { min-width: 91px; min-height: 38px; padding: 7px 10px; border-radius: 8px; font-size: 11px; }
.game-row > .button .ui-icon { width: 14px; height: 14px; }
.game-row-compact .game-icon { width: 55px; height: 55px; }
.game-row-compact .button { min-width: 88px; }
.game-row-compact { min-height: 62px; }

.home-all-games { margin-top: 12px; padding: 15px; }
.home-all-games .section-heading { align-items: flex-end; }
.home-all-games .section-heading p { max-width: 720px; margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.listing-count { flex: 0 0 auto; border-radius: 999px; padding: 5px 10px; color: var(--blue-dark); background: var(--blue-soft); font-size: 11px; }
.home-all-games-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.home-all-games-grid > li { min-width: 0; content-visibility: auto; contain-intrinsic-size: 70px; }
.game-row-numbered { display: grid; grid-template-columns: 32px minmax(0, 1fr); }
.game-row-numbered .game-specs { display: none; }
.numbered-game-main-link { display: grid; grid-template-columns: 56px minmax(0, 1fr) 91px; }
.numbered-game-action { min-width: 91px; min-height: 38px; padding: 7px 10px; border-radius: 8px; font-size: 11px; }
.game-main-link:focus-visible { outline: 3px solid rgba(12, 95, 247, .28); outline-offset: 3px; border-radius: 9px; }
.numbered-game-main-link:hover .numbered-game-action::after, .numbered-game-main-link:focus-visible .numbered-game-action::after { transform: translateX(650%) skewX(-18deg); }
.numbered-game-main-link:active .numbered-game-action { transform: scale(.98); }
.game-serial { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #cfe0fa; border-radius: 9px; color: var(--blue-dark); background: #f1f7ff; font-size: 11px; font-weight: 900; font-variant-numeric: tabular-nums; }

.category-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
.category-grid a { min-height: 76px; gap: 5px; border-radius: 10px; }
.category-grid strong { font-size: 11px; }
.category-grid small { display: none; }
.category-symbol { width: 54px; height: 54px; overflow: visible; border-radius: 14px; background: transparent !important; font-size: 18px; }
.category-symbol img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 5px 6px rgba(22, 45, 88, .18)); transition: transform .22s ease, filter .22s ease; }
.category-grid a { transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.category-grid a:hover img { transform: translateY(-3px) rotate(-2deg) scale(1.06); filter: drop-shadow(0 9px 9px rgba(22, 45, 88, .24)); }
.category-symbol.category-777-jackpot, .category-symbol.category-slots { font-size: 12px; }
.trust-grid { grid-template-columns: repeat(3, 1fr); gap: 7px; }
.trust-grid > div { min-height: 64px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: 6px 5px; text-align: center; }
.trust-grid > div > span { width: 28px; height: 28px; border-radius: 8px; }
.trust-grid .ui-icon { width: 19px; height: 19px; }
.trust-grid strong { font-size: 10.5px; }
.trust-grid small { font-size: 10px; line-height: 1.25; }

.latest-panel { margin-top: 12px; padding: 12px 13px; }
.tile-scroll { grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.game-tile { min-height: 67px; padding: 7px; border-radius: 9px; }
.game-tile .game-icon { width: 43px; height: 43px; border-radius: 10px; }
.game-tile .game-icon strong { font-size: 11px; }
.game-tile strong { font-size: 10.5px; }
.game-tile small { font-size: 10px; }

.info-grid { gap: 14px; margin-top: 14px; }
.steps { gap: 18px; }
.steps li { min-height: 122px; display: grid; grid-template-columns: 27px 1fr; grid-template-rows: auto 1fr; gap: 4px; padding: 9px; }
.steps li > span { position: absolute; left: 10px; top: 11px; width: 25px; height: 25px; font-size: 11px; }
.steps .step-download { grid-column: 1 / -1; display: grid; place-items: center; width: 44px; height: 44px; margin: 4px auto 0; border-radius: 50%; color: var(--blue); background: #eef5ff; }
.steps .step-download .ui-icon { width: 25px; height: 25px; }
.steps li > div:last-child { grid-column: 1 / -1; }
.steps li:not(:last-child)::after { content: "→"; position: absolute; right: -15px; top: 50%; z-index: 2; transform: translateY(-50%); padding: 2px; color: #8993a5; background: #fff; font-size: 21px; }
.steps strong { font-size: 11px; }
.steps small { font-size: 10px; }
.faq-panel .eyebrow { display: none; }
.faq-list { gap: 4px; }
.faq-list details { border-radius: 7px; }
.faq-list summary { min-height: 33px; padding: 7px 10px; font-size: 10px; }
.faq-list details p { padding: 0 10px 9px; font-size: 10px; }

.about-home { margin-top: 14px; padding: 20px 14px 27px; grid-template-columns: 1.35fr .65fr; gap: 32px; }
.about-home h2 { margin: 0 0 5px; font-size: 19px; }
.about-home h3 { margin: 8px 0 3px; font-size: 13px; }
.about-home p { margin: 0; font-size: 11px; }
.check-list { margin-top: 7px; gap: 4px 15px; }
.check-list li { padding-left: 18px; font-size: 10px; }
.check-list li::before { width: 13px; height: 13px; font-size: 8px; }
.verification-card { padding: 17px; border-radius: 15px; }
.verification-card strong { color: var(--blue-dark); font-size: 16px; }
.verification-card p { font-size: 10px; }

.responsible-strip { width: min(1160px, calc(100% - 32px)); margin: 10px auto 0; border: 1px solid #bed7ff; border-radius: 12px; background: linear-gradient(105deg, #eef6ff, #fff); }
.responsible-strip > .wrap { width: 100%; padding-inline: 22px; }
.responsible-inner { min-height: 88px; }
.responsible-inner strong { font-size: 18px; }
.responsible-inner span { font-size: 10px; }
.responsible-points { gap: 28px; }
.responsible-points span { display: grid; justify-items: center; gap: 4px; border: 0; background: transparent; padding: 4px; }
.responsible-points .ui-icon { width: 25px; height: 25px; color: var(--blue); }
.site-footer { padding: 17px 0 13px; }
.site-footer { position: relative; }
.footer-grid { grid-template-columns: 1.4fr repeat(4, .67fr); gap: 24px; }
.footer-brand .brand-mark { width: 40px; height: 40px; }
.footer-brand .brand-name { font-size: 14px; }
.footer-grid p { margin: 7px 0; font-size: 10px; }
.footer-grid > div:not(:first-child) { gap: 3px; }
.footer-grid h2 { margin-bottom: 2px; font-size: 11px; }
.footer-grid a { font-size: 10px; }
.footer-socials { display: flex; gap: 5px; margin-top: 8px; }
.footer-socials a { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); }
.footer-socials a:nth-child(2) { background: #16a05c; }
.footer-socials a:nth-child(3) { background: #ef3a48; }
.footer-socials a:nth-child(4) { background: #e43c84; }
.footer-socials .ui-icon { width: 13px; height: 13px; }
.footer-bottom { margin-top: 12px; padding-top: 9px; }
.footer-bottom p { font-size: 9.5px; }
.back-to-top { position: absolute; right: max(12px, calc((100% - 1160px) / 2)); bottom: 12px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 6px; color: #fff; background: #394762; font-size: 16px; font-weight: 900; }
.back-to-top:hover { color: #fff; background: var(--blue); }

.breadcrumbs { padding-top: 13px; padding-bottom: 9px; }
.breadcrumbs ol { font-size: 11px; }
.detail-page { gap: 10px; padding-bottom: 25px; }
.game-hero-card { grid-template-columns: 150px 1fr; grid-template-rows: auto auto; gap: 8px 27px; padding: 14px 29px; }
.game-hero-card > .game-icon-large { grid-row: 1 / 3; }
.game-icon-large { width: 142px; height: 142px; border-radius: 28px; }
.game-icon-large small { max-width: 125px; font-size: 13px; }
.game-icon-large strong { max-width: 125px; margin-top: 7px; font-size: 28px; line-height: .95; }
.game-hero-copy h1 { margin: 0 0 4px; font-size: clamp(31px, 3.4vw, 42px); }
.game-hero-copy > p { max-width: 560px; font-size: 16px; }
.game-hero-card > .game-actions { grid-column: 2; margin-top: 4px; gap: 14px; }
.game-actions .button { min-width: 280px; }

.detail-stat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.detail-stat-grid > div { min-width: 0; min-height: 76px; display: flex; align-items: center; gap: 10px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.detail-stat-grid > div > span { color: var(--blue); }
.detail-stat-grid > div > span.green { color: #139b4c; }
.detail-stat-grid > div > span.orange { color: #f06416; }
.detail-stat-grid > div > span.purple { color: #7843df; }
.detail-stat-grid > div > span.gold { color: #e9a900; }
.detail-stat-grid .ui-icon { width: 30px; height: 30px; }
.detail-stat-grid b { min-width: 0; display: grid; font-weight: inherit; }
.detail-stat-grid small { color: #66728a; font-size: 10px; }
.detail-stat-grid strong { overflow-wrap: anywhere; font-size: 11px; line-height: 1.25; }
.verification-line { display: flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid #efd5a1; border-radius: 9px; color: #895200; background: #fff8ea; }
.verification-line > span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #d98300; font-weight: 900; }
.verification-line p { margin: 0; font-size: 10px; }
.verification-line.verification-reviewed { border-color: #b8d2fa; color: var(--blue-dark); background: #eff6ff; }
.verification-line.verification-reviewed > span { background: var(--blue); }
.verification-line.verification-verified { border-color: #a7dbbc; color: #087140; background: #edfaf3; }
.verification-line.verification-verified > span { background: #0b9b54; }
.screenshots-panel { padding: 9px 12px 7px; }
.screenshot-grid { grid-template-columns: repeat(3, 1fr); gap: 11px; }
.screenshot-grid img, .media-placeholder { width: 100%; aspect-ratio: 16/7.2; border: 1px solid #dfe7f1; border-radius: 9px; }
.media-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; color: #fff; text-align: center; background: radial-gradient(circle at 20% 20%, #1a7440, #05311a 70%); }
.media-placeholder-2 { background: radial-gradient(circle at 50% 0, #f5ba31, #8b1410 45%, #350302); }
.media-placeholder-3 { background: radial-gradient(circle at 50% 50%, #126b36, #052b17 72%); }
.media-placeholder > span { color: #ffd237; font-size: 31px; line-height: 1; }
.media-placeholder strong { margin-top: 4px; font-size: 16px; }
.media-placeholder small { color: rgba(255,255,255,.77); font-size: 10px; }
.carousel-dots { height: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.carousel-dots i { width: 6px; height: 6px; border-radius: 50%; background: #c9d1de; }
.carousel-dots i:first-child { background: var(--blue); }

.app-info-panel, .prose-card, .feature-card, .instruction-card, .reason-card, .offer-card, .related-panel { padding: 13px 15px; }
.app-info-grid { border-radius: 9px; }
.app-info-grid > div { min-height: 38px; grid-template-columns: 150px 1fr; padding: 6px 12px; }
.app-info-grid dt { display: flex; align-items: center; gap: 8px; font-size: 10px; }
.app-info-grid dt .ui-icon { width: 18px; height: 18px; color: var(--blue); }
.app-info-grid dd { font-size: 10px; }
.prose-card h2, .feature-card h2, .instruction-card h2, .reason-card h2, .offer-card h2 { margin: 0 0 7px; font-size: 16px; }
.prose-card h3 { margin: 22px 0 7px; color: #172849; font-size: 17px; line-height: 1.3; }
.prose-card p { margin: 0 0 14px; color: #4c5b74; font-size: 13px; line-height: 1.72; }
.feature-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 11px; }
.feature-grid > div { min-height: 74px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 7px; border: 1px solid var(--line); border-radius: 10px; text-align: center; }
.feature-grid > div > span { color: var(--blue); }
.feature-grid > div:nth-child(1) > span, .feature-grid > div:nth-child(5) > span { color: #0ca24c; }
.feature-grid > div:nth-child(2) > span { color: #f46614; }
.feature-grid > div:nth-child(3) > span { color: #7745da; }
.feature-grid .ui-icon { width: 30px; height: 30px; }
.feature-grid strong { font-size: 10px; line-height: 1.25; }
.instruction-grid, .reason-offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.instruction-card ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 3px; }
.instruction-card li { min-height: 26px; display: flex; align-items: center; gap: 8px; padding: 3px 7px; border: 1px solid #e6ebf2; border-radius: 7px; }
.instruction-card li > span { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-size: 8px; font-weight: 900; }
.instruction-card p { margin: 0; display: grid; }
.instruction-card strong { font-size: 10px; }
.instruction-card small { color: var(--muted); font-size: 10px; }
.tick-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.tick-list li { position: relative; padding-left: 22px; color: #44516b; font-size: 10px; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; width: 15px; height: 15px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #0ba04e; font-size: 8px; }
.offer-card { border-color: #93d0a9; }
.offer-heading { display: flex; align-items: center; justify-content: space-between; }
.offer-heading > span { border-radius: 5px; padding: 3px 8px; color: #fff; background: #158f48; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.offer-body { display: flex; align-items: center; gap: 14px; padding: 7px 8px; border: 1px solid #dce7e0; border-radius: 8px; }
.offer-body > span { color: #f04f21; }
.offer-body > span .ui-icon { width: 36px; height: 36px; }
.offer-body strong { font-size: 14px; }
.offer-body p { margin: 1px 0; color: #5c687f; font-size: 10px; }
.offer-body small { color: #167a43; font-size: 10px; }
.offer-card.verification-unverified { border-color: #dfc58d; }
.offer-card.verification-unverified .offer-heading > span { background: #b87000; }
.offer-card.verification-unverified .offer-body small { color: #8a5b00; }
.offer-card.verification-reviewed { border-color: #9fc0f5; }
.offer-card.verification-reviewed .offer-heading > span { background: var(--blue); }
.offer-card.verification-reviewed .offer-body small { color: var(--blue-dark); }
.offer-card.verification-verified { border-color: #93d0a9; }
.offer-card.verification-verified .offer-heading > span { background: #158f48; }
.offer-card.verification-verified .offer-body small { color: #167a43; }
.offer-card.verification-blocked { border-color: #e7a5aa; }
.offer-card.verification-blocked .offer-heading > span { background: var(--red); }
.offer-card.verification-blocked .offer-body small { color: var(--red); }
.related-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; }
.related-grid article { min-width: 0; border: 1px solid var(--line); border-radius: 9px; padding: 7px; }
.related-grid a { display: flex; gap: 7px; color: var(--ink); }
.related-grid .game-icon { width: 49px; height: 49px; border-radius: 10px; }
.related-grid a > span { min-width: 0; display: grid; align-content: center; gap: 1px; }
.related-grid strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; }
.related-grid small { color: var(--muted); font-size: 10px; }
.related-grid b { width: fit-content; display: inline-flex; align-items: center; gap: 3px; margin-top: 2px; border-radius: 4px; padding: 2px 6px; color: #fff; background: var(--blue); font-size: 10px; }
.related-grid b .ui-icon { width: 9px; height: 9px; }
.sticky-download { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; padding: 7px 0; border-top: 1px solid #c9d9f1; background: rgba(255,255,255,.96); box-shadow: 0 -5px 18px rgba(19, 45, 91, .1); backdrop-filter: blur(12px); }
.sticky-download .wrap { display: grid; grid-template-columns: 1fr 66px; gap: 14px; }
.sticky-download .button { min-height: 44px; }
.sticky-telegram { display: grid; place-items: center; border: 1.5px solid var(--blue); border-radius: 9px; color: var(--blue); background: #fff; }
.sticky-telegram .ui-icon { width: 23px; height: 23px; }
.sticky-telegram.disabled { opacity: .42; }
body:has(.sticky-download) { padding-bottom: 61px; }

.listing-hero { padding-top: 22px; padding-bottom: 20px; }
.listing-hero h1, .content-hero h1 { font-size: clamp(32px, 4vw, 46px); }
.directory-grid .game-row { min-height: 78px; }

@media (max-width: 1050px) {
    .hero-grid { gap: 8px; }
    .hero-art { transform: none; }
    .game-specs { display: flex; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .detail-stat-grid { grid-template-columns: repeat(6, 1fr); }
    .footer-grid { grid-template-columns: 1.2fr repeat(4, .7fr); gap: 15px; }
}

@media (max-width: 820px) {
    .wrap { width: min(100% - 28px, 1160px); }
    .site-header { position: sticky; top: 0; isolation: isolate; }
    .header-main { min-height: 66px; }
    .site-nav { display: none; }
    .site-nav.is-open { position: absolute; top: 100%; left: 0; right: 0; display: block; max-height: calc(100dvh - 66px); overflow-y: auto; overscroll-behavior: contain; background: #fff; box-shadow: 0 12px 24px rgba(20,45,90,.14); }
    .nav-inner { padding-block: 7px 11px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
    .nav-inner > a, .nav-inner > .nav-placeholder { padding: 9px 11px; }
    .hero-grid { grid-template-columns: 1fr; gap: 0; padding-top: 35px; }
    .hero-copy { max-width: none; }
    .hero-art { width: min(500px, 100%); min-height: 315px; }
    .hero-art > img { width: 100%; max-width: 500px; }
    .home-layout { grid-template-columns: 1fr; }
    .home-all-games-grid { grid-template-columns: 1fr; }
    .game-specs { display: none; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .about-home { grid-template-columns: 1fr; gap: 15px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .responsible-points { display: none; }
    .game-hero-card { grid-template-columns: 125px 1fr; padding: 16px 20px; }
    .game-icon-large { width: 120px; height: 120px; }
    .game-actions .button { min-width: 220px; }
    .detail-stat-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-grid { grid-template-columns: repeat(3, 1fr); }
    .related-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    body { font-size: 14px; }
    .wrap { width: min(100% - 20px, 1160px); }
    .brand-mark { width: 42px; height: 42px; }
    .brand-name { font-size: 18px; }
    .hero-grid { padding-top: 24px; padding-bottom: 12px; }
    .hero h1 { font-size: clamp(32px, 10.5vw, 40px); }
    .hero-copy > p { font-size: 15px; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hero-stats > span:nth-child(2) { border-right: 0; }
    .hero-stats > span:nth-child(-n+2) { border-bottom: 1px solid #edf1f6; }
    .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .hero-actions .button { width: 100%; min-width: 0; padding-inline: 8px; font-size: 11px; }
    .hero-art { min-height: 225px; margin: 0 auto; transform: none; }
    .hero-art > img { width: 390px; max-width: 100%; }
    .popular-panel, .home-sidebar > .panel, .latest-panel, .how-panel, .faq-panel { padding: 10px; }
    .game-row { align-items: center; }
    .game-row > .button { width: auto; min-width: 76px; min-height: 36px; padding: 6px 8px; font-size: 10px; }
    .game-row > .button .ui-icon { width: 12px; height: 12px; }
    .game-copy > small { display: flex; max-width: 165px; }
    .home-all-games { padding: 10px; }
    .home-all-games .section-heading { align-items: flex-start; flex-direction: column; gap: 6px; }
    .game-row-numbered { display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 7px; }
    .game-row-numbered .game-specs { display: none; }
    .numbered-game-main-link { grid-template-columns: 56px minmax(0, 1fr) 44px; gap: 7px; }
    .numbered-game-action { width: 44px; min-width: 44px; height: 44px; padding: 0; font-size: 0; }
    .numbered-game-action .ui-icon { width: 17px; height: 17px; }
    .game-serial { width: 25px; height: 25px; border-radius: 8px; font-size: 10px; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .tile-scroll { display: flex; }
    .game-tile { flex: 0 0 155px; }
    .info-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; gap: 8px; }
    .steps li { min-height: 82px; display: grid; grid-template-columns: 32px 44px minmax(0, 1fr); grid-template-rows: 1fr; align-items: center; text-align: left; }
    .steps li > span, .steps .step-download, .steps li > div:last-child { position: static; grid-column: auto; margin: 0; }
    .steps li::after { display: none; }
    .check-list { grid-template-columns: 1fr; }
    .responsible-inner { min-height: 78px; }
    .responsible-strip { width: calc(100% - 20px); }
    .responsible-strip > .wrap { padding-inline: 12px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; }
    .game-hero-card { grid-template-columns: 85px minmax(0, 1fr); grid-template-rows: auto auto; gap: 10px 13px; padding: 13px; }
    .game-hero-card > .game-icon-large { grid-row: 1; }
    .game-icon-large { width: 82px; height: 82px; border-radius: 18px; }
    .game-icon-large small { font-size: 8px; }
    .game-icon-large strong { font-size: 16px; }
    .game-hero-copy h1 { font-size: 25px; }
    .game-hero-copy > p { display: block; font-size: 11px; }
    .game-hero-card > .game-actions { grid-column: 1 / -1; margin-top: 0; gap: 6px; }
    .game-actions .button { width: 100%; min-width: 0; min-height: 39px; padding: 7px 9px; font-size: 10px; }
    .detail-stat-grid { grid-template-columns: repeat(3, 1fr); gap: 7px; }
    .detail-stat-grid > div { min-height: 66px; padding: 8px 9px; }
    .detail-stat-grid .ui-icon { width: 24px; height: 24px; }
    .screenshot-grid { display: grid; grid-auto-flow: column; grid-auto-columns: 82%; grid-template-columns: none; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; padding-bottom: 3px; }
    .screenshot-grid::-webkit-scrollbar, .related-grid::-webkit-scrollbar, .tile-scroll::-webkit-scrollbar { display: none; }
    .screenshot-grid > * { scroll-snap-align: start; }
    .app-info-grid { grid-template-columns: 1fr; }
    .app-info-grid > div, .app-info-grid > div:nth-child(odd), .app-info-grid > div:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid #e7edf5; }
    .app-info-grid > div:last-child { border-bottom: 0; }
    .app-info-grid > div { grid-template-columns: minmax(112px, .85fr) minmax(0, 1.15fr); }
    .prose-card h3 { font-size: 17px; }
    .prose-card p { font-size: 14px; line-height: 1.7; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .instruction-grid, .reason-offer-grid { grid-template-columns: 1fr; }
    .related-grid { display: flex; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
    .related-grid article { flex: 0 0 170px; scroll-snap-align: start; }
    .sticky-download .wrap { grid-template-columns: 1fr 52px; gap: 8px; }
    .sticky-download .button { min-width: 0; padding-inline: 8px; font-size: 11px; }
    .sticky-download { padding-bottom: calc(7px + env(safe-area-inset-bottom)); }
    body:has(.sticky-download) { padding-bottom: calc(61px + env(safe-area-inset-bottom)); }
    .sticky-label-long { display: none; }
    .sticky-label-short { display: inline; }
}

@media (min-width: 601px) {
    .sticky-label-short { display: none; }
}

@media (max-width: 430px) {
    .brand-name { font-size: 16px; }
    .nav-inner { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero h1 { font-size: clamp(32px, 10.5vw, 37px); }
    .category-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:first-child { grid-column: auto; }
    .numbered-game-action { min-width: 44px; }
    .game-row-numbered .game-icon { width: 48px; height: 48px; }
    .numbered-game-main-link { grid-template-columns: 48px minmax(0, 1fr) 44px; }
    .game-row-numbered .category-chip { display: none; }
    .game-row-numbered .game-copy > small { max-width: 150px; }
    .game-hero-card { grid-template-columns: 72px minmax(0, 1fr); }
    .game-icon-large { width: 70px; height: 70px; }
    .game-hero-copy h1 { font-size: 21px; }
    .detail-stat-grid { grid-template-columns: 1fr 1fr; }
    .app-info-grid > div { grid-template-columns: minmax(104px, .8fr) minmax(0, 1.2fr); }
}

@media (prefers-reduced-motion: reduce) {
    .button::after { display: none !important; }
    .button, .menu-button, .sticky-telegram, .back-to-top, .category-grid a, .category-symbol img, .numbered-game-action { transform: none !important; transition: none !important; animation: none !important; }
}
