@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --c-header: #037ce1;
    --c-header-dark: #0264b8;
    --c-btn-yellow: #ffed77;
    --c-btn-yellow-hover: #ffe44a;
    --c-btn-pink: #ff018b;
    --c-btn-pink-hover: #d4006e;
    --c-bg: #00c2ff;
    --c-bg-dark: #0099cc;
    --c-white: #ffffff;
    --c-text-dark: #0a1628;
    --c-text-light: #e8f4ff;
    --c-card-bg: rgba(255,255,255,0.12);
    --c-card-border: rgba(255,255,255,0.22);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 4px 24px rgba(0,0,0,0.18);
    --shadow-btn: 0 2px 12px rgba(0,0,0,0.22);
    --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', 'IntroLight', Arial, sans-serif;
    background: var(--c-bg);
    color: var(--c-text-dark);
    line-height: 1.55;
    min-height: 100vh;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-btn-yellow); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-btn-yellow-hover); }

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

.container--fluid { max-width: 100%; padding: 0; }

.header.box {
    background: var(--c-header);
    box-shadow: 0 2px 18px rgba(0,0,0,0.22);
    position: sticky;
    top: 0;
    z-index: 900;
    width: 100%;
}


.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 64px;
    flex-wrap: nowrap;
}

.hdr-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.hdr-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.hdr-logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--c-btn-yellow);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}

.hdr-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.hdr-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--c-text-light);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.hdr-nav a:hover { background: rgba(255,255,255,0.12); color: var(--c-btn-yellow); }

.hdr-nav svg { width: 16px; height: 16px; flex-shrink: 0; }

.hdr-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-btn);
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.28); }
.btn:active { transform: translateY(0); }

.btn--yellow {
    background: var(--c-btn-yellow);
    color: #1a1200 !important;
}
.btn--yellow:hover { background: var(--c-btn-yellow-hover); color: #1a1200; }

.btn--pink {
    background: var(--c-btn-pink);
    color: var(--c-white);
}
.btn--pink:hover { background: var(--c-btn-pink-hover); color: var(--c-white); }

.btn--blue {
    background: var(--c-header);
    color: var(--c-white);
}
.btn--blue:hover { background: var(--c-header-dark); color: var(--c-white); }

.btn--outline {
    background: transparent;
    border: 2px solid var(--c-btn-yellow);
    color: var(--c-btn-yellow);
}
.btn--outline:hover { background: var(--c-btn-yellow); color: #1a1200; }

.btn--lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn--sm { padding: 5px 11px; font-size: 0.8rem; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.burger-wrap { display: none; align-items: center; }
.burger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.burger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--c-white);
    border-radius: 2px;
    transition: transform 0.28s, opacity 0.2s;
}
.burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--c-header-dark);
    z-index: 850;
    flex-direction: column;
    padding: 24px 18px;
    gap: 6px;
    overflow-y: auto;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text-light);
    font-size: 1.05rem;
    font-weight: 500;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: var(--c-btn-yellow); }
.mobile-menu svg { width: 20px; height: 20px; }

.mobile-menu-btns {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.14);
}
.mobile-menu-btns .btn { flex: 1; justify-content: center; }

.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #003d7a 0%, #0052a3 40%, #037ce1 70%, #00c2ff 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/balloon-hero-img.webp');
    background-size: cover;
    background-position: center top;
    opacity: 0.55;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3,124,225,0.88) 0%, rgba(3,124,225,0.55) 50%, rgba(0,194,255,0.28) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
    padding: 60px 18px 60px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,237,119,0.18);
    border: 1px solid rgba(255,237,119,0.4);
    color: var(--c-btn-yellow);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

.hero-h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--c-white);
    line-height: 1.15;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
    margin-bottom: 14px;
}

.hero-h1 span { color: var(--c-btn-yellow); }

.hero-intro {
    color: var(--c-text-light);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 540px;
}

.hero-spoiler-toggle {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    transition: background var(--transition);
    font-family: inherit;
}

.hero-spoiler-toggle:hover { background: rgba(255,255,255,0.1); }

.hero-spoiler-content {
    display: none;
    color: var(--c-text-light);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 540px;
    background: rgba(0,0,0,0.18);
    border-left: 3px solid var(--c-btn-yellow);
    padding: 12px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.hero-spoiler-content.open { display: block; animation: fadeIn 0.3s; }

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-float {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: floatBalloon 3.5s ease-in-out infinite;
}

.hero-multiplier {
    background: rgba(255,237,119,0.92);
    color: #1a1200;
    font-size: 2.2rem;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 30px rgba(255,237,119,0.5);
    letter-spacing: 1px;
}

.hero-balloon-svg { width: 120px; height: auto; filter: drop-shadow(0 8px 30px rgba(255,1,139,0.5)); }

.breadcrumbs-wrap {
    background: rgba(0,0,0,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.breadcrumbs a {
    color: var(--c-text-light);
    opacity: 0.75;
    transition: opacity var(--transition);
}
.breadcrumbs a:hover { opacity: 1; color: var(--c-btn-yellow); }

.breadcrumbs .sep {
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
}

.breadcrumbs .current {
    color: var(--c-btn-yellow);
    font-weight: 600;
}

.content.box { padding: 32px 0 0; }

.section-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--c-white);
    margin-bottom: 6px;
    line-height: 1.25;
}

.section-subtitle {
    color: var(--c-text-light);
    opacity: 0.8;
    font-size: 0.97rem;
    margin-bottom: 24px;
    line-height: 1.55;
}

.bl-card {
    background: var(--c-card-bg);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition);
}

.bl-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.22); }

.bl-card--accent {
    border-color: rgba(255,237,119,0.35);
    background: linear-gradient(135deg, rgba(3,124,225,0.35) 0%, rgba(0,194,255,0.18) 100%);
}

.game-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.game-tabs {
    display: flex;
    gap: 6px;
    background: rgba(0,0,0,0.18);
    padding: 4px;
    border-radius: var(--radius-sm);
}

.game-tab {
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--c-text-light);
    transition: background var(--transition), color var(--transition);
    font-family: inherit;
}

.game-tab.active {
    background: var(--c-btn-yellow);
    color: #1a1200;
}

.iframe-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-md);
    background: #001a33;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}

.iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-md);
}

.iframe-money-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,10,30,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: var(--radius-md);
    z-index: 5;
    display: none;
}

.iframe-money-overlay.visible { display: flex; }

.game-cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
    justify-content: center;
}

.app-block-inner {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.phone-frame-wrap {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
}

.phone-frame {
    position: relative;
    width: 200px;
}

.phone-frame-outer {
    width: 200px;
    height: 400px;
    background: #0a1628;
    border-radius: 36px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.45), inset 0 0 0 2px rgba(255,255,255,0.12);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.2);
}

.phone-frame-outer::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: rgba(255,255,255,0.18);
    border-radius: 50px;
    z-index: 2;
}

.phone-frame-outer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 33px;
}

.app-info { flex: 1; min-width: 260px; }

.app-table-wrap { overflow-x: auto; }

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    color: var(--c-text-light);
}

.app-table tr { border-bottom: 1px solid rgba(255,255,255,0.1); }
.app-table tr:last-child { border-bottom: none; }

.app-table td {
    padding: 9px 12px;
    line-height: 1.45;
    vertical-align: top;
}

.app-table td:first-child {
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    white-space: nowrap;
    padding-left: 0;
    min-width: 140px;
}

.app-table td:last-child {
    font-weight: 500;
    color: var(--c-white);
}

.app-dl-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--c-white);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
    text-decoration: none;
}

.btn-store:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); color: var(--c-white); }
.btn-store svg { width: 22px; height: 22px; flex-shrink: 0; }

.btn-store--apk {
    background: rgba(255,237,119,0.15);
    border-color: rgba(255,237,119,0.35);
    color: var(--c-btn-yellow);
}
.btn-store--apk:hover { background: rgba(255,237,119,0.25); color: var(--c-btn-yellow); }

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.review-avatar {
    min-width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--c-header);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-btn-yellow);
    flex-shrink: 0;
    border: 2px solid rgba(255,237,119,0.4);
}

.review-author-info .name {
    font-weight: 700;
    color: var(--c-white);
    font-size: 1rem;
}

.review-author-info .role {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
    margin-top: 2px;
}

.review-author-info .role a {
    color: var(--c-btn-yellow);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.review-content-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--c-btn-yellow);
    margin: 22px 0 10px;
    line-height: 1.3;
}

.review-content-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-white);
    margin: 18px 0 8px;
}

.review-content-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text-light);
    margin: 14px 0 6px;
}

.review-content-body p {
    color: var(--c-text-light);
    margin-bottom: 14px;
    line-height: 1.7;
    font-size: 0.97rem;
}

.review-content-body ul,
.review-content-body ol {
    margin: 0 0 14px 20px;
    color: var(--c-text-light);
    line-height: 1.7;
    font-size: 0.97rem;
}

.review-content-body li { margin-bottom: 5px; }

.review-content-body a {
    color: var(--c-btn-yellow);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.review-content-body strong { color: var(--c-white); font-weight: 700; }

.review-content-body em { font-style: italic; }

.review-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.9rem;
    overflow-x: auto;
    display: block;
}

.review-content-body table th {
    background: rgba(3,124,225,0.5);
    color: var(--c-white);
    font-weight: 700;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.2);
}

.review-content-body table td {
    padding: 9px 14px;
    color: var(--c-text-light);
    border: 1px solid rgba(255,255,255,0.12);
}

.review-content-body table tr:nth-child(even) td {
    background: rgba(255,255,255,0.04);
}

.review-content-body blockquote {
    border-left: 3px solid var(--c-btn-yellow);
    margin: 14px 0;
    padding: 10px 16px;
    background: rgba(255,237,119,0.07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-light);
    font-size: 0.97rem;
    line-height: 1.7;
}

.review-content-body img { border-radius: var(--radius-sm); margin: 12px 0; }

.review-content-body hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin: 20px 0;
}

.games-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.game-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-md);
    padding: 18px;
    flex: 1 1 180px;
    min-width: 160px;
    max-width: 220px;
    text-align: center;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    cursor: default;
}

.game-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.16); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }

.game-card-logo {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    margin: 0 auto 10px;
    background: rgba(3,124,225,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 1px solid rgba(255,255,255,0.15);
    overflow: hidden;
}

.game-card-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }

.game-card-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 5px;
}

.game-card-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    line-height: 1.5;
    min-height: 40px;
}

.game-card-btns { display: flex; gap: 6px; justify-content: center; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(255,237,119,0.4); }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    color: var(--c-white);
    font-weight: 600;
    font-size: 0.97rem;
    transition: background var(--transition);
}

.faq-q:hover { background: rgba(255,255,255,0.06); }

.faq-q .faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,237,119,0.15);
    border: 1px solid rgba(255,237,119,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.28s, background 0.2s;
}

.faq-item.open .faq-q .faq-icon { transform: rotate(180deg); background: var(--c-btn-yellow); }

.faq-icon svg { width: 14px; height: 14px; fill: none; stroke: var(--c-btn-yellow); stroke-width: 2.5; }
.faq-item.open .faq-icon svg { stroke: #1a1200; }

.faq-a {
    display: none;
    padding: 0 20px 16px;
    color: var(--c-text-light);
    font-size: 0.93rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 14px;
}

.faq-item.open .faq-a { display: block; animation: fadeIn 0.25s; }

.footer-wrap {
    background: var(--c-header);
    margin-top: 40px;
    border-top: 2px solid rgba(255,255,255,0.12);
}

.footer-inner {
    padding: 40px 18px 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 24px;
}

.footer-col { flex: 1; min-width: 180px; }

.footer-logo-block { flex: 0 0 auto; }
.footer-logo{ display: flex;width: fit-content; }

.footer-logo img { height: 48px; width: auto; object-fit: contain; margin-bottom: 10px; }

.footer-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--c-btn-yellow);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    max-width: 200px;
}

.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--c-btn-yellow); }

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
}

.social-link:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; fill: var(--c-white); }

.footer-trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 18px;
}

.trust-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.footer-payments {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 18px;
}

.pay-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.3px;
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
}

.footer-provider img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: 0.55; }

.footer-legal {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 18px;
    margin-top: 8px;
}

.footer-legal p { margin-bottom: 6px; }

.footer-legal a { color: rgba(255,255,255,0.55); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: var(--c-btn-yellow); }

.copyright {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.info-content {
    padding: 40px 0 60px;
}

.info-content h1 {
    color: var(--c-white);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.25;
}

.info-content h2 {
    color: var(--c-btn-yellow);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 24px 0 10px;
}

.info-content p {
    color: var(--c-text-light);
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 0.97rem;
}

.info-content ul, .info-content ol {
    margin: 0 0 14px 20px;
    color: var(--c-text-light);
    line-height: 1.75;
    font-size: 0.97rem;
}

.info-content li { margin-bottom: 6px; }

.info-content a { color: var(--c-btn-yellow); text-decoration: underline; }

.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatBalloon {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 18px)); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,237,119,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(255,237,119,0); }
}

.btn--pulse { animation: pulse 2s infinite; }

.fade-in-up { animation: fadeIn 0.5s both; }

.wp-block-spacer { height: 1px; display: none; }
.alignnone { display: none; }
.wp-caption { display: none; }
.elementor-hidden { display: none; visibility: hidden; position: absolute; width: 0; height: 0; overflow: hidden; }
#wpadminbar { display: none !important; }

@media (max-width: 900px) {
    .hdr-nav { display: none; }
    .burger-wrap { display: flex; }
    .hero-float { display: none; }

    .app-block-inner { flex-direction: column; align-items: center; }
    .phone-frame-wrap { flex: none; }

    .footer-top { gap: 20px; }

    .games-grid { gap: 12px; }
    .game-card { flex: 1 1 140px; max-width: none; }
}

@media (max-width: 600px) {
    .hero-content { padding: 40px 0; }
    .hero-h1 { font-size: 1.7rem; }
    .hero-btns { gap: 8px; }
    .hero-btns .btn--lg { padding: 11px 20px; font-size: 0.92rem; }
    .hdr-logo-text { font-size: 1.05rem; }
    .hdr-actions .btn { font-size: 0.78rem; padding: 7px 11px; }
    .bl-card { padding: 18px 14px; }
    .section-title { font-size: 1.2rem; }
    .game-card { flex: 1 1 120px; }
    .game-card-desc { display: none; }
    .footer-trust { gap: 8px; }
    .trust-badge { font-size: 0.72rem; padding: 5px 9px; }
    .app-dl-btns { flex-direction: column; }
    .btn-store { width: 100%; }
}

@media (max-width: 420px) {
    .hdr-actions .btn--yellow {display: none;} 
}
.xjk-wrapper { display: none; }
.n7b2-column { visibility: hidden; position: absolute; }
.k9m4-post-thumbnail { display: none; }
.q3r8-entry-content { display: none; }
