/* ============================================================
   Demo Slots Directory — template-slots.php
   Hero, stat ticker, filters (pills/dropdowns/toggles), grid.
   ============================================================ */

.gc-slots-arch__hero {
	background: var(--gc-bg);
	border-bottom: 0.5px solid var(--gc-border, #E4EAF2);
	position: relative;
	overflow: hidden;
}
.gc-slots-arch__hero::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(0, 198, 174, .05), transparent 60%);
	pointer-events: none;
}
.gc-slots-arch__hero-in {
	max-width: var(--gc-max-width, 1280px);
	margin: 0 auto;
	padding: 48px 24px 32px;
	position: relative;
	z-index: 1;
}
.gc-slots-arch__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 14px;
	background: var(--gc-primary-soft, #E6FAF7);
	border: 0.5px solid rgba(0, 198, 174, .3);
	color: var(--gc-primary-dark, #00A894);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .4px;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.gc-slots-arch__dot {
	width: 6px;
	height: 6px;
	min-width: 6px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: var(--gc-primary-dark, #00A894);
	display: block;
	animation: gc-pulse 1.5s ease-in-out infinite;
}
@keyframes gc-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.gc-slots-arch__title {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: clamp(32px, 4.5vw, 42px);
	font-weight: 700;
	color: var(--gc-navy, #0D1B3E);
	letter-spacing: -.025em;
	line-height: 1.1;
	margin: 0 0 14px;
}
.gc-slots-arch__ac { color: var(--gc-primary, #00C6AE); }
.gc-slots-arch__sub {
	font-size: 16px;
	line-height: 1.7;
	color: var(--gc-muted, #64748B);
	max-width: 720px;
	margin: 0;
}
.gc-slots-arch__statbar {
	background: var(--gc-bg-soft, #F8FAFC);
	border-top: 0.5px solid var(--gc-border, #E4EAF2);
}
.gc-slots-arch__statbar-in {
	max-width: var(--gc-max-width, 1280px);
	margin: auto;
	padding: 16px 24px;
	display: flex;
	gap: 36px;
	flex-wrap: wrap;
}
.gc-slots-arch__sb-l {
	font-size: 11px;
	color: var(--gc-light, #94A3B8);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	margin-bottom: 2px;
}
.gc-slots-arch__sb-v {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 15px;
	font-weight: 600;
	color: var(--gc-navy, #0D1B3E);
}

/* DIRECTORY */
.gc-slots-arch__dir {
	max-width: var(--max-width, 1280px);
	margin: auto;
	padding: 32px 25px 80px;
	box-sizing: border-box;
	width: 100%;
}
.gc-slots-arch__dir-head {
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 0.5px solid var(--gc-border, #E4EAF2);
}
.gc-slots-arch__dir-title {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 22px;
	font-weight: 700;
	color: var(--gc-navy, #0D1B3E);
	margin: 0 0 4px;
}
.gc-slots-arch__dir-desc { font-size: 13px; color: var(--gc-muted, #64748B); margin: 0; }

/* FILTERS */
.gc-slots-arch__filters {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 22px;
}
.gc-slots-arch__filter-top { display: flex; gap: 10px; flex-wrap: wrap; }
.gc-slots-arch__search {
	flex: 1;
	min-width: 240px;
	display: flex;
	align-items: center;
	background: var(--gc-bg-soft);
	border: 0.5px solid var(--gc-border, #E4EAF2);
	border-radius: 8px;
	padding: 0 14px;
	height: 42px;
	gap: 10px;
	color: var(--gc-light, #94A3B8);
}
.gc-slots-arch__search input {
	flex: 1;
	border: none;
	outline: none;
	font-size: 14px;
	background: transparent;
	color: var(--gc-navy, #0D1B3E);
}
.gc-slots-arch__fdrop { position: relative; }
.gc-slots-arch__fdrop-btn {
	height: 42px;
	padding: 0 16px;
	background: var(--gc-bg-soft);
	border: 0.5px solid var(--gc-border, #E4EAF2);
	border-radius: 8px;
	font-size: 13px;
	color: var(--gc-navy, #0D1B3E);
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}
.gc-slots-arch__fdrop-btn svg { width: 14px; height: 14px; color: var(--gc-light, #94A3B8); }
.gc-slots-arch__fdrop-btn.has { border-color: var(--gc-primary, #00C6AE); color: var(--gc-primary-dark, #00A894); background: var(--gc-primary-soft, #E6FAF7); }
.gc-slots-arch__fdrop-menu {
	position: absolute;
	top: 48px;
	left: 0;
	background: var(--gc-bg-soft);
	border: 0.5px solid var(--gc-border, #E4EAF2);
	border-radius: 10px;
	box-shadow: 0 12px 32px rgba(13, 27, 62, .14);
	padding: 8px;
	min-width: 240px;
	max-height: 340px;
	overflow-y: auto;
	z-index: 50;
	display: none;
}
.gc-slots-arch__fdrop.is-open .gc-slots-arch__fdrop-menu { display: block; }
.gc-slots-arch__fdrop-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 12px;
	border-radius: 7px;
	font-size: 13px;
	color: var(--gc-text, #1E293B);
	cursor: pointer;
}
.gc-slots-arch__fdrop-item:hover { background: var(--gc-bg-soft, #F8FAFC); }
.gc-slots-arch__fdrop-item .gc-slots-arch__c { font-size: 11px; color: var(--gc-light, #94A3B8); }
.gc-slots-arch__fdrop-item.is-sel { background: var(--gc-primary-soft, #E6FAF7); color: var(--gc-primary-dark, #00A894); font-weight: 600; }
.gc-slots-arch__sort {
	height: 42px;
	background: var(--gc-bg-soft);
	border: 0.5px solid var(--gc-border, #E4EAF2);
	border-radius: 8px;
	padding: 0 14px;
	font-size: 13px;
	color: var(--gc-navy, #0D1B3E);
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
}

/* toggles */
.gc-slots-arch__toggles { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.gc-slots-arch__toggle {
	height: 38px;
	padding: 0 16px;
	background: var(--gc-bg-soft);
	border: 0.5px solid var(--gc-border, #E4EAF2);
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--gc-muted, #64748B);
	cursor: pointer;
	transition: .15s;
	font-family: inherit;
}
.gc-slots-arch__toggle:hover { border-color: rgba(0, 198, 174, .4); color: var(--gc-primary-dark, #00A894); }
.gc-slots-arch__toggle.is-on { background: var(--gc-primary, #00C6AE); border-color: var(--gc-primary, #00C6AE); color: #fff; }
.gc-slots-arch__tlabel {
	font-size: 11px;
	color: var(--gc-light, #94A3B8);
	text-transform: uppercase;
	letter-spacing: .6px;
	font-weight: 700;
	margin-right: 2px;
}

/* provider pills */
.gc-slots-arch__prov-pills { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.gc-slots-arch__pill {
	padding: 7px 13px;
	background: var(--gc-bg-soft);
	border: 0.5px solid var(--gc-border, #E4EAF2);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 500;
	color: var(--gc-muted, #64748B);
	cursor: pointer;
	transition: .15s;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: inherit;
}
.gc-slots-arch__pill:hover { border-color: rgba(0, 198, 174, .4); color: var(--gc-primary-dark, #00A894); }
.gc-slots-arch__pill.is-on { background: var(--gc-primary, #00C6AE); border-color: var(--gc-primary, #00C6AE); color: #fff; }
.gc-slots-arch__pill-c { opacity: .55; font-weight: 400; font-size: 11px; }

.gc-slots-arch__rescount { font-size: 12.5px; color: var(--gc-light, #94A3B8); min-height: 18px; }

/* GRID */
.gc-slots-arch__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}
.gc-slots-arch__game {
	background: var(--gc-bg-soft);
	border: 0.5px solid var(--gc-border, #E4EAF2);
	border-radius: 10px;
	overflow: hidden;
	transition: .18s;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	text-decoration: none;
}
.gc-slots-arch__game:hover { border-color: rgba(0, 198, 174, .4); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(13, 27, 62, .06); }
.gc-slots-arch__game.is-hidden { display: none; }
.gc-slots-arch__game-logo {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #0D1B3E, #1A2F5E);
	border-bottom: 0.5px solid var(--gc-border, #E4EAF2);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.gc-slots-arch__game-logo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gc-slots-arch__ini {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-weight: 800;
	font-size: 17px;
	color: rgba(255, 255, 255, .92);
	text-align: center;
	padding: 0 10px;
}
.gc-slots-arch__rtp {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0, 198, 174, .95);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 2px 7px;
	border-radius: 5px;
	font-family: var(--gc-font-display, 'Sora', sans-serif);
}
.gc-slots-arch__mw {
	position: absolute;
	top: 8px;
	left: 8px;
	background: rgba(245, 158, 11, .95);
	color: #fff;
	font-size: 8.5px;
	font-weight: 800;
	padding: 3px 7px;
	border-radius: 5px;
	text-transform: uppercase;
	letter-spacing: .05em;
}
.gc-slots-arch__game-body { padding: 13px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.gc-slots-arch__game-name {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 14px;
	font-weight: 700;
	color: var(--gc-navy, #0D1B3E);
	line-height: 1.2;
}
.gc-slots-arch__game-meta { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--gc-muted, #64748B); flex-wrap: wrap; }
.gc-slots-arch__vol { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; }
.gc-slots-arch__vol-dot { width: 6px; height: 6px; border-radius: 50%; }
.gc-slots-arch__vol--high .gc-slots-arch__vol-dot { background: #ef4444; } .gc-slots-arch__vol--high { color: #991b1b; }
.gc-slots-arch__vol--very_high .gc-slots-arch__vol-dot { background: #dc2626; } .gc-slots-arch__vol--very_high { color: #7f1d1d; }
.gc-slots-arch__vol--medium .gc-slots-arch__vol-dot { background: #eab308; } .gc-slots-arch__vol--medium { color: #854d0e; }
.gc-slots-arch__vol--low .gc-slots-arch__vol-dot { background: #10b981; } .gc-slots-arch__vol--low { color: #047857; }
.gc-slots-arch__game-spec { font-size: 11px; color: var(--gc-light, #94A3B8); }
.gc-slots-arch__game-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 8px;
	border-top: 0.5px solid var(--gc-border, #E4EAF2);
	margin-top: auto;
}
.gc-slots-arch__game-prov { font-size: 10px; color: var(--gc-light, #94A3B8); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.gc-slots-arch__game-cta { font-size: 11px; color: var(--gc-primary-dark, #00A894); font-weight: 700; }

.gc-slots-arch__empty { padding: 40px; text-align: center; color: var(--gc-muted, #64748B); font-size: 14px; }

/* ABOUT (page editor content) */
.gc-slots-arch__about {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 0.5px solid var(--gc-border, #E4EAF2);
	font-size: 15px;
	line-height: 1.8;
	color: var(--gc-muted, #64748B);
}
.gc-slots-arch__about h2 { font-family: var(--gc-font-display, 'Sora', sans-serif); color: var(--gc-navy, #0D1B3E); font-size: 22px; margin: 0 0 14px; }
.gc-slots-arch__about h3 { font-family: var(--gc-font-display, 'Sora', sans-serif); color: var(--gc-navy, #0D1B3E); font-size: 17px; margin: 22px 0 10px; }
.gc-slots-arch__about p { margin-bottom: 14px; }

/* DARK MODE */
[data-theme="dark"] .gc-slots-arch__hero {
	background: var(--gc-bg);
	border-color: rgba(255, 255, 255, .08);
}
[data-theme="dark"] .gc-slots-arch__statbar {
	background: rgba(255, 255, 255, 0.02);
	border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .gc-slots-arch__game,
[data-theme="dark"] .gc-slots-arch__search,
[data-theme="dark"] .gc-slots-arch__fdrop-btn,
[data-theme="dark"] .gc-slots-arch__fdrop-menu,
[data-theme="dark"] .gc-slots-arch__pill,
[data-theme="dark"] .gc-slots-arch__toggle {
	background: var(--gc-bg-soft);
	border-color: rgba(255, 255, 255, .08);
}
[data-theme="dark"] .gc-slots-arch__title,
[data-theme="dark"] .gc-slots-arch__game-name,
[data-theme="dark"] .gc-slots-arch__sb-v {
	color: #f1f5f9;
}

/* RESPONSIVE */
@media (max-width: 1024px) { .gc-slots-arch__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px) { .gc-slots-arch__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
/* ── Dark mode: teal eyebrow badge ──
   The eyebrow uses --gc-primary-soft + --gc-primary-dark, which both have
   dark values, so it adapts automatically (matches the casinos hero badge). */

/* ── Dark mode: hero eyebrow badge — match iHub (subtle teal pill) ── */
[data-theme="dark"] .gc-slots-arch__eyebrow {
	background: rgba(0, 198, 174, 0.08);
	border-color: rgba(0, 198, 174, 0.20);
	color: #7DD3C8;
}

/* ============================================================
   SLOT PROVIDER ARCHIVE HERO (taxonomy-slot-provider.php)
   Reuses .gc-slots-arch__game cards; only the hero is new.
   ============================================================ */
.gc-slot-prov__hero {
	max-width: var(--max-width, 1280px);
	margin: 0 auto;
	padding: 28px 25px 0;
	box-sizing: border-box;
	width: 100%;
}
.gc-slot-prov__hero-in {
	display: flex;
	align-items: center;
	gap: 22px;
	background: var(--gc-bg-soft, #F8FAFC);
	border: 1px solid var(--gc-border, #E4EAF2);
	border-radius: 16px;
	padding: 24px 26px;
}
.gc-slot-prov__logo {
	width: 88px;
	height: 88px;
	border-radius: 16px;
	border: 1px solid var(--gc-border, #E4EAF2);
	background: #fff;
	flex-shrink: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gc-slot-prov__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}
.gc-slot-prov__logo-ini {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 30px;
	font-weight: 800;
	color: var(--gc-primary-dark, #00A894);
}
.gc-slot-prov__head {
	flex: 1;
	min-width: 0;
}
.gc-slot-prov__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(0, 198, 174, 0.08);
	border: 1px solid rgba(0, 198, 174, 0.20);
	color: var(--gc-primary-dark, #00A894);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	padding: 5px 13px;
	border-radius: 999px;
	margin-bottom: 11px;
}
.gc-slot-prov__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gc-primary, #00C6AE);
}
.gc-slot-prov__name {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 28px;
	font-weight: 800;
	color: var(--gc-navy-deep, #0B1437);
	margin: 0 0 7px;
	line-height: 1.1;
}
.gc-slot-prov__desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--gc-text-soft, #5A6478);
	margin: 0;
	max-width: 620px;
}
.gc-slot-prov__count {
	text-align: center;
	flex-shrink: 0;
	padding-left: 22px;
	border-left: 1px solid var(--gc-border, #E4EAF2);
}
.gc-slot-prov__count-n {
	display: block;
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 32px;
	font-weight: 800;
	color: var(--gc-navy-deep, #0B1437);
	line-height: 1;
}
.gc-slot-prov__count-l {
	display: block;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gc-text-faint, #8A93A6);
	margin-top: 6px;
}
.gc-slot-prov__empty {
	grid-column: 1 / -1;
	text-align: center;
	color: var(--gc-text-soft, #5A6478);
	padding: 40px 0;
}
.gc-slot-prov__more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}
.gc-slot-prov__more {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 13px;
	font-weight: 600;
	color: #ffffff;
	background: var(--gc-primary, #00C6AE);
	border: none;
	border-radius: 8px;
	padding: 11px 28px;
	cursor: pointer;
	transition: background 0.15s ease;
}
.gc-slot-prov__more:hover {
	background: var(--gc-primary-dark, #00A894);
	color: #ffffff;
}
@media (max-width: 640px) {
	.gc-slot-prov__hero-in {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 16px;
		padding: 24px 20px;
	}
	.gc-slot-prov__logo {
		width: 64px;
		height: 64px;
		border-radius: 13px;
	}
	.gc-slot-prov__head { width: 100%; }
	.gc-slot-prov__name { font-size: 23px; }
	.gc-slot-prov__desc { margin-left: auto; margin-right: auto; }
	.gc-slot-prov__count {
		padding-left: 0;
		border-left: 0;
		border-top: 1px solid var(--gc-border, #E4EAF2);
		padding-top: 16px;
		width: 100%;
		display: flex;
		align-items: baseline;
		justify-content: center;
		gap: 8px;
	}
	.gc-slot-prov__count-n { font-size: 26px; }
	.gc-slot-prov__count-l { margin-top: 0; }
}

/* ── Dark mode ── */
[data-theme="dark"] .gc-slot-prov__hero-in {
	background: var(--gc-bg-soft);
	border-color: var(--gc-border);
}
[data-theme="dark"] .gc-slot-prov__logo {
	background: transparent;
	border-color: var(--gc-border);
}
[data-theme="dark"] .gc-slot-prov__logo-ini {
	color: #7DD3C8;
}
[data-theme="dark"] .gc-slot-prov__eyebrow {
	background: rgba(0, 198, 174, 0.08);
	border-color: rgba(0, 198, 174, 0.20);
	color: #7DD3C8;
}
[data-theme="dark"] .gc-slot-prov__dot {
	background: #7DD3C8;
}
[data-theme="dark"] .gc-slot-prov__count {
	border-left-color: var(--gc-border);
	border-top-color: var(--gc-border);
}