:root {
    --green: #7dff20;
    --green-deep: #0d6d08;
    --gold: #ffc61a;
    --line: rgba(125, 255, 32, 0.24);
    --soft: rgba(255, 255, 255, 0.78);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, sans-serif;
    background:
        radial-gradient(circle at 72% 15%, rgba(125, 255, 32, 0.18), transparent 34rem),
        radial-gradient(circle at 20% 8%, rgba(255, 198, 26, 0.10), transparent 30rem),
        linear-gradient(180deg, #020502 0%, #000 52%, #021006 100%);
    min-height: 100vh;
    margin: 0;
}

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

a:hover {
    text-decoration: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
}

.site-header nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    min-height: 68px;
    padding: 0.25rem 0;
}

.install-app-prompt {
    position: fixed;
    left: 50%;
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    z-index: 110;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto 34px;
    align-items: center;
    gap: 0.65rem;
    width: min(560px, calc(100% - 1rem));
    padding: 0.65rem;
    border: 1px solid rgba(125, 255, 32, 0.42);
    border-radius: 16px;
    color: white;
    background: linear-gradient(125deg, #071207, #001700);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.62), 0 0 22px rgba(125, 255, 32, 0.14);
    transform: translateX(-50%);
}

.install-app-prompt[hidden] {
    display: none;
}

.install-app-prompt img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 12px;
}

.install-app-content {
    min-width: 0;
}

.install-app-content strong {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    line-height: 1.2;
}

.install-app-content p {
    margin: 0.22rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.73rem;
    line-height: 1.35;
}

.install-app-action {
    min-height: 40px;
    padding: 0.55rem 0.85rem;
    border: 0;
    border-radius: 10px;
    color: #052400;
    background: var(--green);
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
}

.install-app-close {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.09);
    cursor: pointer;
}

.game-header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    min-height: 74px;
    padding: 0.35rem 0;
}

.game-header-links {
    gap: 1rem;
}

.game-header-links a {
    border: 0;
    border-bottom: 2px solid transparent;
    color: rgba(255, 255, 255, 0.86);
    opacity: 1;
    padding: 0.5rem 0;
    text-decoration: none;
}

.game-header-links a:hover,
.game-header-links .active {
    border-color: var(--green);
    color: var(--green);
    text-decoration: none;
}

.game-header-cta {
    color: white;
    text-decoration: none;
}

.game-header-cta *,
.game-header-cta:hover {
    text-decoration: none;
}

.brand img {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: -6px 0 -8px;
    background: transparent;
    filter: drop-shadow(0 0 18px rgba(125, 255, 32, 0.35));
}

.brand,
.brand img,
.phone-frame img {
    background-color: transparent !important;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.55rem, 1.2vw, 1rem);
    min-width: 0;
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.nav-links a {
    color: white;
    opacity: 0.88;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links .active {
    color: var(--green);
    border-color: var(--green);
}

.download-top,
.card-download,
.cta-band a {
    background: linear-gradient(180deg, #70db13, #1a7209);
    border: 1px solid #a6ff35;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 22px rgba(125, 255, 32, 0.2);
}

.download-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.62rem;
    min-width: 158px;
    border-radius: 8px;
    padding: 0.48rem 0.72rem;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}

.download-top i {
    color: var(--gold);
    font-size: 1.25rem;
}

.download-top strong,
.download-top small {
    display: block;
    line-height: 1.15;
}

.download-top small {
    color: rgba(255, 255, 255, 0.86);
    text-transform: none;
}

.menu-toggle {
    display: none;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid var(--line);
    color: var(--green);
    background: rgba(2, 30, 7, 0.82);
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(125, 255, 32, 0.12);
}

.game-page {
    min-height: 100vh;
}

.app-detail-page {
    display: block;
    min-height: calc(100vh - 90px);
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 2.5rem;
}

.page-shell {
    width: min(1120px, calc(100% - 2rem));
    min-height: calc(100vh - 90px);
    margin: 0 auto;
    padding: 2rem 0 2.5rem;
}

.page-hero-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.1rem;
    border: 1px solid rgba(125, 255, 32, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(115deg, rgba(7, 45, 13, 0.96), rgba(1, 9, 4, 0.98)),
        radial-gradient(circle at 12% 18%, rgba(255, 198, 26, 0.16), transparent 18rem);
    padding: clamp(1.25rem, 4vw, 2.5rem);
    box-shadow: inset 0 0 30px rgba(125, 255, 32, 0.05);
}

.support-hero-card {
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 198, 26, 0.18), transparent 18rem),
        radial-gradient(circle at 10% 0%, rgba(125, 255, 32, 0.18), transparent 20rem),
        linear-gradient(115deg, rgba(7, 45, 13, 0.98), rgba(1, 9, 4, 0.98));
}

.page-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 198, 26, 0.34);
    border-radius: 8px;
    background: rgba(255, 198, 26, 0.08);
    color: var(--gold);
    font-size: 1.35rem;
}

.page-hero-card h1 {
    color: #fff1c3;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1;
}

.page-hero-card p:not(.kicker) {
    max-width: 720px;
    margin-top: 0.65rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    line-height: 1.65;
}

.page-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1rem;
    margin-top: 1rem;
}

.page-card,
.page-side-card,
.page-feature-grid article {
    border: 1px solid rgba(125, 255, 32, 0.18);
    border-radius: 8px;
    background: rgba(2, 18, 6, 0.76);
    box-shadow: inset 0 0 22px rgba(125, 255, 32, 0.035);
}

.page-card {
    padding: clamp(1rem, 3vw, 1.65rem);
}

.page-card h2 {
    color: #fff1c3;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.page-card p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.75;
}

.page-side-card {
    display: grid;
    align-content: start;
    gap: 0.7rem;
    padding: 1rem;
}

.page-side-card b {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.page-side-card a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(125, 255, 32, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
    padding: 0.78rem 0.85rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
    font-weight: 900;
}

.page-side-card a:hover {
    border-color: rgba(125, 255, 32, 0.55);
    color: var(--green);
}

.page-side-card i {
    color: var(--gold);
}

.support-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.support-ticket-card {
    border: 1px solid rgba(125, 255, 32, 0.2);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(2, 18, 6, 0.88), rgba(0, 6, 2, 0.96));
    padding: clamp(1rem, 3vw, 1.45rem);
}

.support-ticket-card.highlight {
    border-color: rgba(255, 198, 26, 0.32);
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 198, 26, 0.14), transparent 15rem),
        linear-gradient(145deg, rgba(13, 35, 5, 0.94), rgba(0, 8, 2, 0.98));
}

.support-ticket-card h2 {
    color: #fff1c3;
    font-size: 1.35rem;
    font-weight: 1000;
    line-height: 1.2;
}

.support-ticket-card p:not(.kicker) {
    margin-top: 0.65rem;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 750;
    line-height: 1.65;
}

.support-ticket-card > a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 198, 26, 0.42);
    border-radius: 8px;
    background: linear-gradient(180deg, #8aff18, #238909);
    padding: 0.8rem 1rem;
    color: white;
    font-weight: 1000;
    text-transform: uppercase;
}

.support-step-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.support-step-list span {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid rgba(125, 255, 32, 0.16);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
    padding: 0.72rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 850;
}

.support-step-list b {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 198, 26, 0.1);
    color: var(--gold);
    font-size: 0.85rem;
}

.page-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.page-feature-grid article {
    padding: 1rem;
}

.page-feature-grid i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 198, 26, 0.28);
    border-radius: 8px;
    color: var(--gold);
    background: rgba(255, 198, 26, 0.08);
}

.page-feature-grid h3 {
    margin-top: 0.85rem;
    color: #fff1c3;
    font-size: 1rem;
    font-weight: 900;
}

.page-feature-grid p {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.55;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.blog-faq-block {
    margin-top: 1.25rem;
    border-top: 1px solid rgba(125, 255, 32, 0.16);
    padding-top: 1rem;
}

.blog-faq-block h2 {
    color: #fff1c3;
    font-size: 1.1rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.blog-faq-block details {
    margin-top: 0.7rem;
    border: 1px solid rgba(125, 255, 32, 0.18);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
    padding: 0.8rem;
}

.blog-faq-block summary {
    cursor: pointer;
    color: var(--gold);
    font-weight: 1000;
}

.blog-faq-block p {
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.6;
}

.blog-related-apps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.8rem;
}

.blog-related-apps a {
    border: 1px solid rgba(125, 255, 32, 0.18);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
    padding: 0.8rem;
}

.blog-related-apps strong,
.blog-related-apps span {
    display: block;
}

.blog-related-apps strong {
    color: #fff1c3;
    font-weight: 1000;
}

.blog-related-apps span {
    margin-top: 0.25rem;
    color: var(--soft);
    font-size: 0.85rem;
    font-weight: 800;
}

.latest-blog-section {
    margin: 1.5rem 0;
    padding: 2.2rem 0;
    background:
        radial-gradient(circle at 18% 0%, rgba(101, 255, 31, 0.14), transparent 18rem),
        linear-gradient(180deg, rgba(0, 18, 7, 0.72), rgba(0, 7, 3, 0.94));
    border-block: 1px solid rgba(101, 255, 31, 0.18);
}

.latest-blog-section > div {
    padding-top: 1.2rem;
    padding-bottom: 1.35rem;
    border: 1px solid rgba(101, 255, 31, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(0, 12, 4, 0.72), rgba(0, 18, 7, 0.78));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.latest-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.latest-blog-grid .blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 560px;
    overflow: hidden;
    border-color: rgba(101, 255, 31, 0.46);
    background:
        linear-gradient(180deg, rgba(0, 8, 3, 0.98), rgba(0, 16, 6, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 42px rgba(0, 0, 0, 0.34);
}

.latest-blog-grid .blog-thumb {
    aspect-ratio: 16 / 10;
    background: #020402;
}

.latest-blog-grid .blog-thumb img {
    object-fit: cover;
}

.latest-blog-grid .blog-card > div {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 1.25rem;
    background: rgba(0, 22, 8, 0.96);
}

.latest-blog-grid .blog-date {
    color: var(--gold);
    font-size: 0.88rem;
    letter-spacing: 0;
}

.latest-blog-grid .blog-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 1.55rem;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.latest-blog-grid .blog-card h3 a {
    color: #fff7d2;
}

.latest-blog-grid .blog-card p:not(.blog-date) {
    margin-top: 1.65rem;
    color: rgba(232, 238, 240, 0.9);
    font-size: 1.02rem;
    line-height: 1.5;
    -webkit-line-clamp: 3;
}

.latest-blog-grid .blog-read {
    width: fit-content;
    margin-top: auto;
    padding-top: 1.65rem;
    color: #65ff1f;
    font-size: 0.98rem;
}

.blog-more-row {
    display: grid;
    align-items: center;
    justify-content: center;
    justify-items: center;
    width: 100%;
    margin-top: 1.85rem;
    text-align: center;
}

.app-disclaimer {
    margin: 1rem auto 0;
    border: 1px solid rgba(255, 198, 26, 0.24);
    border-radius: 8px;
    background: rgba(255, 198, 26, 0.07);
    padding: 0.85rem 1rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.55;
    text-align: center;
}

.promotion-disclaimer {
    width: min(1180px, calc(100% - 2rem));
}

.view-more-row {
    display: flex;
    justify-content: center;
    margin-top: 1.1rem;
}

.view-more-row.align-left {
    justify-content: flex-start;
}

.view-more-games,
.blog-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 1px solid rgba(125, 255, 32, 0.5);
    border-radius: 8px;
    background: linear-gradient(180deg, #70db13, #1a7209);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 0 18px rgba(125, 255, 32, 0.16);
    padding: 0.86rem 1.15rem;
    color: white;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.view-more-games i,
.blog-all-link i {
    color: var(--gold);
    font-size: 0.9rem;
}

.latest-blog-section .blog-all-link {
    display: inline-flex;
    justify-self: center;
    margin-inline: auto;
    min-width: 210px;
    max-width: 100%;
    border-color: rgba(101, 255, 31, 0.9);
    background: linear-gradient(180deg, #65ff1f, #128c08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(101, 255, 31, 0.15),
        0 14px 30px rgba(101, 255, 31, 0.22);
    color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.latest-blog-section .blog-all-link i {
    color: #ffffff;
}

.latest-blog-section .blog-all-link:hover {
    border-color: rgba(255, 198, 26, 0.9);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        0 0 0 1px rgba(255, 198, 26, 0.18),
        0 16px 34px rgba(101, 255, 31, 0.26);
    transform: translateY(-1px);
}

.blogs-page {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 2.5rem;
}

.blogs-hero {
    border: 1px solid rgba(125, 255, 32, 0.24);
    border-radius: 8px;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 198, 26, 0.18), transparent 16rem),
        linear-gradient(135deg, rgba(6, 38, 10, 0.94), rgba(0, 8, 4, 0.98));
    padding: clamp(1.2rem, 4vw, 2.4rem);
}

.blogs-hero h1 {
    color: #fff1c3;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1;
}

.blogs-hero p:not(.kicker) {
    max-width: 680px;
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    line-height: 1.6;
}

.blogs-list-section {
    margin-top: 1.25rem;
}

.blog-hidden {
    display: none;
}

.blog-load-status {
    margin-top: 1.25rem;
    border: 1px solid rgba(255, 198, 26, 0.24);
    border-radius: 8px;
    background: rgba(255, 198, 26, 0.07);
    padding: 0.85rem;
    color: #fff1c3;
    text-align: center;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-card {
    overflow: hidden;
    border: 1px solid rgba(125, 255, 32, 0.2);
    border-radius: 8px;
    background: rgba(2, 18, 6, 0.78);
    box-shadow: inset 0 0 22px rgba(125, 255, 32, 0.035);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
    border-color: rgba(125, 255, 32, 0.48);
    transform: translateY(-2px);
}

.blog-thumb {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255, 198, 26, 0.08);
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.22s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.04);
}

.blog-thumb-placeholder,
.blog-detail-placeholder {
    display: grid;
    place-items: center;
    height: 100%;
    padding: 1rem;
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 198, 26, 0.22), transparent 9rem),
        linear-gradient(135deg, rgba(10, 69, 15, 0.98), rgba(0, 10, 4, 0.98));
    color: #fff1c3;
    text-align: center;
}

.blog-thumb-placeholder i,
.blog-detail-placeholder i {
    color: var(--gold);
    font-size: 2rem;
}

.blog-thumb-placeholder strong {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0.65rem;
    max-width: 90%;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog-card > div {
    display: grid;
    align-content: start;
    min-height: 230px;
    padding: 1rem;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-card h3 {
    margin-top: 0.6rem;
    color: #fff1c3;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.25;
}

.blog-card p:not(.blog-date) {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0.6rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-read {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: end;
    margin-top: 0.9rem;
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-detail-page {
    width: min(1040px, calc(100% - 2rem));
    min-height: calc(100vh - 90px);
    margin: 0 auto;
    padding: 2rem 0 2.5rem;
}

.blog-detail-card {
    overflow: hidden;
    border: 1px solid rgba(125, 255, 32, 0.22);
    border-radius: 8px;
    background: rgba(2, 18, 6, 0.78);
    box-shadow: inset 0 0 26px rgba(125, 255, 32, 0.04);
}

.blog-detail-thumb {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    object-position: center;
    background: rgba(255, 198, 26, 0.08);
}

.blog-detail-placeholder {
    min-height: 320px;
}

.blog-detail-placeholder i {
    font-size: 3rem;
}

.blog-detail-placeholder strong {
    max-width: 760px;
    margin-top: 1rem;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
}

.blog-detail-body {
    padding: clamp(1rem, 4vw, 2rem);
}

.blog-detail-body h1 {
    color: #fff1c3;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1;
}

.blog-content {
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.8;
    white-space: pre-line;
}

.inline-content-link {
    color: var(--green);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.35rem;
    border: 1px solid #a6ff35;
    border-radius: 8px;
    background: linear-gradient(180deg, #70db13, #1a7209);
    padding: 0.78rem 1rem;
    color: white;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.bonus-share-page {
    width: min(1120px, calc(100% - 2rem));
    min-height: calc(100vh - 90px);
    margin: 0 auto;
    padding: 2rem 0 2.5rem;
}

.bonus-share-hero {
    border: 1px solid rgba(125, 255, 32, 0.24);
    border-radius: 8px;
    background:
        radial-gradient(circle at 14% 22%, rgba(255, 198, 26, 0.18), transparent 16rem),
        linear-gradient(135deg, rgba(6, 38, 10, 0.95), rgba(0, 8, 4, 0.98));
    padding: clamp(1.2rem, 4vw, 2.4rem);
}

.bonus-share-hero h1 {
    color: #fff1c3;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1;
}

.bonus-share-hero p:not(.kicker) {
    max-width: 680px;
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    line-height: 1.6;
}

.bonus-share-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.bonus-share-card {
    border: 1px solid rgba(125, 255, 32, 0.2);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(7, 26, 10, 0.94), rgba(0, 7, 3, 0.98));
    padding: 1rem;
    box-shadow: inset 0 0 22px rgba(125, 255, 32, 0.035);
}

.bonus-share-card > i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 198, 26, 0.28);
    border-radius: 8px;
    color: var(--gold);
    background: rgba(255, 198, 26, 0.08);
}

.bonus-share-card h2 {
    margin-top: 0.85rem;
    color: #fff1c3;
    font-size: 1.1rem;
    font-weight: 900;
}

.bonus-share-card p {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.55;
}

.bonus-share-card code {
    display: block;
    overflow-wrap: anywhere;
    margin-top: 0.85rem;
    border: 1px solid rgba(125, 255, 32, 0.18);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.34);
    padding: 0.65rem;
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
}

.bonus-share-card div {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.9rem;
}

.bonus-share-card button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex: 1;
    border: 1px solid rgba(125, 255, 32, 0.48);
    border-radius: 8px;
    background: rgba(11, 59, 12, 0.62);
    padding: 0.7rem 0.85rem;
    color: white;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.bonus-share-card button.copied {
    border-color: rgba(255, 198, 26, 0.7);
    color: var(--gold);
}

.promotions-page {
    width: min(1180px, calc(100% - 2rem));
    min-height: calc(100vh - 90px);
    margin: 0 auto;
    padding: 2rem 0 2.5rem;
}

.promotions-hero {
    border: 1px solid rgba(125, 255, 32, 0.24);
    border-radius: 8px;
    background:
        radial-gradient(circle at 14% 22%, rgba(255, 198, 26, 0.2), transparent 16rem),
        linear-gradient(135deg, rgba(7, 42, 11, 0.95), rgba(0, 8, 4, 0.98));
    padding: clamp(1.2rem, 4vw, 2.4rem);
}

.promotions-hero h1 {
    color: #fff1c3;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1;
}

.promotions-hero p:not(.kicker) {
    max-width: 720px;
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    line-height: 1.6;
}

.promotions-hero div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.promotions-hero a,
.promotion-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid rgba(125, 255, 32, 0.5);
    border-radius: 8px;
    background: rgba(11, 59, 12, 0.62);
    padding: 0.75rem 0.95rem;
    color: var(--green);
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
}

.promotion-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.promotion-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 1rem;
    border: 1px solid rgba(125, 255, 32, 0.2);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(7, 26, 10, 0.94), rgba(0, 7, 3, 0.98));
    padding: 1rem;
    box-shadow: inset 0 0 22px rgba(125, 255, 32, 0.035);
}

.promotion-icon {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border: 1px solid rgba(255, 198, 26, 0.18);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 198, 26, 0.22), transparent 38%),
        linear-gradient(135deg, rgba(29, 72, 8, 0.9), rgba(5, 12, 7, 0.96));
}

.promotion-icon img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.promotion-card h2 {
    margin-top: 0;
    color: #fff1c3;
    font-size: 1.2rem;
    font-weight: 900;
}

.promotion-card p {
    margin-top: 0.4rem;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
    line-height: 1.5;
}

.promotion-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.promotion-meta b {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
}

.promotion-meta i {
    color: var(--gold);
}

.promotion-card a {
    margin-top: 0.9rem;
}

.app-detail-card {
    width: 100%;
    border: 1px solid rgba(125, 255, 32, 0.28);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(7, 28, 10, 0.96), rgba(0, 5, 2, 0.98));
    padding: 1.25rem;
    box-shadow: inset 0 0 30px rgba(125, 255, 32, 0.04), 0 22px 60px rgba(0, 0, 0, 0.34);
}

.app-download-ready-card {
    background:
        radial-gradient(circle at 84% 14%, rgba(255, 198, 26, 0.12), transparent 18rem),
        linear-gradient(145deg, rgba(7, 28, 10, 0.98), rgba(0, 5, 2, 0.98));
}

.app-detail-hero {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
}

.app-detail-icon {
    display: grid;
    place-items: center;
    width: 132px;
    height: 132px;
    border: 1px solid rgba(255, 198, 26, 0.28);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 198, 26, 0.22), transparent 38%),
        rgba(0, 14, 4, 0.92);
}

.app-detail-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.app-detail-category {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.app-detail-card h1 {
    margin-top: 0.35rem;
    color: #fff1c3;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.96;
}

.app-detail-card p {
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.65;
}

.app-detail-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.app-detail-meta span {
    border: 1px solid rgba(125, 255, 32, 0.16);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.26);
    padding: 0.85rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.app-detail-meta b {
    display: block;
    margin-top: 0.3rem;
    color: #fff;
    font-size: 0.98rem;
    text-transform: none;
}

.app-install-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    margin-top: 1rem;
    border: 1px solid #a6ff35;
    border-radius: 8px;
    background: linear-gradient(180deg, #70db13, #1a7209);
    padding: 0.9rem 1rem;
    color: white;
    font-weight: 1000;
    text-transform: uppercase;
}

.app-final-download {
    min-height: 64px;
    background: linear-gradient(180deg, #8aff18, #258d0b);
    font-size: 1.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 18px 42px rgba(72, 255, 24, 0.16);
}

.app-ready-note {
    text-align: center;
}

.app-info-grid,
.app-install-guide,
.app-extra-section {
    margin-top: 1rem;
    border: 1px solid rgba(125, 255, 32, 0.22);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(7, 28, 10, 0.9), rgba(0, 5, 2, 0.96));
    padding: 1rem;
}

.app-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.app-info-grid article,
.app-install-guide article,
.app-extra-grid article {
    border: 1px solid rgba(125, 255, 32, 0.15);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.26);
    padding: 1rem;
}

.app-info-grid i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(125, 255, 32, 0.35);
    border-radius: 8px;
    color: var(--green);
    background: rgba(21, 95, 6, 0.42);
}

.app-info-grid h2,
.app-install-guide h2,
.app-extra-section h2 {
    margin: 0 0 0.75rem;
    color: #fff1c3;
    font-size: 1.25rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.app-info-grid h2 {
    margin-top: 0.75rem;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.app-info-grid p,
.app-install-guide p,
.app-extra-grid p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

.app-install-guide > div,
.app-extra-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.app-install-guide b {
    color: var(--gold);
}

.app-extra-grid img {
    width: 76px;
    height: 76px;
    border: 1px solid rgba(255, 198, 26, 0.32);
    border-radius: 12px;
    object-fit: contain;
    background: #071107;
}

.app-extra-grid h3 {
    margin: 0.75rem 0 0.35rem;
    color: white;
    font-size: 1rem;
    font-weight: 1000;
}

.app-extra-grid a {
    display: inline-flex;
    margin-top: 0.75rem;
    color: var(--green);
    font-weight: 1000;
    text-transform: uppercase;
}

.app-profile-card {
    display: grid;
    gap: 1rem;
}

.app-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    border: 1px solid rgba(125, 255, 32, 0.22);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
    padding: 0.55rem 0.75rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.app-back-link:hover {
    border-color: rgba(125, 255, 32, 0.55);
    color: var(--green);
}

.app-profile-head {
    display: grid;
    grid-template-columns: 136px minmax(0, 1fr);
    align-items: center;
    gap: 1.2rem;
}

.app-profile-icon {
    width: 136px;
    height: 136px;
}

.app-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.app-stat-row span {
    display: grid;
    place-items: center;
    min-height: 82px;
    border: 1px solid rgba(125, 255, 32, 0.18);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.28);
    text-align: center;
}

.app-stat-row b {
    color: #fff1c3;
    font-size: 1.18rem;
    font-weight: 1000;
}

.app-stat-row small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.app-bonus-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    border: 1px solid rgba(255, 198, 26, 0.34);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 198, 26, 0.14), rgba(0, 0, 0, 0.26));
    padding: 0.85rem 1rem;
}

.app-bonus-row span,
.app-bonus-row strong {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.app-bonus-row span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
}

.app-bonus-row i,
.app-bonus-row strong {
    color: var(--gold);
}

.app-bonus-row strong {
    font-size: 1.12rem;
    text-align: right;
}

.app-action-row {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
    gap: 0.75rem;
}

.app-action-row .app-install-btn,
.app-action-row .app-telegram-btn {
    margin-top: 0;
}

.app-telegram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 64px;
    border: 1px solid rgba(60, 182, 255, 0.72);
    border-radius: 8px;
    background: linear-gradient(180deg, #30a7f2, #146da6);
    padding: 0.9rem 1rem;
    color: white;
    font-size: 1rem;
    font-weight: 1000;
    text-align: center;
    text-transform: uppercase;
}

.app-content-card {
    margin-top: 1rem;
    border: 1px solid rgba(125, 255, 32, 0.22);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(7, 28, 10, 0.9), rgba(0, 5, 2, 0.96));
    padding: clamp(1rem, 3vw, 1.25rem);
}

.app-content-card h2,
.app-ready-cta h2 {
    color: #fff1c3;
    font-size: 1.3rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.app-content-card h3 {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.app-content-card p,
.app-content-card li,
.app-ready-cta p {
    margin-top: 0.65rem;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 750;
    line-height: 1.68;
}

.app-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 0.85rem;
}

.app-two-column article {
    border: 1px solid rgba(125, 255, 32, 0.15);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.24);
    padding: 1rem;
}

.app-two-column ol,
.app-two-column ul,
.app-check-list {
    margin: 0.65rem 0 0;
    padding-left: 1.2rem;
}

.app-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-game-list,
.app-faq-list,
.requirements-list {
    display: grid;
    gap: 0.7rem;
}

.related-game-card {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    border: 1px solid rgba(125, 255, 32, 0.16);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.26);
    padding: 0.75rem;
}

.related-game-card img {
    width: 68px;
    height: 68px;
    border: 1px solid rgba(255, 198, 26, 0.32);
    border-radius: 8px;
    object-fit: contain;
    background: #071107;
}

.related-game-card h3 {
    margin: 0 0 0.25rem;
    color: #fff1c3;
    font-size: 1rem;
    font-weight: 1000;
}

.related-game-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    font-weight: 800;
}

.related-game-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a6ff35;
    border-radius: 8px;
    background: linear-gradient(180deg, #70db13, #1a7209);
    padding: 0.62rem 0.8rem;
    color: white;
    font-size: 0.78rem;
    font-weight: 1000;
    text-transform: uppercase;
    white-space: nowrap;
}

.app-faq-list details {
    border: 1px solid rgba(125, 255, 32, 0.16);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.26);
    padding: 0.9rem 1rem;
}

.app-faq-list summary {
    cursor: pointer;
    color: #fff1c3;
    font-weight: 1000;
}

.app-faq-list p {
    margin-top: 0.55rem;
}

.app-notice-card {
    border-color: rgba(255, 198, 26, 0.28);
    background:
        radial-gradient(circle at 96% 0%, rgba(255, 198, 26, 0.12), transparent 18rem),
        linear-gradient(145deg, rgba(24, 18, 1, 0.72), rgba(0, 5, 2, 0.96));
}

.app-query-intro {
    max-width: 780px;
}

.app-query-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.app-query-tags span {
    border: 1px solid rgba(125, 255, 32, 0.22);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.24);
    padding: 0.62rem 0.75rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1.35;
}

.app-review-grid,
.quick-stat-grid,
.security-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.app-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.app-review-grid article,
.quick-stat-grid article,
.security-grid article {
    border: 1px solid rgba(125, 255, 32, 0.15);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.26);
    padding: 1rem;
}

.review-stars {
    color: var(--gold);
    font-size: 1.05rem;
    letter-spacing: 0;
}

.app-review-grid p {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 750;
    line-height: 1.5;
}

.app-review-grid strong,
.security-grid strong {
    display: block;
    margin-top: 0.75rem;
    color: #fff1c3;
    font-size: 0.9rem;
    font-weight: 1000;
}

.quick-stat-grid article {
    display: grid;
    place-items: center;
    min-height: 92px;
    text-align: center;
}

.quick-stat-grid strong {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 1000;
}

.quick-stat-grid span,
.security-grid span,
.requirements-list em {
    color: rgba(255, 255, 255, 0.72);
    font-style: normal;
    font-weight: 800;
}

.security-grid i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 198, 26, 0.32);
    border-radius: 8px;
    color: var(--gold);
    background: rgba(255, 198, 26, 0.08);
}

.requirements-list span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid rgba(125, 255, 32, 0.15);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.26);
    padding: 0.85rem 1rem;
}

.requirements-list b {
    color: #fff1c3;
    font-weight: 1000;
}

.app-ready-cta {
    display: grid;
    justify-items: center;
    margin-top: 1rem;
    border: 1px solid rgba(125, 255, 32, 0.32);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 0%, rgba(125, 255, 32, 0.16), transparent 20rem),
        linear-gradient(145deg, rgba(7, 28, 10, 0.96), rgba(0, 5, 2, 0.98));
    padding: clamp(1.15rem, 3vw, 1.5rem);
    text-align: center;
}

.app-ready-cta .app-install-btn {
    max-width: 520px;
}

.app-not-found {
    text-align: center;
}

.game-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0.8rem 0;
}

.game-brand {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 0.9rem;
    color: white;
}

.game-brand img {
    width: 92px;
    height: 92px;
    flex: 0 0 auto;
    object-fit: contain;
    margin: -14px 0 -18px;
    filter: drop-shadow(0 0 18px rgba(125, 255, 32, 0.35));
}

.game-brand strong,
.game-brand small {
    display: block;
}

.game-brand strong {
    color: #fff1c3;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 0.95;
}

.game-brand small {
    margin-top: 0.25rem;
    color: var(--soft);
    font-size: 0.86rem;
    font-weight: 800;
}

.game-nav-links {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.game-nav-links a {
    border: 1px solid rgba(125, 255, 32, 0.2);
    border-radius: 8px;
    background: rgba(3, 34, 8, 0.58);
    padding: 0.62rem 0.9rem;
    color: white;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.game-nav-links a:hover {
    border-color: rgba(125, 255, 32, 0.55);
    color: var(--green);
}

.game-page-head {
    border-bottom: 1px solid rgba(125, 255, 32, 0.12);
    background: rgba(0, 18, 5, 0.64);
    padding: 0.8rem 0;
}

.game-page-head-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: center;
    gap: 1rem;
    width: min(1280px, calc(100% - 1.5rem));
    margin: 0 auto;
}

.game-search-filter {
    position: relative;
    display: flex;
    align-items: center;
    width: min(620px, 100%);
    justify-self: end;
}

.game-search-filter i {
    position: absolute;
    left: 1rem;
    color: var(--gold);
    pointer-events: none;
}

.game-search-filter input {
    width: 100%;
    border: 1px solid rgba(125, 255, 32, 0.36);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.58);
    padding: 0.9rem 1rem 0.9rem 2.75rem;
    color: white;
    font-size: 0.98rem;
    font-weight: 800;
    outline: none;
}

.game-search-filter input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(125, 255, 32, 0.12);
}

.game-page-head h1 {
    color: #fff1c3;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.9rem, 3.4vw, 3.2rem);
    line-height: 0.95;
}

.game-page-head p:not(.kicker) {
    max-width: 680px;
    color: var(--soft);
    font-size: 0.88rem;
    font-weight: 700;
}

.game-list-section {
    padding: 1.5rem 1rem 3rem;
}

.game-list-wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.game-list-heading {
    margin-bottom: 1rem;
}

.game-list-heading h2 {
    color: #fff1c3;
    font-size: 1.45rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.game-list-heading p {
    margin-top: 0.25rem;
    color: var(--soft);
    font-weight: 700;
}

.game-category-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.game-category-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(125, 255, 32, 0.25);
    border-radius: 8px;
    background: rgba(0, 15, 4, 0.72);
    padding: 0.85rem;
    color: white;
}

.game-category-card i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 198, 26, 0.36);
    border-radius: 8px;
    color: var(--gold);
    background: rgba(255, 198, 26, 0.08);
}

.game-category-card strong,
.game-category-card small {
    display: block;
}

.game-category-card strong {
    color: #fff1c3;
    font-weight: 1000;
}

.game-category-card small {
    margin-top: 0.15rem;
    color: var(--soft);
    font-weight: 800;
}

.game-category-section {
    margin-top: 1.4rem;
}

.game-category-section h2 {
    margin-bottom: 0.75rem;
    color: #fff1c3;
    font-size: 1.25rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.game-category-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.game-category-row a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(125, 255, 32, 0.22);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(7, 25, 9, 0.94), rgba(0, 4, 2, 0.96));
    padding: 0.75rem;
    color: white;
}

.seo-guide-row article {
    border: 1px solid rgba(125, 255, 32, 0.22);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(7, 25, 9, 0.94), rgba(0, 4, 2, 0.96));
    padding: 0.9rem;
}

.game-category-row img {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 198, 26, 0.28);
    border-radius: 8px;
    object-fit: contain;
    background: #071107;
}

.game-category-row strong,
.game-category-row small {
    display: block;
}

.game-category-row strong {
    color: white;
    font-weight: 1000;
}

.game-category-row small {
    margin-top: 0.15rem;
    color: var(--soft);
    font-size: 0.78rem;
    font-weight: 800;
}

.game-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.store-app {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(125, 255, 32, 0.22);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(10, 24, 12, 0.96), rgba(1, 6, 3, 0.98));
    padding: 0.9rem;
    box-shadow: inset 0 0 18px rgba(125, 255, 32, 0.04);
}

.store-app-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    overflow: hidden;
    border: 1px solid rgba(255, 198, 26, 0.18);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 198, 26, 0.22), transparent 38%),
        linear-gradient(135deg, rgba(29, 72, 8, 0.9), rgba(5, 12, 7, 0.96));
}

.store-app-icon img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(125, 255, 32, 0.28));
}

.app-count-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 20px;
    border: 1px solid rgba(255, 198, 26, 0.7);
    border-radius: 999px;
    background: rgba(0, 10, 4, 0.92);
    padding: 0 0.34rem;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 1000;
    line-height: 1;
}

.store-app-info {
    min-width: 0;
}

.store-app-info h3 {
    overflow: hidden;
    color: #fff1c3;
    font-size: 1.12rem;
    font-weight: 900;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.22rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    font-weight: 800;
}

.store-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
}

.store-meta i {
    color: var(--green);
    font-size: 0.78rem;
}

.store-meta span + span::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 198, 26, 0.8);
}

.store-bonus {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.34rem;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 900;
}

.store-bonus i {
    color: var(--green);
}

.store-offers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.45rem;
}

.store-offers span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid rgba(125, 255, 32, 0.22);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.34);
    padding: 0.34rem 0.52rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.84rem;
    font-weight: 900;
}

.store-offers i {
    color: var(--gold);
}

.store-desc {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0.28rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.84rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.store-app-action {
    display: grid;
    justify-items: end;
    gap: 0.5rem;
}

.store-app-action span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid rgba(255, 198, 26, 0.22);
    border-radius: 999px;
    background: rgba(255, 198, 26, 0.08);
    padding: 0.28rem 0.55rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
}

.store-app-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    min-width: 98px;
    border: 1px solid #a6ff35;
    border-radius: 8px;
    background: linear-gradient(180deg, #70db13, #1a7209);
    padding: 0.62rem 0.85rem;
    color: white;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(100deg, rgba(0, 0, 0, 0.82), rgba(0, 30, 8, 0.46), rgba(0, 0, 0, 0.72)),
        repeating-linear-gradient(110deg, transparent 0 86px, rgba(125, 255, 32, 0.045) 87px 89px);
}

.ticker {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    border-bottom: 1px solid rgba(125, 255, 32, 0.14);
    background: rgba(4, 33, 7, 0.56);
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.ticker i,
.ticker strong {
    color: var(--gold);
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.kicker,
.hero-copy h1,
.section-title h2,
.seo-section h2,
.cta-band h2,
.game-card h3 {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0;
}

.kicker {
    color: white;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 3px 12px #000;
}

.hero-copy h1 {
    max-width: 680px;
    margin-top: 0.5rem;
    color: white;
    font-size: clamp(2.35rem, 5.6vw, 5rem);
    line-height: 0.96;
    text-transform: uppercase;
    text-shadow: 0 6px 22px #000;
}

.hero-copy h1 span {
    color: var(--gold);
}

.hero-copy h1 strong {
    display: block;
    color: var(--green);
}

.hero-text {
    margin-top: 1rem;
    max-width: 660px;
    color: var(--soft);
    font-size: 0.98rem;
    line-height: 1.65;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.65rem;
    max-width: 760px;
}

.trust-strip span {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 58px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(0, 15, 4, 0.72);
    padding: 0.7rem;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
}

.trust-strip i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border: 1px solid rgba(125, 255, 32, 0.45);
    border-radius: 8px;
    color: var(--green);
    background: rgba(21, 95, 6, 0.45);
}

.hero-copy .telegram-join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 54px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 198, 26, 0.65);
    border-radius: 8px;
    background: linear-gradient(180deg, #8aff18, #238909) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 16px 34px rgba(72, 255, 24, 0.18);
    padding: 0.78rem 1.35rem;
    color: #ffffff !important;
    font-weight: 1000;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.hero-copy .telegram-join-btn i {
    font-size: 1.35rem;
    color: #ffffff !important;
}

.hero-copy .telegram-join-btn span {
    color: #ffffff !important;
}

.hero-copy .telegram-join-btn:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 20px 40px rgba(72, 255, 24, 0.25);
}

.anchor-target {
    display: block;
    scroll-margin-top: 96px;
}

.search-box {
    display: flex;
    margin-top: 1.25rem;
    max-width: 610px;
}

.search-box input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-right: 0;
    border-radius: 8px 0 0 8px;
    background: rgba(0, 0, 0, 0.58);
    padding: 0.95rem 1rem;
    color: white;
    font-size: 1rem;
    outline: none;
}

.search-box input:focus {
    border-color: var(--green);
}

.search-box button {
    width: 62px;
    border: 1px solid rgba(125, 255, 32, 0.8);
    border-radius: 0 8px 8px 0;
    background: linear-gradient(180deg, #62cb13, #174e08);
    color: white;
    font-size: 1.35rem;
}

.phone-frame {
    position: relative;
    z-index: 2;
    width: min(300px, 72vw);
    margin: 0 auto;
    border: 9px solid #151515;
    border-radius: 42px;
    background: linear-gradient(160deg, #040404, #07260a 48%, #050505);
    padding: 3.5rem 1.35rem 2rem;
    text-align: center;
    transform: rotate(7deg);
    box-shadow: 0 0 0 2px rgba(255, 198, 26, 0.72), 0 25px 80px rgba(0, 0, 0, 0.78);
}

.phone-notch {
    position: absolute;
    left: 50%;
    top: 0.9rem;
    width: 92px;
    height: 12px;
    transform: translateX(-50%);
    border-radius: 99px;
    background: #111;
}

.phone-frame img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto;
}

.phone-frame p {
    margin-top: 1rem;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.45rem;
    line-height: 0.98;
    text-transform: uppercase;
}

.phone-frame a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.15rem;
    border-radius: 8px;
    background: linear-gradient(180deg, #73de16, #176708);
    padding: 0.85rem 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.cards {
    position: absolute;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 92px;
    height: 126px;
    border-radius: 8px;
    background: linear-gradient(145deg, #fff7d7, #d6bc75);
    color: #9d1111;
    font-family: Georgia, serif;
    font-size: 3rem;
    font-weight: 900;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.cards span {
    display: block;
    font-size: 2rem;
}

.cards-one {
    left: 4%;
    top: 8%;
    transform: rotate(-16deg);
}

.cards-two {
    left: 18%;
    top: 4%;
    color: #080808;
    transform: rotate(8deg);
}

.coin-stack {
    position: absolute;
    width: 128px;
    height: 74px;
    border-radius: 50%;
    background:
        radial-gradient(circle, #ffe988 0 22%, #ffc61a 23% 46%, #0b7712 47% 68%, #ffd65a 69% 100%);
    box-shadow: 0 18px 0 #b87a00, 0 28px 35px rgba(0, 0, 0, 0.6);
}

.stack-one {
    left: 4%;
    bottom: 16%;
}

.stack-two {
    right: 2%;
    bottom: 9%;
}

.crown {
    position: absolute;
    right: 3%;
    top: 16%;
    color: var(--gold);
    font-size: 6.5rem;
    transform: rotate(18deg);
    filter: drop-shadow(0 0 18px rgba(255, 198, 26, 0.45));
}

.section-wrap,
.features-section,
.seo-section,
.bonus-table-section,
.guide-section,
.content-depth-section,
.faq-section {
    padding: 2rem 0;
}

.section-title {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.1rem;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto 1rem;
    text-align: center;
}

.section-title span {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--green));
}

.section-title span:last-child {
    background: linear-gradient(90deg, var(--green), var(--gold), transparent);
}

.section-title h2 {
    color: #ffeab6;
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    line-height: 1;
}

.section-title p {
    color: #e3d9bd;
}

.games-shell {
    position: relative;
    width: min(1230px, calc(100% - 2rem));
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(0, 18, 5, 0.64);
    padding: 2rem 1.35rem;
}

.app-list-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 1rem;
    width: min(1230px, calc(100% - 2rem));
    margin: 0 auto 1rem;
    border: 1px solid rgba(125, 255, 32, 0.22);
    border-radius: 8px;
    background: rgba(0, 18, 5, 0.58);
    padding: 1rem;
}

.app-list-strip a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 900;
}

.app-list-strip span {
    color: #fff1c3;
}

.app-list-strip small {
    color: var(--gold);
    white-space: nowrap;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.top-featured-games-section {
    position: relative;
    overflow: hidden;
    border-block: 1px solid rgba(125, 255, 32, 0.12);
    background:
        radial-gradient(circle at 50% 48%, rgba(125, 255, 32, 0.12), transparent 26rem),
        linear-gradient(180deg, rgba(0, 13, 4, 0.94), rgba(0, 5, 2, 0.97));
    padding: 1.6rem 0 2.15rem;
}

.top-featured-games-section[hidden] {
    display: none;
}

.top-featured-games-section .section-title .kicker {
    margin-bottom: 0.2rem;
    color: var(--green);
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 1000;
    letter-spacing: 0.13em;
}

.trending-app-stage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: clamp(1rem, 6vw, 5.25rem);
    max-width: 960px;
    margin: 1.2rem auto 0;
}

.trending-app {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 252px;
    color: white;
    text-align: center;
}

.trending-rank-1 {
    order: 2;
    transform: translateY(-0.65rem);
}

.trending-rank-2 {
    order: 1;
}

.trending-rank-3 {
    order: 3;
}

.trending-rank {
    margin-bottom: 0.55rem;
    border: 1px solid rgba(125, 255, 32, 0.4);
    border-radius: 999px;
    background: rgba(125, 255, 32, 0.08);
    padding: 0.25rem 0.55rem;
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 1000;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trending-rank-1 .trending-rank {
    border-color: rgba(255, 198, 26, 0.6);
    background: rgba(255, 198, 26, 0.1);
    color: var(--gold);
}

.trending-app img {
    width: 74px;
    height: 74px;
    border-radius: 15px;
    object-fit: contain;
    background: #071107;
    box-shadow: 0 0 24px rgba(125, 255, 32, 0.22);
}

.trending-rank-1 img {
    width: 88px;
    height: 88px;
    box-shadow: 0 0 32px rgba(255, 198, 26, 0.24), 0 0 42px rgba(125, 255, 32, 0.18);
}

.trending-app h3 {
    margin-top: 0.55rem;
    color: #fff1c3;
    font-size: 1.1rem;
    font-weight: 1000;
}

.trending-rating {
    margin-top: 0.26rem;
    color: var(--gold);
    font-size: 0.86rem;
    font-weight: 900;
}

.trending-safe {
    margin-top: 0.32rem;
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 900;
}

.trending-offer {
    min-height: 1.1rem;
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.76rem;
    font-weight: 800;
}

.trending-app > a {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    margin-top: 0.55rem;
    border: 1px solid #a6ff35;
    border-radius: 7px;
    background: linear-gradient(180deg, #70db13, #1a7209);
    padding: 0.5rem 0.82rem;
    color: white;
    font-size: 0.74rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.trending-app > a i {
    color: var(--gold);
}

.game-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
    border: 1px solid rgba(125, 255, 32, 0.32);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(7, 25, 9, 0.94), rgba(0, 4, 2, 0.96));
    padding: 0.8rem;
    text-align: left;
    box-shadow: inset 0 0 22px rgba(125, 255, 32, 0.05);
}

.game-art {
    position: relative;
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 198, 26, 0.34), transparent 34%),
        linear-gradient(135deg, rgba(95, 5, 5, 0.88), rgba(3, 42, 6, 0.94));
}

.game-art i {
    color: var(--gold);
    font-size: 4.2rem;
    filter: drop-shadow(0 0 16px rgba(255, 198, 26, 0.55));
}

.game-art img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(255, 198, 26, 0.45));
}

.art-2,
.art-6 {
    background:
        radial-gradient(circle at 50% 38%, rgba(125, 255, 32, 0.28), transparent 34%),
        linear-gradient(135deg, rgba(68, 6, 105, 0.88), rgba(2, 20, 6, 0.94));
}

.art-4 {
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 45, 45, 0.28), transparent 34%),
        linear-gradient(135deg, rgba(82, 2, 2, 0.88), rgba(2, 20, 6, 0.94));
}

.game-card h3 {
    margin-top: 0;
    color: #fff1c3;
    font-size: 1.45rem;
    line-height: 1;
}

.size {
    color: rgba(255, 255, 255, 0.76);
}

.rating {
    color: var(--gold);
    font-weight: 800;
}

.bonus {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
}

.bonus.withdraw {
    margin-top: 0.1rem;
}

.card-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: auto;
    min-width: 96px;
    margin-top: 0;
    border-radius: 8px;
    padding: 0.68rem 0.45rem;
    color: white;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.slide-btn {
    display: none;
}

.prev {
    left: -20px;
}

.next {
    right: -20px;
}

.empty-apps {
    border: 1px solid rgba(255, 198, 26, 0.28);
    border-radius: 8px;
    background: rgba(20, 14, 0, 0.58);
    padding: 1rem;
    color: #fff1c3;
    font-weight: 800;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 98px;
    border-left: 1px solid rgba(125, 255, 32, 0.16);
    background: rgba(1, 31, 7, 0.65);
    padding: 1rem;
}

.feature:first-child {
    border-left: 0;
    border-radius: 8px 0 0 8px;
}

.feature:last-child {
    border-radius: 0 8px 8px 0;
}

.feature i {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 198, 26, 0.65);
    border-radius: 999px;
    color: var(--gold);
    background: radial-gradient(circle, rgba(125, 255, 32, 0.46), rgba(1, 26, 4, 0.88));
    font-size: 1.5rem;
}

.feature h2 {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.feature p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
}

.seo-section {
    color: rgba(255, 255, 255, 0.8);
}

.seo-section h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
}

.seo-section strong {
    color: var(--gold);
}

.seo-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.seo-list article,
.faq-section details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(1, 20, 6, 0.7);
    padding: 1rem;
}

.seo-list h3 {
    color: #ffeab6;
    font-weight: 900;
}

.promo-app-list article {
    min-height: 138px;
}

.promo-view-more {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 0.25rem;
}

.promo-view-more .view-more-games {
    min-width: 220px;
    border-color: rgba(255, 198, 26, 0.55);
    background: linear-gradient(180deg, #8aff18, #238909);
}

.bonus-table {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(0, 18, 5, 0.7);
}

.bonus-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr auto;
    gap: 1rem;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.95rem 1rem;
}

.bonus-row:first-child {
    border-top: 0;
}

.bonus-head {
    background: rgba(125, 255, 32, 0.1);
    color: #ffeab6;
    font-weight: 900;
    text-transform: uppercase;
}

.bonus-row span {
    color: rgba(255, 255, 255, 0.82);
}

.bonus-row strong {
    color: white;
}

.bonus-row a {
    border-radius: 8px;
    background: linear-gradient(180deg, #70db13, #1a7209);
    padding: 0.55rem 0.85rem;
    color: white;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.guide-section article:not(.blog-card) {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(1, 20, 6, 0.7);
    padding: 1.2rem;
}

.guide-section article:not(.blog-card) > i {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 198, 26, 0.65);
    border-radius: 8px;
    color: var(--gold);
    background: rgba(125, 255, 32, 0.13);
    font-size: 1.45rem;
}

.guide-section article:not(.blog-card) h2 {
    margin-top: 1rem;
    color: #ffeab6;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.guide-section article:not(.blog-card) p,
.content-depth-section p {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.content-depth-section h2 {
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    text-transform: uppercase;
}

.content-points {
    display: grid;
    gap: 0.9rem;
}

.content-points article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(1, 24, 6, 0.72);
    padding: 1rem;
}

.content-points strong,
.content-points span {
    display: block;
}

.content-points strong {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
}

.content-points span {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.75);
}

.compact {
    width: 100%;
}

.faq-section details + details {
    margin-top: 0.75rem;
}

.faq-section summary {
    cursor: pointer;
    color: #ffeab6;
    font-weight: 900;
}

.faq-section p {
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.76);
}

.universal-query-section {
    border-top: 1px solid rgba(125, 255, 32, 0.15);
    background:
        radial-gradient(circle at 50% 0%, rgba(125, 255, 32, 0.09), transparent 25rem),
        rgba(0, 9, 3, 0.72);
    padding: 2rem 0 2.5rem;
}

.universal-query-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.universal-query-list a,
.universal-query-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(125, 255, 32, 0.3);
    border-radius: 999px;
    background: rgba(7, 34, 10, 0.76);
    padding: 0.7rem 1rem;
    color: #fff1c3;
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: capitalize;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.universal-query-list i {
    color: var(--gold);
    font-size: 0.78rem;
}

.universal-query-list a:hover {
    border-color: rgba(255, 198, 26, 0.7);
    background: rgba(22, 70, 14, 0.78);
    color: var(--green);
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(1120px, calc(100% - 2rem));
    margin: 1.5rem auto;
    border: 1px solid rgba(125, 255, 32, 0.42);
    border-radius: 8px;
    background: rgba(2, 28, 8, 0.72);
    padding: 1.05rem 2rem;
}

.cta-band div {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
    align-items: center;
}

.cta-band div > i {
    grid-row: span 2;
    color: var(--green);
    font-size: 2rem;
}

.cta-band h2 {
    color: white;
    font-size: 2rem;
    line-height: 1;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.78);
}

.cta-band a {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border-radius: 8px;
    padding: 0.9rem 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

footer {
    border-top: 1px solid rgba(125, 255, 32, 0.14);
    padding: 1.75rem 1rem 2rem;
    color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: min(980px, 100%);
    margin: 0 auto;
}

.footer-grid div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.footer-grid b {
    display: block;
    width: 100%;
    color: #fff1c3;
    font-size: 0.96rem;
    text-transform: uppercase;
}

.footer-grid a {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--green);
    text-decoration: none;
}

.footer-copy {
    margin-top: 1.25rem;
    text-align: center;
}

.hidden-card {
    display: none;
}

@media (max-width: 1120px) {
    .nav-links {
        gap: 0.7rem;
        font-size: 0.72rem;
    }

    .download-top {
        display: none;
    }

    .features-section .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bonus-row {
        grid-template-columns: 1fr 1fr;
    }

    .bonus-head {
        display: none;
    }

    .feature,
    .feature:first-child,
    .feature:last-child {
        border: 1px solid rgba(125, 255, 32, 0.16);
        border-radius: 8px;
    }
}

@media (max-width: 980px) {
    body.menu-open {
        overflow: hidden;
    }

    .game-site-header {
        min-height: 0;
    }

    .game-site-header .brand {
        display: flex;
        align-items: center;
        height: 58px;
    }

    .site-header nav,
    .game-header-nav {
        width: 100%;
        display: grid;
        grid-template-columns: auto 44px;
        align-items: center;
        gap: 0.75rem;
        min-height: 58px;
        padding: 0 0.75rem;
    }

    .game-site-header .game-header-nav {
        min-height: 0;
        padding: 0 0.55rem;
    }

    .menu-toggle {
        display: grid;
        justify-self: end;
    }

    .brand img {
        width: 58px;
        height: 58px;
        margin: 0;
    }

    .game-site-header .brand img { width: 58px; height: 58px; margin: 0; }
    .game-site-header .menu-toggle { width: 40px; height: 40px; margin: 0; }

    .nav-links {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 80;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        width: min(78vw, 290px);
        height: 100vh;
        border-right: 1px solid var(--line);
        background: rgba(0, 0, 0, 0.96);
        padding: 5.5rem 1rem 1rem;
        box-shadow: 18px 0 44px rgba(0, 0, 0, 0.42);
        transform: translateX(-104%);
        transition: transform 0.22s ease;
    }

    .nav-links a {
        border-bottom: 1px solid rgba(125, 255, 32, 0.12);
        padding: 0.82rem 0.25rem;
        font-size: 0.96rem;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .site-header .download-top {
        display: none;
    }

    .game-header-links {
        font-size: 0.92rem;
    }

    .trust-strip,
    .app-info-grid,
    .app-install-guide > div,
    .app-extra-grid,
    .app-stat-row,
    .app-action-row,
    .quick-stat-grid,
    .security-grid,
    .seo-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bonus-row {
        gap: 0.55rem;
    }

    .cards {
        width: 72px;
        height: 98px;
        font-size: 2.2rem;
    }

    .crown {
        font-size: 4.5rem;
    }

    .cta-band {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-band a {
        justify-content: center;
    }

    .game-nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .game-nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.2rem;
    }

    .game-nav-links a {
        white-space: nowrap;
    }

    .page-content-grid {
        grid-template-columns: 1fr;
    }

    .support-layout-grid {
        grid-template-columns: 1fr;
    }

    .page-feature-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-related-apps {
        grid-template-columns: 1fr;
    }

    .bonus-share-grid {
        grid-template-columns: 1fr;
    }

    .promotion-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 761px) {
    .install-app-prompt {
        display: none !important;
    }
}

@media (max-width: 460px) {
    .install-app-prompt {
        grid-template-columns: 46px minmax(0, 1fr) auto 30px;
        gap: 0.48rem;
        padding: 0.55rem;
    }

    .install-app-prompt img {
        width: 46px;
        height: 46px;
    }

    .install-app-action {
        padding: 0.5rem 0.65rem;
    }

    .install-app-close {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 980px) {
    .latest-blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.8rem;
    }

    .latest-blog-grid .blog-card {
        min-height: 500px;
    }

    .latest-blog-grid .blog-card > div {
        padding: 1rem;
    }

    .latest-blog-grid .blog-card h3 {
        font-size: 1.08rem;
    }

    .latest-blog-grid .blog-card p:not(.blog-date) {
        font-size: 0.9rem;
    }
}

@media (max-width: 760px) {
    .trending-app-stage {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.25rem;
        margin-top: 0.85rem;
    }

    .trending-rank-1,
    .trending-rank-2,
    .trending-rank-3 {
        order: initial;
        transform: none;
    }

    .trending-app {
        min-height: 228px;
    }

    .trending-app h3 {
        font-size: 0.74rem;
    }

    .trending-offer {
        display: none;
    }

    .trending-app > a {
        padding: 0.44rem 0.44rem;
        font-size: 0.66rem;
    }

    .game-page-head-inner {
        grid-template-columns: 1fr;
    }

    .game-search-filter {
        justify-self: stretch;
    }

    .game-category-strip,
    .game-category-row {
        grid-template-columns: 1fr;
    }

    .latest-blog-grid {
        grid-template-columns: 1fr;
    }

    .latest-blog-grid .blog-card {
        min-height: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-grid div {
        align-items: center;
    }
}

@media (max-width: 560px) {
    .ticker {
        justify-content: flex-start;
        font-size: 0.9rem;
    }

    .hero-copy h1 {
        font-size: 2.65rem;
    }

    .trust-strip,
    .app-info-grid,
    .app-install-guide > div,
    .app-extra-grid,
    .app-stat-row,
    .app-action-row,
    .app-two-column,
    .app-review-grid,
    .quick-stat-grid,
    .security-grid,
    .game-list,
    .app-list-strip,
    .seo-list,
    .features-section .grid {
        grid-template-columns: 1fr;
    }

    .game-card {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 0.75rem;
    }

    .game-art {
        width: 68px;
        height: 68px;
    }

    .game-art img {
        width: 48px;
        height: 48px;
    }

    .game-actions {
        grid-column: 1 / -1;
    }

    .card-download {
        width: 100%;
    }

    .page-hero-card {
        grid-template-columns: 1fr;
    }

    .store-app {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 0.75rem;
        padding: 0.72rem;
    }

    .store-app-icon {
        width: 72px;
        height: 72px;
    }

    .store-app-icon img {
        width: 52px;
        height: 52px;
    }

    .store-app-action {
        grid-column: 1 / -1;
        grid-template-columns: auto 1fr;
        align-items: center;
        justify-items: stretch;
    }

    .store-app-action a {
        width: 100%;
    }

    .app-detail-page {
        min-height: auto;
        width: 100%;
        padding: 0;
    }

    .app-detail-hero,
    .app-detail-meta,
    .app-profile-head,
    .related-game-card {
        grid-template-columns: 1fr;
    }

    .app-profile-card {
        gap: 0.85rem;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        padding: 0.75rem;
    }

    .app-profile-head {
        justify-items: center;
        text-align: center;
    }

    .app-detail-card h1 {
        font-size: 2.65rem;
    }

    .app-detail-card p {
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .app-action-row {
        gap: 0.65rem;
    }

    .app-final-download,
    .app-telegram-btn {
        min-height: 58px;
        padding: 0.8rem 0.85rem;
        font-size: 0.98rem;
        line-height: 1.2;
    }

    .app-stat-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.45rem;
    }

    .app-stat-row span {
        min-height: 72px;
        padding: 0.45rem 0.25rem;
    }

    .app-stat-row b {
        font-size: 1rem;
    }

    .app-stat-row small {
        font-size: 0.64rem;
    }

    .app-bonus-row {
        padding: 0.78rem 0.85rem;
    }

    .related-game-card a {
        width: 100%;
    }

    .requirements-list span {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }

    .app-detail-icon {
        width: 112px;
        height: 112px;
    }

    .app-detail-icon img {
        width: 86px;
        height: 86px;
    }

    .game-brand img {
        width: 76px;
        height: 76px;
        margin: -10px 0 -14px;
    }

    .game-brand strong {
        font-size: 1.55rem;
    }

    .game-brand small {
        font-size: 0.76rem;
    }

    .bonus-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .section-title span {
        display: none;
    }

    .games-shell {
        padding: 1rem;
    }

    .slide-btn {
        display: none;
    }

    .phone-frame {
        transform: rotate(3deg);
    }

    .coin-stack {
        width: 92px;
        height: 52px;
    }

    .cta-band {
        padding: 1rem;
    }
}
