/* Design Tokens */
:root {
	--color-maroon: #5a0032;
	--color-yellow: #ffd400;
	--color-green: #00c853;
	--color-text: #111827;
	--color-muted: #64748b;
	--color-border: #e5e7eb;
	--color-bg: #f8fafc;
	--color-card: #ffffff;
	--shadow-card: 0 18px 40px rgba(15, 23, 42, 0.10);
	--shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.07);
	--radius-card: 24px;
	--radius-button: 14px;
	--container: 1120px;
	--content: 960px;
	--header-mobile: 64px;
	--header-desktop: 76px;
}

/* Base */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	min-width: 0;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #ffffff;
	color: var(--color-text);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
	padding-bottom: 0;
}

img,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--color-maroon);
	text-decoration: none;
}

a:hover {
	color: #3b0021;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(0, 200, 83, 0.35);
	outline-offset: 3px;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	font-size: clamp(32px, 8vw, 56px);
	line-height: 1.08;
	letter-spacing: 0;
	font-weight: 900;
}

h2 {
	font-size: clamp(28px, 5vw, 42px);
	line-height: 1.15;
	letter-spacing: 0;
	font-weight: 900;
}

h3 {
	font-size: 20px;
	line-height: 1.28;
	letter-spacing: 0;
	font-weight: 900;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

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

.container.narrow,
.narrow {
	max-width: var(--content);
}

.center {
	text-align: center;
}

.section {
	padding: 64px 0;
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.section-heading p,
.split-heading p {
	color: var(--color-muted);
}

.split-heading {
	display: grid;
	gap: 12px;
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	color: var(--color-maroon);
	font-size: 14px;
	font-weight: 900;
}

.eyebrow::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--color-yellow);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: #ffffff;
	border-bottom: 1px solid var(--color-border);
	transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-mobile);
	gap: 18px;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	width: 105px;
	min-width: 0;
}

.site-logo img,
.custom-logo,
.custom-logo-link img,
.site-branding img {
	width: 105px;
	max-width: 105px;
	max-height: 42px;
	object-fit: contain;
}

.site-nav {
	display: none;
}

.site-nav__list,
.mobile-menu__list {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-nav__list {
	align-items: center;
	gap: 2px;
}

.site-nav a,
.mobile-menu a {
	display: block;
	color: #334155;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}

.site-nav a {
	padding: 16px 11px;
	border-radius: 12px;
}

.site-nav .current-menu-item > a,
.mobile-menu .current-menu-item > a {
	color: var(--color-green);
}

.mobile-menu-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: 14px;
	background: #ffffff;
	cursor: pointer;
	gap: 5px;
}

.mobile-menu-toggle span:not(.screen-reader-text) {
	width: 21px;
	height: 2px;
	margin-inline: auto;
	border-radius: 999px;
	background: var(--color-maroon);
}

.mobile-menu {
	display: none;
	width: 100%;
	padding: 8px 20px 18px;
	background: #ffffff;
	border-top: 1px solid var(--color-border);
	box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.mobile-menu.is-open {
	display: block;
}

.mobile-menu__list,
.mobile-menu .site-nav__list {
	flex-direction: column;
	gap: 0;
}

.mobile-menu a {
	padding: 16px 20px;
	border-radius: 14px;
}

.mobile-menu a:hover {
	background: var(--color-bg);
}

/* Buttons And Cards */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 0 28px;
	border: 1px solid transparent;
	border-radius: var(--radius-button);
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn-primary {
	background: var(--color-maroon);
	color: var(--color-yellow);
	box-shadow: 0 14px 26px rgba(90, 0, 50, 0.18);
}

.btn-primary:hover {
	background: #430026;
	color: var(--color-yellow);
}

.btn-secondary {
	background: var(--color-maroon);
	color: var(--color-yellow);
}

.btn-light {
	background: #ffffff;
	color: var(--color-maroon);
	border-color: var(--color-border);
}

.card {
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-soft);
}

/* Homepage Hero */
.hero {
	background: #ffffff;
	padding: 58px 0 70px;
}

.hero-inner {
	display: grid;
	gap: 36px;
	align-items: center;
}

.hero-content {
	text-align: center;
}

.hero-content h1 {
	max-width: 860px;
	margin: 0 auto 20px;
	color: var(--color-text);
}

.hero-content h1::first-letter {
	color: var(--color-maroon);
}

.hero-content p:not(.eyebrow) {
	max-width: 760px;
	margin: 0 auto;
	color: var(--color-muted);
	font-size: 17px;
}

.hero-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	width: min(100%, 320px);
	margin: 30px auto 18px;
}

.hero-notes {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 14px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.hero-notes li {
	position: relative;
	padding-left: 22px;
	color: #475569;
	font-size: 14px;
	font-weight: 800;
}

.hero-notes li::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--color-yellow);
	box-shadow: inset 0 0 0 3px #fff;
}

.hero-visual {
	display: flex;
	justify-content: center;
}

.hero-phone {
	position: relative;
	width: min(100%, 330px);
	min-height: 350px;
	padding: 22px;
	border: 1px solid var(--color-border);
	border-radius: 28px;
	background: var(--color-bg);
	box-shadow: var(--shadow-card);
	overflow: hidden;
}

.hero-phone-art {
	position: absolute;
	right: 10px;
	bottom: 2px;
	width: 48%;
	opacity: 0.62;
}

.phone-card,
.phone-badge,
.payment-tags {
	position: relative;
	z-index: 1;
}

.phone-card--app {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 14px;
	align-items: center;
	padding: 16px;
	border: 1px solid var(--color-border);
	border-radius: 22px;
	background: #ffffff;
}

.phone-card--app img {
	width: 60px;
	height: 60px;
}

.phone-card--app strong {
	display: block;
	color: var(--color-maroon);
	font-size: 24px;
	line-height: 1;
}

.phone-card--app span {
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 700;
}

.phone-card--games {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: 16px;
}

.phone-card--games span,
.payment-tags span,
.phone-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border-radius: 14px;
	font-size: 12px;
	font-weight: 900;
}

.phone-card--games span {
	background: #fff8d6;
	color: var(--color-maroon);
}

.phone-badge--bonus {
	width: max-content;
	margin-top: 18px;
	padding: 0 14px;
	background: var(--color-maroon);
	color: var(--color-yellow);
}

.phone-badge--age {
	position: absolute;
	right: 22px;
	top: 150px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--color-yellow);
	color: var(--color-maroon);
	font-size: 18px;
}

.payment-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 42px;
}

.payment-tags span {
	padding: 0 12px;
	background: #ffffff;
	color: #334155;
	border: 1px solid var(--color-border);
}

/* Homepage Sections */
.quick-access-grid,
.feature-grid,
.game-grid,
.bonus-grid,
.payment-grid,
.steps-grid,
.review-grid,
.blog-grid,
.version-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.quick-card,
.feature-card,
.game-card,
.bonus-card,
.payment-card,
.step-card,
.review-card {
	padding: 28px;
}

.feature-section,
.games-section,
.bonus-section,
.reviews-section,
.brand-article-section {
	background: #ffffff;
}

.steps-section,
.app-section,
.payment-section,
.faq-section {
	background: var(--color-bg);
}

.home .site-main {
	background: var(--color-bg);
}

.home .hero {
	background: #ffffff;
	border-bottom: 1px solid var(--color-border);
}

.home .feature-section,
.home .games-section,
.home .bonus-section,
.home .reviews-section {
	background: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
}

.home .steps-section,
.home .app-section,
.home .payment-section,
.home .brand-article-section,
.home .faq-section {
	background: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
}

.home .responsible-section {
	background: #fffdf0;
	border-block: 1px solid #fde68a;
}

.home .feature-card,
.home .game-card,
.home .bonus-card,
.home .payment-card,
.home .review-card {
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.home .step-card {
	background: #ffffff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.feature-card {
	min-height: 210px;
}

.feature-card h3,
.bonus-card h3,
.review-card strong {
	color: var(--color-maroon);
}

.feature-card p,
.bonus-card p,
.review-card p,
.game-card p,
.step-card p {
	margin-bottom: 0;
	color: var(--color-muted);
}

.review-card {
	display: grid;
	gap: 18px;
	min-height: 230px;
}

.review-card__header {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.review-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--color-maroon);
	color: var(--color-yellow);
	font-size: 16px;
	font-weight: 900;
	box-shadow: inset 0 0 0 4px #fff8d6;
}

.review-card__header strong {
	display: block;
	color: var(--color-text);
	line-height: 1.2;
}

.review-stars {
	display: inline-flex;
	gap: 3px;
	margin-top: 5px;
	color: var(--color-yellow);
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0;
	text-shadow: 0 1px 0 rgba(90, 0, 50, 0.12);
}

.review-card p {
	position: relative;
	padding-top: 4px;
	font-size: 15px;
	line-height: 1.7;
}

.game-card {
	display: grid;
	gap: 14px;
	min-height: 180px;
	text-align: center;
}

.game-card img {
	width: 70px;
	height: 70px;
	margin: 0 auto;
}

.bonus-card {
	box-shadow: none;
}

.bonus-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	border-radius: 50%;
	background: #fff8d6;
	color: var(--color-maroon);
	font-weight: 900;
}

.payment-layout {
	display: grid;
	gap: 34px;
	align-items: start;
}

.payment-layout > div:first-child {
	text-align: center;
}

.payment-layout > div:first-child p {
	color: var(--color-muted);
}

.payment-card {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	padding: 22px;
	box-shadow: none;
}

.payment-card img {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.payment-card h3 {
	min-width: 0;
	margin: 0;
	font-size: 17px;
	line-height: 1.25;
	overflow-wrap: anywhere;
	word-break: normal;
}

.step-card {
	padding: 44px 28px;
	text-align: center;
	box-shadow: none;
}

.step-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: #eef2f7;
	color: var(--color-yellow);
	font-size: 28px;
	font-weight: 900;
}

.download-panel {
	display: grid;
	gap: 28px;
	align-items: center;
	padding: 34px;
	border-radius: 28px;
	background: #ffffff;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
}

.download-panel h2 {
	color: var(--color-text);
}

.download-panel p {
	color: var(--color-muted);
}

.app-info-card {
	display: grid;
	gap: 20px;
	padding: 28px;
	border-radius: var(--radius-card);
	background: #ffffff;
	color: var(--color-text);
	box-shadow: var(--shadow-soft);
}

.app-info-card img {
	width: 92px;
	height: 92px;
	margin: 0 auto;
}

.app-info-card--wide {
	max-width: 960px;
	margin: 0 auto;
	padding: 28px;
}

.info-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
}

.info-table th,
.info-table td {
	display: block;
	padding: 13px 0;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
	vertical-align: top;
}

.info-table th {
	color: var(--color-muted);
	font-weight: 900;
}

.info-table td {
	color: var(--color-text);
	font-weight: 800;
}

.notice,
.safety-box {
	padding: 24px;
	border: 1px solid #bbf7d0;
	border-radius: var(--radius-card);
	background: #f0fdf4;
	color: var(--color-text);
}

.safety-box {
	max-width: 960px;
	margin: 28px auto 0;
}

.notice-large {
	display: grid;
	gap: 16px;
	background: #fff8d6;
	border-color: #fde68a;
}

.notice-large ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 22px;
}

.brand-article {
	padding: 32px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-card);
	background: #ffffff;
	box-shadow: var(--shadow-card);
}

/* Pages */
.page-hero {
	padding: 56px 0;
	background: var(--color-bg);
	text-align: center;
	border-bottom: 1px solid var(--color-border);
}

.page-hero p {
	max-width: 760px;
	margin-inline: auto;
	color: var(--color-muted);
	font-size: 17px;
}

.full-hero {
	padding: 64px 20px;
	background: var(--color-maroon);
	color: #ffffff;
	border-bottom: 0;
}

.full-hero h1 {
	margin-bottom: 18px;
	color: #ffffff;
}

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

.full-hero p {
	color: rgba(255, 255, 255, 0.86);
	font-size: 17px;
}

.download-hero {
	padding: 56px 20px;
	background: var(--color-bg);
}

.page-app-icon {
	width: 96px;
	height: 96px;
	margin: 0 auto 28px;
	padding: 12px;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: var(--shadow-card);
}

.download-version {
	font-size: 16px;
	font-weight: 800;
}

.download-note {
	margin-top: 18px;
	font-size: 14px !important;
}

.download-steps-section {
	background: #ffffff;
}

.app-info-section {
	background: var(--color-bg);
}

.version-grid {
	margin-bottom: 28px;
}

.version-card {
	padding: 28px;
}

.version-card > span {
	display: inline-flex;
	padding: 7px 12px;
	margin-bottom: 16px;
	border-radius: 999px;
	background: #fff8d6;
	color: var(--color-maroon);
	font-weight: 900;
}

.version-card dl,
.contact-info dl {
	display: grid;
	gap: 22px;
	margin: 0;
}

.version-card div {
	display: grid;
	gap: 3px;
}

.version-card dt,
.contact-info dt {
	color: var(--color-text);
	font-size: 17px;
	font-weight: 900;
}

.version-card dd,
.contact-info dd {
	margin: 0;
	color: var(--color-muted);
}

/* About */
.about-section {
	background: #ffffff;
}

.about-intro {
	max-width: 920px;
	margin: 0 auto 28px;
	padding: 34px;
	box-shadow: none;
}

.about-intro p {
	color: var(--color-muted);
	font-size: 17px;
}

.about-cards {
	display: grid;
	gap: 22px;
}

.about-cards .card {
	padding: 34px;
	box-shadow: none;
}

.about-cards--two {
	margin-bottom: 42px;
}

.about-why {
	max-width: 760px;
	margin: 0 auto 42px;
	text-align: center;
}

.about-why ul {
	display: grid;
	gap: 16px;
	padding: 0;
	margin: 24px 0 0;
	list-style: none;
	text-align: left;
}

.about-why li {
	position: relative;
	padding-left: 46px;
	color: #334155;
	font-size: 18px;
	font-weight: 800;
}

.about-why li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: -4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff8d6;
	color: var(--color-yellow);
	font-weight: 900;
}

.about-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.about-stats div {
	padding: 30px 20px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-card);
	background: #ffffff;
	text-align: center;
	box-shadow: var(--shadow-soft);
}

.about-stats strong {
	display: block;
	color: var(--color-maroon);
	font-size: 34px;
	line-height: 1;
}

.about-stats span {
	display: block;
	margin-top: 8px;
	color: var(--color-muted);
	font-weight: 900;
}

/* Contact */
.contact-section {
	background: #ffffff;
}

.contact-grid {
	display: grid;
	gap: 44px;
}

.contact-info h2 {
	margin-bottom: 16px;
}

.contact-info > p {
	color: var(--color-muted);
	font-size: 17px;
	margin-bottom: 34px;
}

.contact-info dl div {
	display: grid;
	grid-template-columns: 56px 1fr;
	grid-template-areas:
		"icon title"
		"icon text";
	column-gap: 16px;
	align-items: center;
}

.contact-icon {
	grid-area: icon;
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: #fff8d6;
	position: relative;
}

.contact-icon::before {
	content: "";
	position: absolute;
	inset: 17px;
	border-radius: 6px;
	background: var(--color-yellow);
}

.contact-info dt {
	grid-area: title;
}

.contact-info dd {
	grid-area: text;
}

.contact-form {
	padding: 28px;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}

label {
	display: block;
	margin-bottom: 8px;
	color: var(--color-text);
	font-weight: 900;
}

input,
select,
textarea {
	width: 100%;
	height: 58px;
	margin-bottom: 18px;
	padding: 0 18px;
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	background: #ffffff;
	color: var(--color-text);
	font: inherit;
	font-size: 16px;
}

textarea {
	height: 150px;
	padding-top: 16px;
	resize: vertical;
}

.contact-form button {
	width: 100%;
	height: 64px;
	border-radius: 12px;
}

.form-response {
	margin: 16px 0 0;
	padding: 14px 16px;
	border-radius: 12px;
	background: #fff8d6;
	color: var(--color-maroon);
	font-weight: 900;
}

/* Blog */
.blog-hero,
.single-hero {
	padding: 56px 20px;
	background: var(--color-bg);
}

.blog-hero h1,
.single-hero h1 {
	margin-bottom: 18px;
}

.blog-grid {
	align-items: stretch;
}

.blog-card {
	display: grid;
	min-height: 260px;
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: 18px;
	box-shadow: none;
}

.blog-card__media {
	display: none;
}

.blog-card__body {
	display: grid;
	gap: 16px;
	padding: 28px;
}

.blog-card h2 {
	margin: 0;
	font-size: 22px;
	line-height: 1.25;
	font-weight: 900;
}

.blog-card p {
	margin: 0;
	color: var(--color-muted);
	font-size: 15px;
}

.blog-meta,
.blog-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: #94a3b8;
	font-size: 13px;
	font-weight: 800;
}

.blog-meta span {
	padding: 7px 12px;
	border-radius: 999px;
	background: #fff8d6;
	color: var(--color-yellow);
}

.blog-card__footer {
	margin-top: 8px;
	padding-top: 18px;
	border-top: 1px solid var(--color-border);
}

.blog-card__footer a {
	color: var(--color-yellow);
	font-weight: 900;
}

.author-mini {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #334155;
}

.author-mini i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--color-maroon);
	color: var(--color-yellow);
	font-style: normal;
	font-weight: 900;
}

.content-card {
	max-width: 960px;
	margin: 0 auto 36px;
	padding: 30px;
	border-radius: var(--radius-card);
	background: #ffffff;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
}

.wp-content {
	line-height: 1.75;
}

.wp-content p,
.wp-content li {
	color: #293548;
	font-size: 16px;
}

.wp-content h2 {
	margin-top: 1.4em;
	color: var(--color-maroon);
	font-size: 28px;
}

.wp-content h3 {
	margin-top: 1.2em;
	color: var(--color-text);
	font-size: 22px;
}

.wp-content ul,
.wp-content ol {
	padding-left: 24px;
}

.wp-content blockquote {
	margin: 24px 0;
	padding: 20px 22px;
	border-left: 5px solid var(--color-yellow);
	background: #fff8d6;
	border-radius: 16px;
}

.single-notice {
	max-width: 960px;
	margin: 0 auto 36px;
}

.related-posts {
	max-width: 960px;
	margin: 42px auto 0;
}

.back-link {
	max-width: 960px;
	margin: 26px auto 0;
}

.search-row {
	display: grid;
	gap: 10px;
}

.empty-state {
	padding: 30px;
}

/* FAQ */
.faq {
	display: grid;
	gap: 14px;
}

.faq-item {
	border: 1px solid var(--color-border);
	border-radius: 18px;
	background: #ffffff;
	overflow: hidden;
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px;
	border: 0;
	background: transparent;
	color: var(--color-text);
	font-size: 16px;
	font-weight: 900;
	text-align: left;
	cursor: pointer;
}

.faq-question i {
	position: relative;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.faq-question i::before,
.faq-question i::after {
	content: "";
	position: absolute;
	background: var(--color-maroon);
	border-radius: 2px;
}

.faq-question i::before {
	top: 8px;
	left: 1px;
	width: 16px;
	height: 2px;
}

.faq-question i::after {
	top: 1px;
	left: 8px;
	width: 2px;
	height: 16px;
}

.faq-question[aria-expanded="true"] i::after {
	opacity: 0;
}

.faq-answer {
	padding: 0 20px 20px;
	color: var(--color-muted);
}

.faq-answer p {
	margin: 0;
}

/* Footer */
.site-footer {
	background: #ffffff;
	border-top: 1px solid var(--color-border);
	color: var(--color-text);
	padding: 56px 0 28px;
}

.footer-grid {
	display: grid;
	gap: 44px;
}

.footer-logo {
	display: grid;
	gap: 14px;
	margin-bottom: 18px;
}

.footer-logo img,
.footer-brand img {
	width: 132px;
	max-width: 132px;
	max-height: 46px;
	object-fit: contain;
}

.footer-logo strong {
	font-size: 26px;
	line-height: 1;
}

.footer-logo strong span {
	color: var(--color-yellow);
}

.site-footer h2 {
	margin-bottom: 18px;
	color: var(--color-text);
	font-size: 20px;
}

.site-footer p {
	color: var(--color-muted);
}

.site-footer ul {
	display: grid;
	gap: 11px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer a {
	color: #334155;
	font-weight: 700;
}

.site-footer a:hover {
	color: var(--color-maroon);
}

.social-links {
	display: flex;
	gap: 10px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	background: #ffffff;
	color: var(--color-maroon);
	font-weight: 900;
}

.footer-bottom {
	display: grid;
	gap: 8px;
	margin-top: 44px;
	padding-top: 24px;
	border-top: 1px solid var(--color-border);
}

.footer-bottom p {
	margin-bottom: 0;
	font-size: 14px;
}

.floating-actions {
	display: none;
}

.floating-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-height: 42px;
	border-radius: 999px;
	background: var(--color-maroon);
	color: var(--color-yellow);
	font-weight: 900;
}

.floating-actions a + a {
	background: #fff8d6;
	color: var(--color-maroon);
}

.back-to-top {
	display: none;
}

.back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
}

/* Tablet */
@media (min-width: 768px) {
	.section {
		padding: 78px 0;
	}

	.hero-actions {
		grid-template-columns: repeat(3, auto);
		justify-content: center;
		width: auto;
	}

	.feature-grid,
	.bonus-grid,
	.steps-grid,
	.review-grid,
	.version-grid,
	.blog-grid,
	.about-cards--two {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.game-grid,
	.payment-grid,
	.about-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.info-table {
		display: grid;
	}

	.info-table tbody {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 34px;
	}

	.info-table tr {
		display: grid;
		grid-template-columns: 1fr;
	}

	.search-row {
		grid-template-columns: 1fr auto;
		align-items: start;
	}
}

/* Desktop */
@media (min-width: 1024px) {
	.container {
		width: min(100% - 48px, var(--container));
	}

	.header-container {
		min-height: var(--header-desktop);
	}

	.site-logo,
	.site-logo img,
	.custom-logo,
	.custom-logo-link img,
	.site-branding img {
		width: 130px;
		max-width: 130px;
		max-height: 48px;
	}

	.site-nav {
		display: block;
	}

	.mobile-menu-toggle,
	.mobile-menu {
		display: none !important;
	}

	.hero {
		padding: 90px 0;
	}

	.hero-inner {
		grid-template-columns: minmax(0, 1fr) 360px;
	}

	.hero-content {
		text-align: left;
	}

	.hero-content h1,
	.hero-content p:not(.eyebrow),
	.hero-actions {
		margin-inline: 0;
	}

	.hero-notes {
		justify-content: flex-start;
	}

	.full-hero {
		padding: 100px 20px;
	}

	.full-hero h1,
	.blog-hero h1,
	.single-hero h1,
	.download-hero h1 {
		font-size: 56px;
	}

	.full-hero p {
		font-size: 24px;
	}

	.download-hero {
		padding: 92px 20px;
	}

	.page-app-icon {
		width: 120px;
		height: 120px;
		margin-bottom: 32px;
	}

	.download-version {
		font-size: 22px;
	}

	.download-hero .btn {
		height: 60px;
		padding-inline: 44px;
		border-radius: 999px;
	}

	.feature-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.game-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.bonus-grid,
	.payment-grid,
	.steps-grid,
	.review-grid,
	.blog-grid,
	.blog-grid--related,
	.version-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.download-panel,
	.payment-layout {
		grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
	}

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

	.payment-layout > div:first-child {
		text-align: left;
	}

	.app-info-card--wide {
		padding: 56px;
	}

	.about-section {
		padding: 90px 0;
	}

	.about-stats {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.contact-section {
		padding: 90px 0 120px;
	}

	.contact-grid {
		grid-template-columns: 1fr 520px;
		gap: 80px;
	}

	.contact-form {
		padding: 52px;
	}

	.blog-hero {
		padding: 90px 20px;
	}

	.single-hero {
		padding: 72px 20px 40px;
	}

	.content-card {
		padding: 64px;
		margin-bottom: 100px;
	}

	.wp-content p,
	.wp-content li {
		font-size: 18px;
	}

	.wp-content h2 {
		font-size: 32px;
	}

	.wp-content h3 {
		font-size: 24px;
	}

	.site-footer {
		padding-top: 80px;
		padding-bottom: 32px;
	}

	.footer-grid {
		grid-template-columns: 280px 1fr 1fr;
		gap: 96px;
	}

	.footer-bottom {
		grid-template-columns: 1fr auto;
		align-items: center;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.container {
		width: min(100% - 40px, var(--container));
	}

	.hero-content h1,
	.blog-hero h1,
	.single-hero h1,
	.download-hero h1,
	.full-hero h1 {
		font-size: 32px;
	}

	.hero {
		padding-top: 48px;
	}

	.hero-visual {
		margin-top: 4px;
	}

	.hero-phone {
		min-height: 330px;
	}

	.btn,
	.contact-form button {
		width: 100%;
	}

	.quick-card,
	.feature-card,
	.game-card,
	.bonus-card,
	.payment-card,
	.step-card,
	.review-card,
	.blog-card,
	.content-card {
		border-radius: 18px;
	}

	.blog-card__body {
		padding: 24px;
	}

	.site-footer {
		padding: 56px 0 28px;
	}

	.footer-grid section {
		margin-bottom: 0;
	}
}

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