:root {
	--body-color: #171534;
	--surface-color: #1a1a1a;
	--latin-color: #fff;
	--header-color: #1a1a1a;
	--button1-color: #097d5e;
	--button2-color: #00eaab;
	--menu-color: #1a1a1a;
	--brand-color: #00eaab;
	--muted-color: #ccc;
	--border-color: rgba(204, 204, 204, 0.18);
	--ease-out: cubic-bezier(0.23, 1, 0.32, 1);
	--ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	background: var(--body-color);
	color: var(--latin-color);
	font-family: Poppins, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

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

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

.site-header {
	min-height: 60px;
	display: flex;
	align-items: center;
	background: var(--header-color);
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	line-height: 1.3;
	position: relative;
	z-index: 100;
}

.header-navigation-bar {
	width: min(1300px, 90vw);
	margin: 0 auto;
	padding: 6px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.site-brand,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	width: auto;
	height: 50px;
	overflow: hidden;
	color: transparent;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: clamp(1.35rem, 2vw, 1.95rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
	text-shadow: none;
}

.site-brand img {
	width: auto;
	height: 84px;
	object-fit: contain;
	transform: translateY(-14px);
}

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

.header-actions {
	display: flex;
	align-items: stretch;
	gap: 10px;
	flex-shrink: 0;
}

.header-lang-switcher.lang-switcher--flags-dropdown {
	display: flex;
	align-items: stretch;
	align-self: auto;
	position: relative;
}

.lang-switcher--flags-dropdown .lang-switcher__toggle {
	height: 100%;
	min-height: 36px;
	cursor: pointer;
	list-style: none;
}

.lang-switcher--flags-dropdown .lang-switcher__toggle::-webkit-details-marker {
	display: none;
}

.lang-switcher--flags-dropdown[open] .lang-switcher__toggle {
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.06);
}

.lang-switcher__flag {
	display: block;
	width: 24px;
	height: 16px;
	object-fit: cover;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.lang-switcher--flags-dropdown .lang-switcher__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 200;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 52px;
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 10px;
	background: rgba(18, 20, 24, 0.98);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.lang-switcher--flags-dropdown:not([open]) .lang-switcher__menu {
	display: none;
}

.lang-switcher--flags-dropdown .lang-switcher__option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	border-radius: 6px;
	opacity: 0.82;
	transition: opacity 160ms var(--ease-out), background-color 160ms var(--ease-out);
}

.lang-switcher--flags-dropdown .lang-switcher__option:hover,
.lang-switcher--flags-dropdown .lang-switcher__option:focus-visible {
	opacity: 1;
	background: rgba(255, 255, 255, 0.08);
}

.lang-switcher--flags a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 6px;
	padding: 2px;
	opacity: 0.78;
	transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.lang-switcher--flags a:hover,
.lang-switcher--flags a:focus-visible,
.lang-switcher--flags a.is-active {
	opacity: 1;
	transform: translateY(-1px);
}

.header-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 86px;
	min-height: 36px;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1;
	transition: transform 160ms var(--ease-out), background-color 160ms var(--ease-out), color 160ms var(--ease-out);
}

.header-action:active {
	transform: scale(0.97);
}

.header-action-login {
	border: 1px solid rgba(204, 204, 204, 0.35);
	color: #fff;
	background: transparent;
}

.header-action-primary {
	color: #061714;
	background: var(--brand-color);
}

.page-content-area {
	padding: 0 0 40px;
	background: var(--body-color);
}

.page-container-wrapper {
	width: min(1300px, 90vw);
	margin: 0 auto;
	padding-top: 34px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.content-primary-column {
	width: min(980px, 100%);
	margin: 0 auto;
}

.promo-banner-section {
	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: clamp(520px, 35vw, 675px);
	margin-bottom: 0;
	background: #111;
}

.wp-block-cover.promo-banner-section {
	padding: 0;
}

.promo-banner-section img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.02);
}

.promo-banner-section .wp-block-cover__inner-container {
	position: absolute;
	inset: 0;
	width: 100%;
	max-width: none;
	color: inherit;
}

.banner-inner-content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: clamp(40px, 6vw, 92px) clamp(28px, 6.5vw, 126px);
	background:
		linear-gradient(90deg, rgba(28, 12, 42, 0.82) 0%, rgba(28, 12, 42, 0.54) 38%, rgba(28, 12, 42, 0.1) 70%),
		radial-gradient(circle at 77% 49%, rgba(2, 255, 190, 0.18), transparent 28%);
}

.banner-text-block {
	position: relative;
	display: flex;
	min-height: calc(clamp(520px, 35vw, 675px) - 80px);
	max-width: 850px;
	flex-direction: column;
	justify-content: center;
	text-align: left;
}

.banner-text-block h1 {
	max-width: 860px;
	margin: 34px 0 48px;
	color: #fff;
	font-size: clamp(2.8rem, 3.35vw, 4rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-kicker,
.hero-copy,
.hero-terms {
	margin: 0;
	color: #fff;
	font-weight: 800;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-kicker {
	font-size: clamp(1.2rem, 1.45vw, 1.7rem);
}

.hero-copy {
	margin-bottom: 54px;
	font-size: clamp(0.98rem, 1.1vw, 1.15rem);
}

.hero-terms {
	position: absolute;
	left: 0;
	bottom: 0;
	max-width: min(1200px, calc(100vw - 190px));
	font-size: 0.72rem;
	line-height: 1.45;
}

.hero-terms span,
.hero-terms strong {
	display: inline-grid;
	width: 22px;
	height: 22px;
	place-items: center;
	margin-right: 16px;
	border-radius: 50%;
	background: #fff;
	color: #251236;
	font-size: 0.72rem;
	font-weight: 900;
	text-shadow: none;
	vertical-align: middle;
}

.hero-terms a {
	text-decoration: underline;
}

a.cta-button-animated,
.wp-block-button.cta-button-animated .wp-block-button__link,
.action-button-group .href {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 45px;
	border-radius: 12px;
	font-weight: 800;
	text-align: center;
	transition: transform 160ms var(--ease-out), filter 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.wp-block-button.cta-button-animated .wp-block-button__link,
a.cta-button-animated,
.action-button-group .href-primary {
	color: #041411;
	background: var(--button2-color);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.22);
	animation: register-attract 3s ease-in-out infinite;
}

a.cta-button-animated,
.wp-block-button.cta-button-animated .wp-block-button__link {
	width: 174px;
	min-height: 56px;
	margin-bottom: 58px;
	padding: 14px 28px;
	border-radius: 8px;
	color: #06221d;
	font-size: 1rem;
	text-shadow: none;
}

.wp-block-button.cta-button-animated {
	margin: 0;
	width: auto;
	min-height: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
	animation: none;
}

.promo-banner-section .banner-inner-content {
	max-width: none;
}

.banner-text-block,
.banner-text-block > * {
	margin-left: 0 !important;
	margin-right: 0 !important;
	text-align: left;
}

.banner-text-block .wp-block-buttons {
	justify-content: flex-start;
}

.cta-button-animated:active,
.action-button-group .href:active,
.game-card-item:active {
	transform: scale(0.97);
}

.game-grid-container {
	display: grid;
	grid-template-columns: repeat(6, minmax(120px, 1fr));
	gap: 15px;
	margin: 22px 0 22px;
}

.game-card-item {
	position: relative;
	min-height: 187px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: stretch;
	overflow: hidden;
	border-radius: 5px;
	background: var(--surface-color);
	filter: drop-shadow(0 11px 8px rgba(0, 234, 171, 0.1));
	transition: transform 180ms var(--ease-out), filter 180ms var(--ease-out);
}

.game-card-item::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(26, 26, 26, 0.64);
	opacity: 0;
	transition: opacity 180ms var(--ease-out);
}

.game-card-item::after {
	content: "▶";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: #fff;
	color: var(--button1-color);
	font-size: 22px;
	line-height: 1;
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.95);
	transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.game-card-item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.game-title-label {
	position: relative;
	z-index: 3;
	width: 100%;
	padding: 7px 6px;
	background: var(--button1-color);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
}

.dunder-entry-content h1,
.dunder-entry-content h2,
.dunder-entry-content h3,
.reviews-section h2,
.faq-section h2 {
	color: #fff;
	line-height: 1.18;
	margin: 1.35em 0 0.55em;
	letter-spacing: 0;
}

.dunder-entry-content h1 {
	margin-top: 0.7em;
	font-size: clamp(2rem, 4vw, 3.25rem);
}

.dunder-entry-content h2,
.reviews-section h2,
.faq-section h2 {
	font-size: clamp(1.55rem, 2.3vw, 2.1rem);
}

.dunder-entry-content h3 {
	font-size: clamp(1.25rem, 1.9vw, 1.5rem);
}

.dunder-entry-content p,
.dunder-entry-content li {
	color: #ccc;
}

.dunder-entry-content ul {
	padding-left: 1.3rem;
}

.payments-image {
	display: flex;
	justify-content: center;
	margin: 20px 0;
}

.payments-image img {
	width: 250px;
	height: 350px;
	object-fit: cover;
	border-radius: 10px;
}

.source-link {
	display: inline-block;
	padding: 2px 4px;
	border-radius: 3px;
	background-color: rgba(0, 234, 171, 0.1);
	color: #00eaab;
}

.tbl-scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 20px 0;
	border: 1px solid var(--border-color);
	border-radius: 10px;
}

table {
	width: 100%;
	min-width: 850px;
	border-collapse: collapse;
	background: #1a1a1a;
}

th,
td {
	padding: 12px 10px;
	border: 1px solid var(--border-color);
	text-align: left;
	vertical-align: top;
}

th {
	color: #fff;
	background: #097d5e;
}

.reviews-grid-container {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 0 auto;
	padding: 6px 0 20px;
	align-items: stretch;
}

.reviews-grid-container.is-layout-flow > *,
.reviews-grid-container.wp-block-group-is-layout-flow > * {
	margin-block-start: 0 !important;
}

.reviews-grid-container > .review-single-card,
.reviews-grid-container > .wp-block-group.review-single-card {
	display: flex !important;
	flex-direction: column;
	box-sizing: border-box;
	align-self: stretch;
	height: 100%;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	background: var(--surface-color);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.reviews-grid-container > .wp-block-group.review-single-card.is-layout-constrained,
.reviews-grid-container > .review-single-card.is-layout-constrained {
	max-width: none !important;
	width: 100%;
}

.review-single-card {
	padding: 20px;
	transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.reviewer-name-heading {
	flex-shrink: 0;
	margin: 0 0 8px;
	font-weight: 800;
}

.review-content-text {
	flex: 1 1 auto;
	margin: 0;
	color: #ccc;
}

.rating-stars {
	flex-shrink: 0;
	margin: 0;
	margin-top: auto;
	padding-top: 10px;
	color: #ffd700;
	letter-spacing: 0;
}

.faq-accordion-section {
	display: grid !important;
	grid-template-columns: 1fr;
	gap: 16px;
	margin: 0 auto;
	padding: 6px 0 20px;
}

.faq-accordion-section > .faq-single-item {
	display: flex !important;
	flex-direction: column;
	box-sizing: border-box;
	height: auto;
	min-height: 0;
	overflow: hidden;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	background: var(--surface-color);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question-header {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 64px;
	padding: 16px 20px;
	border-bottom: 1px solid var(--border-color);
	background: var(--header-color);
	text-align: center;
}

.faq-question-header h3 {
	margin: 0;
	color: #fff;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.35;
}

.faq-answer-content {
	flex: 0 0 auto;
	padding: 16px 20px 20px;
	color: #ccc;
	font-size: 16px;
	line-height: 1.55;
}

.faq-answer-content p {
	margin: 0;
}

.wp-block-details.faq-single-item {
	padding: 0;
}

.wp-block-details.faq-single-item summary {
	padding: 13px 16px;
	border-bottom: 1px solid var(--border-color);
	background: var(--header-color);
	color: #fff;
	cursor: default;
	font-size: 17px;
	font-weight: 800;
	text-align: center;
	list-style: none;
	pointer-events: none;
}

.wp-block-details.faq-single-item summary::-webkit-details-marker {
	display: none;
}

.wp-block-details.faq-single-item p {
	margin: 0;
	padding: 14px 16px 16px;
	color: #ccc;
	font-size: 16px;
	line-height: 1.55;
}

.faq-single-item h3 {
	margin: 0;
}

.single-game-card {
	display: grid;
	grid-template-columns: minmax(220px, 360px) 1fr;
	gap: 24px;
	padding: 24px;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	background: #1a1a1a;
}

.single-game-media img {
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.single-game-content h1 {
	margin-top: 0;
	line-height: 1.15;
}

.single-game-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
	color: #ccc;
}

.menu-links-list,
.footer-menu-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu-links-list a,
.footer-menu-list a {
	display: block;
	color: #fff;
	font-weight: 700;
}

.site-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 26px 20px 22px;
	border-top: 1px solid var(--muted-color);
	background: #1a1a1a;
	color: var(--muted-color);
}

.footer-navigation-menu,
.footer-menu-list {
	align-items: center;
}

.footer-navigation-menu {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-email {
	color: var(--brand-color);
}

.lang-switcher {
	padding: 8px 0 0;
	font-size: 14px;
	opacity: 0.85;
}

.lang-switcher a {
	margin: 0 7px;
}

.lang-switcher .is-active {
	text-decoration: underline;
	font-weight: 800;
}

.trust-badge-row {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.trust-badge-row a {
	display: block;
	padding: 5px;
}

.trust-badge-row img {
	width: 96px;
	height: 56px;
	object-fit: contain;
}

.footer-copyright-area {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

@media (hover: hover) and (pointer: fine) {
	.cta-button-animated:hover,
	.action-button-group .href-primary:hover {
		filter: brightness(1.15);
		animation-play-state: paused;
	}

	.action-button-group .href:hover {
		transform: scale(1.05);
	}

	.game-card-item:hover {
		transform: translateY(-3px);
		filter: drop-shadow(0 16px 14px rgba(0, 234, 171, 0.16));
	}

	.game-card-item:hover::before,
	.game-card-item:hover::after {
		opacity: 0.92;
	}

	.game-card-item:hover::after {
		transform: translate(-50%, -50%) scale(1);
	}

	.review-single-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	}

	.header-action-login:hover {
		background: rgba(255, 255, 255, 0.08);
	}

	.header-action-primary:hover {
		background: var(--brand-color);
		filter: brightness(1.08);
	}
}

@media (max-width: 1200px) {
	.game-grid-container {
		grid-template-columns: repeat(4, minmax(120px, 1fr));
	}
}

@media (max-width: 1024px) {
	.header-navigation-bar {
		width: 90vw;
	}

	.header-action {
		min-width: 74px;
		min-height: 34px;
		padding-inline: 12px;
		font-size: 0.88rem;
	}

	.lang-switcher--flags-dropdown .lang-switcher__toggle {
		min-height: 34px;
	}

	.page-content-area {
		padding-top: 0;
	}

	.page-container-wrapper {
		width: 90vw;
	}

	.content-primary-column {
		width: 100%;
	}

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

@media (max-width: 768px) {
	.game-grid-container {
		grid-template-columns: repeat(2, minmax(130px, 1fr));
	}

	.promo-banner-section {
		min-height: clamp(580px, 128vw, 760px);
	}

	.promo-banner-section img {
		height: 100%;
		object-position: 64% center;
	}

	.banner-inner-content {
		align-items: flex-start;
		padding: 58px 7vw 28px;
		background: linear-gradient(90deg, rgba(28, 12, 42, 0.9), rgba(28, 12, 42, 0.38));
	}

	.banner-text-block {
		min-height: auto;
		max-width: 92vw;
		justify-content: flex-start;
	}

	.banner-text-block h1 {
		margin: 26px 0 28px;
		font-size: clamp(2.5rem, 11vw, 4rem);
	}

	.hero-copy {
		margin-bottom: 28px;
	}

	a.cta-button-animated,
	.wp-block-button.cta-button-animated .wp-block-button__link,
	.cta-button-animated {
		margin-bottom: 0;
	}

	.hero-terms {
		position: static;
		max-width: 100%;
		margin-top: 18px;
		font-size: 0.66rem;
		font-weight: 400;
		line-height: 1.5;
	}

	.reviews-grid-container {
		grid-template-columns: 1fr;
	}

	.reviews-grid-container > .review-single-card,
	.reviews-grid-container > .wp-block-group.review-single-card {
		height: auto;
	}

	.single-game-card {
		grid-template-columns: 1fr;
		padding: 18px;
	}

}

@media (max-width: 420px) {
	.game-grid-container {
		gap: 10px;
	}

	.game-card-item {
		min-height: 168px;
	}

	.game-title-label {
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 1ms !important;
	}

}

@keyframes gradientshift {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes register-attract {
	0%,
	92%,
	100% {
		transform: scale(1);
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 rgba(255, 215, 0, 0);
		filter: brightness(1);
	}

	96% {
		transform: scale(1.03);
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 16px rgba(0, 234, 171, 0.36);
		filter: brightness(1.08);
	}
}
