.tdWidthLeft {
	white-space: nowrap;
}

.tdcenter {
	text-align: center;
}

.fluid {
	width: 100%;
	height: auto;
}

.fluidReviewPicture {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
}

.withBorderBottom {
	border-bottom: 1px solid #e7e7e9;
	margin-bottom: 18px;
	padding-bottom: 18px;
}

.maxwin {
	font-weight: 700;
}

.top-bonus-heading .heading-row {
	display: flex;
	gap: .5rem;
	align-items: center;
}

.top-bonus-heading .heading-month-badge {
	background: #eef7ee;
	border-radius: 999px;
	padding: .1rem .6rem;
	font-size: .9rem;
}

.articleAuthor .header {
	display: flex;
	gap: .75rem;
	align-items: center;
}

.articleAuthor .post-author a {
	text-decoration: none;
}

/* YouTube responsive embed */
.youtube {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 8px;
}

.youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* -----------------------------
   GAME AREA (Demo iframe + UI)
------------------------------ */

.gameBox {
	position: relative;
	width: 100%;
	height: auto;
}

.gameContainer {
	position: relative;
	width: 100%;
	height: auto;
}

/* Desktop / default: stabilná výška cez aspect-ratio */
.gameStage {
	position: relative;
	width: 100%;
	aspect-ratio: 1110 / 400;
	min-height: 260px;
	overflow: hidden;
	border-radius: 12px;
}

/* Poster fills the stage */
#gamePoster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Mount fills the stage */
.gameMount {
	position: absolute;
	inset: 0;
}

.gameMount iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* Center the play button inside stage */
.gameStage #buttonFreePlayWrapper {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	pointer-events: none; /* iba button má chytať kliky */
}

/* Button – reset absolútnej pozície a zarovnanie cez flex */
.gameStage #buttonFreePlayWrapper .btn-freePlay {
	pointer-events: auto;

	position: relative !important;
	top: auto !important;
	right: auto !important;
	bottom: auto !important;
	left: auto !important;

	transform: none !important;
	margin: 0 !important;

	background: linear-gradient(145deg, #0eb00e, #099509);
	border: none;
	color: #fff;
	font-weight: 700;
	font-size: 1.25rem;
	padding: 16px 42px;
	border-radius: 12px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.gameStage #buttonFreePlayWrapper .btn-freePlay::before {
	content: "▶";
	font-size: 1.1rem;
	line-height: 1;
}

.gameStage #buttonFreePlayWrapper .btn-freePlay:hover {
	transform: scale(1.07) !important;
	background: linear-gradient(145deg, #12c812, #0aad0a);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.45);
}

.gameStage #buttonFreePlayWrapper .btn-freePlay:active {
	transform: scale(0.96) !important;
	background: linear-gradient(145deg, #087808, #066406);
}

@media (max-width: 768px) {
	.gameStage #buttonFreePlayWrapper .btn-freePlay {
		font-size: 1rem;
		padding: 12px 28px;
		border-radius: 10px;
	}
}

/* Overlays (Loader + Fallback) */
#gameOverlay,
#gameFallback {
	display: none; /* JS prepína na flex */
	position: absolute;
	inset: 0;
	background: rgba(245, 245, 245, 0.96);
	text-align: center;
	align-items: center;
	justify-content: center;
}

#gameOverlay {
	z-index: 6;
}

#gameFallback {
	z-index: 7;
	padding: 18px;
}

.gameSpinner {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 4px solid rgba(0, 0, 0, 0.12);
	border-top-color: rgba(0, 0, 0, 0.55);
	margin: 0 auto 12px;
	animation: spin 0.9s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.gameFallbackCard {
	background: #fff;
	border-radius: 12px;
	padding: 22px 18px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.gameFallbackActions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.gameFallbackActions .btn {
	min-width: 240px;
	max-width: 100%;
}

/* -----------------------------
   Slot overview table
------------------------------ */

.slot-overview-table {
	width: 100%;
	border-collapse: collapse;
}

/* mobil / menšie rozlíšenia */
@media (max-width: 1000px) {

	/* všetky tri tabuľky budú rovnako široké a v strede */
	.slot-overview-table {
		width: 400px;
		max-width: 100%;
		margin: 0 auto;
	}

	.slot-overview-table td {
		padding: 2px 0;
	}

	/* label */
	.slot-overview-table td:first-child {
		width: 60%;
	}

	/* hodnota / ikonka – už nie úplne na pravom okraji */
	.slot-overview-table td:last-child {
		width: 40%;
		text-align: left;
		padding-left: 0.75rem;
		white-space: nowrap;
	}
}

/* zvýraznenie hodnoty */
.highlight-row {
	font-weight: 700;
}

.highlightValue-row td:last-child {
	font-weight: 700;
}

/* na mobile môže byť zvýraznenie ešte jemnejšie, napr. väčšie písmo */
@media (max-width: 1000px) {
	.highlight-row td:last-child {
		font-size: 1.05rem;
	}
}

/* -----------------------------
   Mobilný fix fallbacku:
   - vypneme aspect-ratio
   - dáme vyšší min-height, aby sa karta celá zmestila
------------------------------ */
@media (max-width: 768px) {
	.gameStage {
		aspect-ratio: auto;
		min-height: 420px;
	}
}
