/* ============================================================
   Single Demo Slot — single-gc_slot.php
   Launcher facade + iframe + spec sidebar.
   ============================================================ */

.gc-slot__wrap {
	max-width: var(--gc-max-width, 1280px);
	margin: 0 auto;
	padding: 28px 24px 80px;
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 32px;
	align-items: start;
}

/* LAUNCHER */
.gc-slot__launcher {
	background: var(--gc-bg-soft);
	border: 0.5px solid var(--gc-border, #E4EAF2);
	border-radius: 16px;
	overflow: hidden;
}
.gc-slot__facade {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #0D1B3E 0%, #1A2F5E 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	overflow: hidden;
}
.gc-slot__facade-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}
.gc-slot__facade::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 40%, rgba(0, 198, 174, .18), transparent 60%);
}
.gc-slot__facade-inner {
	position: relative;
	z-index: 1;
	text-align: center;
}
.gc-slot__facade-title {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 30px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 6px;
	letter-spacing: -.5px;
}
.gc-slot__facade-prov {
	font-size: 13px;
	color: rgba(255, 255, 255, .6);
	margin-bottom: 24px;
}
.gc-slot__play {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: var(--gc-primary, #00C6AE);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 28px rgba(0, 198, 174, .5);
	transition: transform .2s ease;
}
.gc-slot__facade:hover .gc-slot__play {
	transform: scale(1.08);
}
.gc-slot__play svg {
	width: 34px;
	height: 34px;
	color: #fff;
	margin-left: 4px;
}
.gc-slot__play-label {
	display: block;
	margin-top: 16px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, .85);
}
.gc-slot__facade--empty {
	cursor: default;
}
.gc-slot__facade--empty .gc-slot__facade-prov,
.gc-slot__facade--empty .gc-slot__play {
	display: none;
}

/* IFRAME (after click) */
.gc-slot__frame {
	aspect-ratio: 16 / 10;
	width: 100%;
	background: #000;
}
.gc-slot__iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* BAR */
.gc-slot__bar {
	padding: 14px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	border-top: 0.5px solid var(--gc-border, #E4EAF2);
}
.gc-slot__bar-left {
	display: flex;
	align-items: center;
	gap: 10px;
}
.gc-slot__btn {
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 12.5px;
	font-weight: 700;
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	cursor: pointer;
	border: 0.5px solid var(--gc-border, #E4EAF2);
	background: var(--gc-bg-soft);
	color: var(--gc-navy, #0D1B3E);
	transition: .15s;
}
.gc-slot__btn:hover {
	border-color: var(--gc-primary, #00C6AE);
	color: var(--gc-primary-dark, #00A894);
}
.gc-slot__btn--play {
	background: #0D1B3E;
	color: #fff;
	border-color: var(--gc-navy, #0D1B3E);
}
.gc-slot__btn--play:hover {
	background: var(--gc-primary, #00C6AE);
	border-color: var(--gc-primary, #00C6AE);
	color: #fff;
}
.gc-slot__bar-note {
	font-size: 11px;
	color: var(--gc-light, #94A3B8);
}

/* BODY */
.gc-slot__body {
	margin-top: 28px;
}
.gc-slot__tag {
	display: inline-flex;
	padding: 4px 12px;
	background: var(--gc-primary-soft, #E6FAF7);
	color: #04342C;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.gc-slot__title {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 30px;
	font-weight: 800;
	color: var(--gc-navy, #0D1B3E);
	letter-spacing: -.5px;
	margin: 0 0 8px;
}
.gc-slot__provline {
	font-size: 14px;
	color: var(--gc-muted, #64748B);
	margin-bottom: 20px;
}
.gc-slot__provline a {
	color: var(--gc-primary-dark, #00A894);
	font-weight: 600;
}
.gc-slot__content {
	font-size: 15px;
	line-height: 1.8;
	color: var(--gc-muted, #64748B);
}
.gc-slot__content h2 {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 20px;
	color: var(--gc-navy, #0D1B3E);
	margin: 28px 0 12px;
}
.gc-slot__content p { margin-bottom: 14px; }

/* SPEC SIDEBAR */
.gc-slot__spec {
	background: var(--gc-bg-soft);
	border: 0.5px solid var(--gc-border, #E4EAF2);
	border-radius: 14px;
	overflow: hidden;
	position: sticky;
	top: 20px;
}
.gc-slot__spec-head {
	padding: 16px 20px;
	background: #0D1B3E;
	color: #fff;
}
.gc-slot__spec-t {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 15px;
	font-weight: 700;
}
.gc-slot__spec-s {
	font-size: 11.5px;
	color: rgba(255, 255, 255, .6);
	margin-top: 2px;
}
.gc-slot__spec-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 20px;
	border-bottom: 0.5px solid var(--gc-border, #E4EAF2);
	font-size: 13px;
}
.gc-slot__spec-row:last-child { border-bottom: none; }
.gc-slot__spec-k { color: var(--gc-muted, #64748B); }
.gc-slot__spec-v {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-weight: 700;
	color: var(--gc-navy, #0D1B3E);
	text-align: right;
}
.gc-slot__feat-yes { color: var(--gc-primary, #00C6AE); }
.gc-slot__spec-v--rtp { color: var(--gc-primary, #00C6AE); }

.gc-slot__vol {
	font-size: 10px;
	padding: 2px 8px;
	border-radius: 5px;
	font-weight: 800;
}
.gc-slot__vol--low { background: #d1fae5; color: #047857; }
.gc-slot__vol--medium { background: #fef9c3; color: #854d0e; }
.gc-slot__vol--high { background: #fee2e2; color: #991b1b; }
.gc-slot__vol--very_high { background: #fde2e2; color: #7f1d1d; }

.gc-slot__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	padding: 14px 20px;
	border-top: 0.5px solid var(--gc-border, #E4EAF2);
}
.gc-slot__gtag {
	font-size: 10.5px;
	padding: 3px 9px;
	background: var(--gc-bg-soft, #F8FAFC);
	border: 0.5px solid var(--gc-border, #E4EAF2);
	border-radius: 6px;
	color: var(--gc-muted, #64748B);
	font-weight: 600;
}
.gc-slot__gtag--lang { color: var(--gc-light, #94A3B8); }

/* DARK MODE */
[data-theme="dark"] .gc-slot__launcher,
[data-theme="dark"] .gc-slot__spec {
	background: var(--gc-bg-soft);
	border-color: rgba(255, 255, 255, .08);
}
[data-theme="dark"] .gc-slot__title,
[data-theme="dark"] .gc-slot__content h2,
[data-theme="dark"] .gc-slot__spec-v {
	color: #f1f5f9;
}
[data-theme="dark"] .gc-slot__spec-v--rtp,
[data-theme="dark"] .gc-slot__feat-yes { color: var(--gc-primary, #00C6AE); }

/* RESPONSIVE */
@media (max-width: 1024px) {
	.gc-slot__wrap { grid-template-columns: 1fr; }
	.gc-slot__spec { position: static; }
}
@media (max-width: 600px) {
	.gc-slot__facade-title { font-size: 22px; }
	.gc-slot__title { font-size: 24px; }
}
/* ── Dark mode: teal tag badge ── */
[data-theme="dark"] .gc-slot__tag {
	background: rgba(0, 198, 174, 0.18);
	color: #5EEAD4;
}