/*
Theme Name: GameChanger 5 Cricket
Theme URI: https://gamechanger5cricket.com
Author: GameChanger 5 Cricket
Author URI: https://gamechanger5cricket.com
Description: Production-ready single-page WordPress theme for GameChanger 5 Cricket. Play Store–inspired layout, purple/white brand system, Core Web Vitals focused, AdSense-ready, fully Customizer-driven.
Version: 1.0.6
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gc5
Tags: one-column, custom-logo, custom-menu, featured-images, theme-options, translation-ready
*/

:root {
	--gc-purple: #6d28d9;
	--gc-purple-deep: #5b21b6;
	--gc-purple-soft: #7c3aed;
	--gc-purple-mist: #f3e8ff;
	--gc-purple-wash: #faf5ff;
	--gc-white: #ffffff;
	--gc-bg: #f8f7fc;
	--gc-surface: #ffffff;
	--gc-text: #1e1b2e;
	--gc-muted: #5b5670;
	--gc-border: #e8e4f2;
	--gc-success: #059669;
	--gc-star: #f59e0b;
	--gc-max: 720px;
	--gc-wide: 1040px;
	--gc-radius: 16px;
	--gc-radius-sm: 10px;
	--gc-header: 64px;
	--gc-shadow: 0 10px 30px rgba(109, 40, 217, 0.08);
	--gc-shadow-btn: 0 10px 24px rgba(109, 40, 217, 0.32);
	--gc-font: "Manrope", "Segoe UI", sans-serif;
	--gc-display: "Sora", "Segoe UI", sans-serif;
	--gc-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--gc-font);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--gc-text);
	background:
		radial-gradient(900px 420px at 100% -10%, rgba(124, 58, 237, 0.12), transparent 55%),
		radial-gradient(700px 360px at -5% 8%, rgba(109, 40, 217, 0.08), transparent 50%),
		linear-gradient(180deg, var(--gc-white) 0%, var(--gc-bg) 28%, #f3f0fa 100%);
	min-height: 100vh;
}

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

a {
	color: var(--gc-purple);
	text-underline-offset: 0.15em;
}

a:hover {
	color: var(--gc-purple-deep);
}

:focus-visible {
	outline: 2px solid var(--gc-purple);
	outline-offset: 3px;
}

.gc-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 10000;
	background: var(--gc-purple);
	color: #fff;
	padding: 0.65rem 1rem;
	border-radius: 8px;
}

.gc-skip:focus {
	left: 1rem;
	top: 1rem;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* —— Header —— */
.gc-header {
	position: sticky;
	top: 0;
	z-index: 60;
	height: var(--gc-header);
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--gc-border);
}

.gc-header__inner {
	max-width: var(--gc-wide);
	margin: 0 auto;
	padding: 0 1.15rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.gc-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	color: var(--gc-text);
	font-family: var(--gc-display);
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -0.02em;
}

.gc-logo__mark {
	width: 2.05rem;
	height: 2.05rem;
	border-radius: 0.7rem;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, var(--gc-purple-soft), var(--gc-purple-deep));
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	box-shadow: 0 6px 16px rgba(109, 40, 217, 0.28);
}

.gc-logo .custom-logo {
	max-height: 36px;
	width: auto;
}

.gc-nav {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.gc-nav ul {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gc-nav a {
	color: var(--gc-muted);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 600;
}

.gc-nav a:hover {
	color: var(--gc-purple);
}

.gc-nav__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	background: var(--gc-purple);
	color: #fff !important;
	font-weight: 700;
	font-size: 0.86rem;
	text-decoration: none;
	box-shadow: var(--gc-shadow-btn);
}

.gc-nav__cta:hover {
	background: var(--gc-purple-deep);
	color: #fff !important;
}

@media (max-width: 640px) {
	.gc-nav a:not(.gc-nav__cta) {
		display: none;
	}
}

/* —— Layout —— */
.gc-main {
	overflow-x: clip;
}

.gc-wrap {
	max-width: var(--gc-max);
	margin: 0 auto;
	padding: 0 1.15rem;
}

.gc-wrap--wide {
	max-width: var(--gc-wide);
}

/* —— Ads —— */
.gc-ad {
	display: grid;
	place-items: center;
	width: 100%;
	min-height: 100px;
	margin: 1.25rem auto;
	overflow: hidden;
}

.gc-ad--leader {
	max-width: var(--gc-wide);
	padding: 0.75rem 1.15rem 0;
	margin: 0 auto;
	min-height: 0;
}

.gc-ad--leader .adsbygoogle {
	min-height: 90px;
	width: 100%;
	background: var(--gc-purple-wash);
	border: 1px dashed #ddd6fe;
	border-radius: var(--gc-radius-sm);
}

.gc-ad--mid {
	min-height: 280px;
	max-width: var(--gc-max);
	padding: 0 1.15rem;
}

.gc-ad--sticky {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	margin: 0;
	min-height: 56px;
	background: rgba(255, 255, 255, 0.96);
	border-top: 1px solid var(--gc-border);
	backdrop-filter: blur(10px);
}

body.has-sticky-ad {
	padding-bottom: 68px;
}

body.has-mobile-download {
	padding-bottom: 76px;
}

body.has-sticky-ad.has-mobile-download {
	padding-bottom: 132px;
}

/* —— Hero (Play Store style) —— */
.gc-hero {
	padding: 1.75rem 0 1.25rem;
}

.gc-hero__card {
	max-width: var(--gc-wide);
	margin: 0 auto;
	padding: 1.35rem 1.15rem 1.5rem;
	animation: gc-rise 0.65s var(--gc-ease) both;
}

@keyframes gc-rise {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.gc-app {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.05rem 1.2rem;
	align-items: start;
}

.gc-app__icon {
	width: 88px;
	height: 88px;
	border-radius: 22%;
	overflow: hidden;
	background: linear-gradient(145deg, var(--gc-purple-soft), var(--gc-purple-deep));
	box-shadow: 0 12px 28px rgba(109, 40, 217, 0.25);
	flex-shrink: 0;
}

.gc-app__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-app__icon-fallback {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	color: #fff;
	font-family: var(--gc-display);
	font-weight: 800;
	font-size: 1.55rem;
	letter-spacing: -0.03em;
}

.gc-app__meta {
	min-width: 0;
}

.gc-app__name {
	margin: 0;
	font-family: var(--gc-display);
	font-size: clamp(1.55rem, 4.5vw, 2.15rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.12;
	color: var(--gc-text);
}

.gc-app__developer {
	margin: 0.35rem 0 0;
	color: var(--gc-purple);
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
}

.gc-app__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0.65rem 0 0;
	padding: 0;
	list-style: none;
}

.gc-app__tags li {
	padding: 0.28rem 0.65rem;
	border-radius: 999px;
	background: var(--gc-purple-mist);
	color: var(--gc-purple-deep);
	font-size: 0.75rem;
	font-weight: 700;
}

.gc-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.65rem;
	margin: 1.15rem 0 0;
	padding: 0.9rem 0;
	border-top: 1px solid var(--gc-border);
	border-bottom: 1px solid var(--gc-border);
	grid-column: 1 / -1;
}

.gc-stats__item {
	text-align: center;
	padding: 0.15rem 0.35rem;
}

.gc-stats__value {
	display: block;
	font-family: var(--gc-display);
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: -0.02em;
	color: var(--gc-text);
}

.gc-stats__label {
	display: block;
	margin-top: 0.15rem;
	font-size: 0.72rem;
	color: var(--gc-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.gc-stats__stars {
	color: var(--gc-star);
	letter-spacing: 0.05em;
}

.gc-cta-row {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	margin-top: 0.35rem;
}

.gc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3.05rem;
	padding: 0.8rem 1.45rem;
	border-radius: 999px;
	border: 0;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s var(--gc-ease), box-shadow 0.2s ease, background 0.2s ease;
}

.gc-btn--primary {
	background: linear-gradient(135deg, var(--gc-purple-soft) 0%, var(--gc-purple) 55%, var(--gc-purple-deep) 100%);
	color: #fff;
	box-shadow: var(--gc-shadow-btn);
}

.gc-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(109, 40, 217, 0.4);
	color: #fff;
}

.gc-btn--ghost {
	background: var(--gc-white);
	color: var(--gc-purple);
	border: 1.5px solid #ddd6fe;
}

.gc-btn--ghost:hover {
	background: var(--gc-purple-mist);
	color: var(--gc-purple-deep);
}

.gc-btn--block {
	width: 100%;
}

.gc-cta-note {
	margin: 0;
	width: 100%;
	font-size: 0.82rem;
	color: var(--gc-muted);
}

@media (min-width: 720px) {
	.gc-app__icon {
		width: 112px;
		height: 112px;
	}

	.gc-stats {
		grid-column: auto;
		grid-template-columns: repeat(3, auto);
		justify-content: start;
		border: 0;
		padding: 0;
		margin: 0.85rem 0 0;
		gap: 1.25rem;
	}

	.gc-stats__item {
		text-align: left;
		padding: 0;
		position: relative;
	}

	.gc-stats__item + .gc-stats__item::before {
		content: "";
		position: absolute;
		left: -0.65rem;
		top: 15%;
		bottom: 15%;
		width: 1px;
		background: var(--gc-border);
	}

	.gc-cta-row {
		grid-column: auto;
	}

	.gc-cta-note {
		width: auto;
	}
}

/* —— Screenshot strip —— */
.gc-shots {
	padding: 0.35rem 0 1.5rem;
	content-visibility: auto;
	contain-intrinsic-size: 1px 280px;
}

.gc-shots__track {
	display: flex;
	gap: 0.85rem;
	overflow-x: auto;
	padding: 0.25rem 1.15rem 0.85rem;
	max-width: var(--gc-wide);
	margin: 0 auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.gc-shots__item {
	flex: 0 0 auto;
	width: min(42vw, 180px);
	aspect-ratio: 9 / 16;
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(160deg, var(--gc-purple-mist), #ede9fe 40%, #ddd6fe);
	border: 1px solid var(--gc-border);
	scroll-snap-align: start;
	box-shadow: var(--gc-shadow);
}

.gc-shots__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-shots__placeholder {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: end start;
	padding: 1rem;
	color: var(--gc-purple-deep);
	font-weight: 800;
	font-family: var(--gc-display);
	font-size: 0.95rem;
	background:
		radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.7), transparent 40%),
		linear-gradient(160deg, #ede9fe, #c4b5fd);
}

/* —— Sections —— */
.gc-section {
	padding: 2.15rem 0;
	border-top: 1px solid rgba(232, 228, 242, 0.9);
	content-visibility: auto;
	contain-intrinsic-size: 1px 320px;
}

.gc-section__head {
	margin-bottom: 1.15rem;
}

.gc-section__title {
	display: inline-block;
	margin: 0;
	padding: 0.62rem 1.15rem;
	font-family: var(--gc-display);
	font-size: clamp(1.2rem, 3.2vw, 1.55rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: #ffffff;
	background: linear-gradient(135deg, var(--gc-purple-soft) 0%, var(--gc-purple) 52%, var(--gc-purple-deep) 100%);
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(109, 40, 217, 0.28);
}

/* Keep section titles white even inside .gc-prose / .gc-rich wrappers */
.gc-section__head .gc-section__title,
.gc-prose .gc-section__title,
.gc-rich .gc-section__title,
h2.gc-section__title {
	color: #ffffff;
}

.gc-section__lead {
	margin: 0.75rem 0 0;
	color: var(--gc-muted);
	font-size: 0.98rem;
	max-width: 42rem;
}

.gc-hero__desc {
	margin: 0.65rem 0 0;
	max-width: 36rem;
	font-size: 0.98rem;
	color: var(--gc-muted);
	text-align: left;
}

.gc-hero__desc p {
	margin: 0 0 0.5rem;
}

.gc-hero__desc p:last-child {
	margin-bottom: 0;
}

/* Rich content typography */
.gc-rich,
.gc-prose {
	color: var(--gc-muted);
}

.gc-rich p,
.gc-prose p {
	margin: 0 0 1rem;
	line-height: 1.7;
}

.gc-rich p:last-child,
.gc-prose p:last-child {
	margin-bottom: 0;
}

.gc-rich ul,
.gc-rich ol,
.gc-prose ul,
.gc-prose ol {
	margin: 0 0 1.1rem;
	padding-left: 0;
	list-style: none;
}

.gc-rich ul > li,
.gc-prose ul > li {
	position: relative;
	padding: 0.55rem 0 0.55rem 1.65rem;
	margin-bottom: 0.35rem;
	border-bottom: 1px solid rgba(232, 228, 242, 0.85);
}

.gc-rich ul > li::before,
.gc-prose ul > li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.95rem;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--gc-purple-soft), var(--gc-purple));
	box-shadow: 0 0 0 3px var(--gc-purple-mist);
}

.gc-rich ol,
.gc-prose ol {
	counter-reset: gc-ol;
}

.gc-rich ol > li,
.gc-prose ol > li {
	position: relative;
	padding: 0.55rem 0 0.55rem 2rem;
	margin-bottom: 0.35rem;
	counter-increment: gc-ol;
	border-bottom: 1px solid rgba(232, 228, 242, 0.85);
}

.gc-rich ol > li::before,
.gc-prose ol > li::before {
	content: counter(gc-ol);
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 0.45rem;
	display: grid;
	place-items: center;
	font-size: 0.72rem;
	font-weight: 800;
	color: #fff;
	background: linear-gradient(135deg, var(--gc-purple-soft), var(--gc-purple-deep));
}

.gc-rich strong,
.gc-rich b,
.gc-prose strong,
.gc-prose b {
	color: var(--gc-text);
	font-weight: 800;
}

.gc-rich em,
.gc-prose em {
	color: var(--gc-purple-deep);
}

.gc-rich h2:not(.gc-section__title),
.gc-rich h3,
.gc-rich h4,
.gc-prose h2:not(.gc-section__title),
.gc-prose h3,
.gc-prose h4 {
	margin: 1.35rem 0 0.6rem;
	font-family: var(--gc-display);
	color: var(--gc-text);
	letter-spacing: -0.02em;
}

/* Rich-editor headings inside content — purple bar + white text */
.gc-rich h2:not(.gc-section__title),
.gc-prose h2:not(.gc-section__title) {
	display: inline-block;
	padding: 0.45rem 0.9rem;
	color: #ffffff;
	background: linear-gradient(135deg, var(--gc-purple-soft), var(--gc-purple-deep));
	border-radius: 8px;
	font-size: 1.05rem;
	box-shadow: 0 6px 16px rgba(109, 40, 217, 0.2);
}

.gc-rich h3,
.gc-prose h3 {
	font-size: 1.05rem;
}

.gc-rich a,
.gc-prose a {
	color: var(--gc-purple);
	font-weight: 700;
	text-decoration-thickness: 1px;
}

.gc-rich a:hover,
.gc-prose a:hover {
	color: var(--gc-purple-deep);
}

.gc-rich blockquote,
.gc-prose blockquote {
	margin: 1rem 0;
	padding: 0.85rem 1rem;
	border-left: 4px solid var(--gc-purple);
	background: var(--gc-purple-wash);
	border-radius: 0 10px 10px 0;
	color: var(--gc-text);
}

.gc-features-rich {
	padding: 0.35rem 0 0;
}

.gc-features-rich ul > li {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.gc-features__body h3 {
	margin: 0 0 0.35rem;
	font-size: 1.02rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--gc-text);
}

.gc-faq__answer {
	margin-top: 0.65rem;
	font-size: 0.95rem;
}

.gc-faq__answer p {
	margin-bottom: 0.65rem;
}

.gc-footer__about {
	margin: 0 0 0.65rem;
	font-size: 0.9rem;
	color: var(--gc-muted);
}

.gc-footer__about p {
	margin: 0;
}

/* Features — interaction rows, not decorative cards */
.gc-features {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0;
}

.gc-features li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem;
	align-items: start;
	padding: 1rem 0;
	border-bottom: 1px solid var(--gc-border);
}

.gc-features li:last-child {
	border-bottom: 0;
}

.gc-features__icon {
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 0.75rem;
	display: grid;
	place-items: center;
	background: var(--gc-purple-mist);
	color: var(--gc-purple);
	font-weight: 800;
	font-size: 0.85rem;
}

.gc-features h3 {
	margin: 0 0 0.25rem;
	font-size: 1.02rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.gc-features .gc-rich p {
	margin: 0 0 0.45rem;
	font-size: 0.95rem;
}

/* Info chips row (Play Store genre chips) */
.gc-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-chips li {
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: var(--gc-white);
	border: 1px solid var(--gc-border);
	color: var(--gc-muted);
	font-size: 0.84rem;
	font-weight: 600;
}

/* Rating breakdown */
.gc-rating {
	display: grid;
	gap: 1.25rem;
	align-items: center;
}

@media (min-width: 640px) {
	.gc-rating {
		grid-template-columns: auto 1fr;
		gap: 1.75rem;
	}
}

.gc-rating__score {
	text-align: center;
}

.gc-rating__number {
	font-family: var(--gc-display);
	font-size: 3.2rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--gc-text);
}

.gc-rating__stars {
	margin: 0.35rem 0;
	color: var(--gc-star);
	font-size: 1.1rem;
	letter-spacing: 0.08em;
}

.gc-rating__count {
	margin: 0;
	color: var(--gc-muted);
	font-size: 0.85rem;
	font-weight: 600;
}

.gc-bars {
	display: grid;
	gap: 0.4rem;
}

.gc-bars__row {
	display: grid;
	grid-template-columns: 1.2rem 1fr;
	gap: 0.55rem;
	align-items: center;
	font-size: 0.78rem;
	color: var(--gc-muted);
	font-weight: 700;
}

.gc-bars__track {
	height: 0.55rem;
	border-radius: 999px;
	background: #eee9f8;
	overflow: hidden;
}

.gc-bars__fill {
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--gc-purple-soft), var(--gc-purple));
}

/* What's new / update box */
.gc-update {
	padding: 1.1rem 1.15rem;
	border-radius: var(--gc-radius);
	background: var(--gc-white);
	border: 1px solid var(--gc-border);
	box-shadow: var(--gc-shadow);
}

.gc-update__date {
	margin: 0 0 0.55rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--gc-purple);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Specs table */
.gc-specs {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.gc-specs th,
.gc-specs td {
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--gc-border);
	text-align: left;
	vertical-align: top;
}

.gc-specs th {
	width: 38%;
	color: var(--gc-muted);
	font-weight: 600;
	padding-right: 0.75rem;
}

.gc-specs td {
	color: var(--gc-text);
	font-weight: 700;
}

/* FAQ */
.gc-faq {
	display: grid;
	gap: 0.65rem;
}

.gc-faq details {
	background: var(--gc-white);
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius-sm);
	padding: 0.9rem 1rem;
}

.gc-faq summary {
	cursor: pointer;
	font-weight: 700;
	list-style: none;
	color: var(--gc-text);
}

.gc-faq summary::-webkit-details-marker {
	display: none;
}

.gc-faq summary::after {
	content: "+";
	float: right;
	color: var(--gc-purple);
	font-weight: 800;
}

.gc-faq details[open] summary::after {
	content: "–";
}

.gc-faq p {
	margin: 0.65rem 0 0;
	color: var(--gc-muted);
	font-size: 0.95rem;
}

/* Mid download band */
.gc-band {
	margin: 0.5rem 0;
	padding: 2rem 1.15rem;
	text-align: center;
	background:
		radial-gradient(600px 180px at 50% 0%, rgba(124, 58, 237, 0.16), transparent 70%),
		linear-gradient(180deg, #faf5ff, #f3e8ff);
	border-block: 1px solid #e9d5ff;
}

.gc-band p {
	margin: 0 0 0.9rem;
	color: var(--gc-muted);
	font-weight: 600;
}

/* Sticky mobile download bar */
.gc-mobile-dl {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 55;
	padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, 0.96);
	border-top: 1px solid var(--gc-border);
	backdrop-filter: blur(12px);
	box-shadow: 0 -8px 24px rgba(30, 27, 46, 0.06);
}

.gc-mobile-dl.is-visible {
	display: block;
}

@media (min-width: 768px) {
	.gc-mobile-dl {
		display: none !important;
	}

	body.has-mobile-download {
		padding-bottom: 0;
	}

	body.has-sticky-ad.has-mobile-download {
		padding-bottom: 68px;
	}
}

body.has-sticky-ad .gc-mobile-dl {
	bottom: 56px;
}

/* Footer */
.gc-footer {
	padding: 2.25rem 0 2.5rem;
	background: var(--gc-white);
	border-top: 1px solid var(--gc-border);
	text-align: center;
}

.gc-footer p {
	margin: 0 0 0.65rem;
	color: var(--gc-muted);
	font-size: 0.9rem;
}

.gc-footer__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.95rem;
	margin-bottom: 0.85rem;
}

.gc-footer__menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.95rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-footer__links a {
	color: var(--gc-muted);
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 700;
}

.gc-footer__links a:hover {
	color: var(--gc-purple);
}

.gc-footer__copy {
	font-size: 0.8rem;
	color: #8b86a1;
}

/* Generic content pages */
.gc-content {
	max-width: var(--gc-max);
	margin: 0 auto;
	padding: 2rem 1.15rem 3rem;
}

.gc-content .entry-title {
	font-family: var(--gc-display);
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 1rem;
}

.gc-content .entry-content {
	color: var(--gc-muted);
}

/* WordPress editor content (Rank Math / SEO copy) */
.gc-editor-content .entry-content h2,
.gc-editor-content .entry-content h3,
.gc-editor-content .entry-content h4 {
	color: var(--gc-text);
	font-family: var(--gc-display);
	letter-spacing: -0.02em;
	margin: 1.4rem 0 0.55rem;
}

.gc-editor-content .entry-content a {
	color: var(--gc-purple);
	font-weight: 700;
}

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