/**
 * 8GBet homepage — layout ported from static index.html, brand tokens from style.css.
 */

.gbet-home {
	--home-container: 1200px;
	--home-section-pad: clamp(3rem, 6vw, 5rem);
	color: var(--8gbet-color-text);
	background: var(--8gbet-color-bg);
}

.gbet-home .home-container {
	max-width: var(--home-container);
	margin: 0 auto;
	padding: 0 1.25rem;
}

.gbet-home .home-section {
	padding: var(--home-section-pad) 0;
}

.gbet-home .home-section:nth-child(even) {
	background: var(--8gbet-color-surface);
}

/* Section header */
.gbet-home .home-section-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 2.5rem;
}

.gbet-home .home-section-badge {
	display: inline-flex;
	margin-bottom: 0.75rem;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 242, 0, 0.12);
	border: 1px solid rgba(255, 242, 0, 0.35);
	color: var(--8gbet-color-accent);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.gbet-home .home-section-title {
	margin: 0 0 0.85rem;
	font-size: clamp(1.75rem, 3.5vw, 2.35rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--8gbet-color-text);
}

.gbet-home .home-section-description,
.gbet-home .home-section-description--rich {
	margin: 0 auto 1.5rem;
	max-width: 820px;
	color: var(--8gbet-color-text-muted);
	font-size: 1.05rem;
	line-height: 1.65;
	text-align: center;
}

.gbet-home .home-section-description--rich {
	text-align: left;
}

.gbet-home .home-section-description--rich code {
	padding: 0.1rem 0.35rem;
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.25);
	color: var(--8gbet-color-accent);
}

.gbet-home .home-section-description--rich a {
	color: var(--8gbet-color-accent);
}

.gbet-home .home-gradient-text {
	color: var(--8gbet-color-accent);
}

/* Buttons */
.gbet-home .home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.65rem 1.25rem;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border: 2px solid transparent;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gbet-home .home-btn:hover {
	text-decoration: none;
	transform: translateY(-2px);
}

.gbet-home .home-btn--primary {
	background: var(--8gbet-color-accent);
	border-color: var(--8gbet-color-accent);
	color: var(--8gbet-color-text-on-accent);
}

.gbet-home .home-btn--primary:hover {
	background: var(--8gbet-color-accent-hover);
	border-color: var(--8gbet-color-accent-hover);
	color: var(--8gbet-color-text-on-accent);
}

.gbet-home .home-btn--outline {
	background: transparent;
	border-color: var(--8gbet-color-text);
	color: var(--8gbet-color-text);
}

.gbet-home .home-btn--outline:hover {
	border-color: var(--8gbet-color-accent);
	color: var(--8gbet-color-accent);
}

.gbet-home .home-btn--large {
	padding: 0.9rem 1.75rem;
	font-size: 1rem;
}

.gbet-home .home-btn--small {
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}

/* Hero */
.gbet-home .home-hero {
	padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
	background: linear-gradient(180deg, var(--8gbet-color-surface) 0%, var(--8gbet-color-bg) 100%);
	border-bottom: 1px solid var(--8gbet-color-border-subtle);
}

.gbet-home .home-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.gbet-home .home-hero__badge {
	display: inline-flex;
	margin-bottom: 1rem;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	background: rgba(255, 242, 0, 0.12);
	border: 1px solid rgba(255, 242, 0, 0.35);
	color: var(--8gbet-color-accent);
	font-size: 0.8rem;
	font-weight: 700;
}

.gbet-home .home-hero__title {
	margin: 0 0 1.25rem;
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--8gbet-color-text);
}

.gbet-home .home-hero__description {
	margin: 0 0 1.75rem;
	font-size: 1.125rem;
	line-height: 1.65;
	color: var(--8gbet-color-text-muted);
	max-width: 560px;
}

.gbet-home .home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.gbet-home .home-hero-card {
	background: var(--8gbet-color-surface-elevated);
	border: 1px solid var(--8gbet-color-border-subtle);
	border-radius: var(--8gbet-radius);
	padding: 1.25rem;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.gbet-home .home-hero-card__img {
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 0 auto 1.25rem;
	border-radius: 10px;
}

.gbet-home .home-live-data__title,
.gbet-home .home-highlights__title {
	margin: 0 0 0.85rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--8gbet-color-accent);
}

.gbet-home .home-live-data__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.gbet-home .home-live-data__item {
	padding: 0.75rem;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.2);
	text-align: center;
}

.gbet-home .home-live-data__number {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--8gbet-color-accent);
}

.gbet-home .home-live-data__label {
	font-size: 0.72rem;
	color: var(--8gbet-color-text-muted);
}

.gbet-home .home-highlights__list {
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
}

.gbet-home .home-highlights__list li {
	padding: 0.35rem 0;
	font-size: 0.875rem;
	color: var(--8gbet-color-text);
	border-bottom: 1px solid var(--8gbet-color-border-subtle);
}

.gbet-home .home-cert-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.gbet-home .home-cert-badge {
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(255, 242, 0, 0.1);
	border: 1px solid rgba(255, 242, 0, 0.25);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--8gbet-color-text);
}

/* Features */
.gbet-home .home-features__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.gbet-home .home-feature-card {
	padding: 1.5rem;
	border-radius: var(--8gbet-radius);
	background: var(--8gbet-color-surface-elevated);
	border: 1px solid var(--8gbet-color-border-subtle);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.gbet-home .home-feature-card:hover {
	transform: translateY(-4px);
	border-color: var(--8gbet-color-accent);
}

.gbet-home .home-feature-card__title {
	margin: 0 0 0.65rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--8gbet-color-text);
}

.gbet-home .home-feature-card__text {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	color: var(--8gbet-color-text-muted);
	line-height: 1.6;
}

.gbet-home .home-feature-card__link {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--8gbet-color-accent);
	text-transform: uppercase;
}

/* Promo cards */
.gbet-home .home-promos__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.gbet-home .home-promo-card {
	position: relative;
	border-radius: var(--8gbet-radius);
	background: var(--8gbet-color-surface-elevated);
	border: 1px solid var(--8gbet-color-border-subtle);
	overflow: hidden;
}

.gbet-home .home-promo-card--featured {
	border-color: var(--8gbet-color-accent);
	box-shadow: 0 0 0 1px rgba(255, 242, 0, 0.25);
}

.gbet-home .home-promo-card__badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	background: var(--8gbet-color-accent);
	color: var(--8gbet-color-text-on-accent);
	font-size: 0.65rem;
	font-weight: 800;
}

.gbet-home .home-promo-card__content {
	padding: 1.5rem;
}

.gbet-home .home-promo-card__title {
	margin: 0 0 0.65rem;
	font-size: 1.15rem;
	font-weight: 700;
}

.gbet-home .home-promo-card__text {
	margin: 0 0 1.25rem;
	font-size: 0.9rem;
	color: var(--8gbet-color-text-muted);
	line-height: 1.6;
}

.gbet-home .home-promo-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.gbet-home .home-promo-card__value {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--8gbet-color-accent);
}

/* FAQ */
.gbet-home .home-faq__list {
	max-width: 860px;
	margin: 0 auto;
}

.gbet-home .home-faq__item {
	margin-bottom: 0.75rem;
	border-radius: var(--8gbet-radius);
	background: var(--8gbet-color-surface-elevated);
	border: 1px solid var(--8gbet-color-border-subtle);
	overflow: hidden;
}

.gbet-home .home-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border: 0;
	background: transparent;
	color: var(--8gbet-color-text);
	font-size: 1rem;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.gbet-home .home-faq__question:hover {
	color: var(--8gbet-color-accent);
}

.gbet-home .home-faq__icon {
	flex-shrink: 0;
	color: var(--8gbet-color-accent);
	font-size: 1.25rem;
	font-weight: 700;
}

.gbet-home .home-faq__answer {
	padding: 0 1.25rem 1rem;
	color: var(--8gbet-color-text-muted);
	line-height: 1.65;
}

.gbet-home .home-faq__item:not(.is-open) .home-faq__answer {
	display: none;
}

/* Office */
.gbet-home .home-office__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-bottom: 2rem;
}

.gbet-home .home-office-card {
	padding: 1.5rem;
	border-radius: var(--8gbet-radius);
	background: var(--8gbet-color-surface-elevated);
	border: 1px solid var(--8gbet-color-border-subtle);
}

.gbet-home .home-office-card__icon {
	font-size: 2rem;
	margin-bottom: 0.75rem;
}

.gbet-home .home-office-card__title {
	margin: 0 0 1rem;
	font-size: 1.1rem;
	font-weight: 700;
}

.gbet-home .home-office-card__details p,
.gbet-home .home-office-card__hours p {
	margin: 0 0 0.35rem;
	font-size: 0.875rem;
	color: var(--8gbet-color-text-muted);
	line-height: 1.55;
}

.gbet-home .home-office-card__hours {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--8gbet-color-border-subtle);
}

.gbet-home .home-office__map-title {
	margin: 0 0 1rem;
	text-align: center;
	font-size: 1.15rem;
	font-weight: 700;
}

.gbet-home .home-office__map-frame {
	border-radius: var(--8gbet-radius);
	overflow: hidden;
	border: 1px solid var(--8gbet-color-border-subtle);
}

.gbet-home .home-office__map-frame iframe {
	display: block;
	width: 100%;
	min-height: 360px;
	border: 0;
}

.gbet-home .home-office__map-note {
	margin: 1rem auto 0;
	max-width: 760px;
	text-align: center;
	font-size: 0.875rem;
	color: var(--8gbet-color-text-muted);
}

/* Ratings */
.gbet-home .home-ratings__header {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 2rem;
	align-items: start;
	margin-bottom: 2rem;
}

.gbet-home .home-ratings__summary {
	padding: 1.5rem;
	border-radius: var(--8gbet-radius);
	background: var(--8gbet-color-surface-elevated);
	border: 1px solid var(--8gbet-color-border-subtle);
	text-align: center;
}

.gbet-home .home-ratings__score {
	font-size: 3rem;
	font-weight: 800;
	color: var(--8gbet-color-accent);
	line-height: 1;
}

.gbet-home .home-ratings__count {
	margin: 0.5rem 0 1rem;
	font-size: 0.85rem;
	color: var(--8gbet-color-text-muted);
}

.gbet-home .home-ratings__meta {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.8rem;
	color: var(--8gbet-color-text-muted);
}

.gbet-home .home-ratings__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.gbet-home .home-ratings-card {
	padding: 1.25rem;
	border-radius: var(--8gbet-radius);
	background: var(--8gbet-color-surface-elevated);
	border: 1px solid var(--8gbet-color-border-subtle);
}

.gbet-home .home-ratings-card__header {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.75rem;
	align-items: start;
	margin-bottom: 0.85rem;
}

.gbet-home .home-ratings-card__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--8gbet-color-accent);
	color: var(--8gbet-color-text-on-accent);
	font-size: 0.75rem;
	font-weight: 800;
}

.gbet-home .home-ratings-card__title {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 700;
}

.gbet-home .home-ratings-card__meta {
	margin: 0.15rem 0 0;
	font-size: 0.75rem;
	color: var(--8gbet-color-text-muted);
}

.gbet-home .home-ratings-card__score {
	font-size: 1rem;
	font-weight: 800;
	color: var(--8gbet-color-accent);
}

.gbet-home .home-ratings-card__text {
	margin: 0;
	font-size: 0.875rem;
	color: var(--8gbet-color-text-muted);
	line-height: 1.6;
}

/* Game embed */
.gbet-home .home-game__embed {
	display: flex;
	justify-content: center;
}

.gbet-home .home-game__embed iframe {
	width: min(100%, 800px);
	max-width: 100%;
	aspect-ratio: 1;
	height: auto;
	min-height: 320px;
	border: 1px solid var(--8gbet-color-border-subtle);
	border-radius: var(--8gbet-radius);
	background: var(--8gbet-color-nav-bg);
}

/* Info steps */
.gbet-home .home-info__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}

.gbet-home .home-info-card {
	display: flex;
	gap: 1rem;
	padding: 1.25rem;
	border-radius: var(--8gbet-radius);
	background: var(--8gbet-color-surface-elevated);
	border: 1px solid var(--8gbet-color-border-subtle);
}

.gbet-home .home-info-card__number {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--8gbet-color-accent);
	color: var(--8gbet-color-text-on-accent);
	font-weight: 800;
}

.gbet-home .home-info-card__title {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 700;
}

.gbet-home .home-info-card__text {
	font-size: 0.875rem;
	color: var(--8gbet-color-text-muted);
	line-height: 1.6;
}

.gbet-home .home-info-card__text a {
	color: var(--8gbet-color-accent);
}

/* Reviews */
.gbet-home .home-reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.gbet-home .home-review-card {
	padding: 1.25rem;
	border-radius: var(--8gbet-radius);
	background: var(--8gbet-color-surface-elevated);
	border: 1px solid var(--8gbet-color-border-subtle);
}

.gbet-home .home-review-card__header {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.75rem;
	align-items: center;
	margin-bottom: 0.85rem;
}

.gbet-home .home-review-card__author {
	font-weight: 700;
	font-size: 0.9rem;
}

.gbet-home .home-review-card__platform {
	font-size: 0.75rem;
	color: var(--8gbet-color-text-muted);
}

.gbet-home .home-review-card__rating {
	margin-left: auto;
	font-weight: 800;
	color: var(--8gbet-color-accent);
}

.gbet-home .home-review-card__content {
	font-size: 0.875rem;
	color: var(--8gbet-color-text-muted);
	line-height: 1.6;
}

.gbet-home .home-review-card__footer {
	margin-top: 0.85rem;
	padding-top: 0.85rem;
	border-top: 1px solid var(--8gbet-color-border-subtle);
	font-size: 0.75rem;
	color: var(--8gbet-color-text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
	.gbet-home .home-hero__grid,
	.gbet-home .home-ratings__header {
		grid-template-columns: 1fr;
	}

	.gbet-home .home-features__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gbet-home .home-promos__grid,
	.gbet-home .home-office__grid,
	.gbet-home .home-ratings__grid,
	.gbet-home .home-reviews__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.gbet-home .home-features__grid,
	.gbet-home .home-promos__grid,
	.gbet-home .home-office__grid,
	.gbet-home .home-ratings__grid,
	.gbet-home .home-info__grid,
	.gbet-home .home-reviews__grid,
	.gbet-home .home-live-data__grid {
		grid-template-columns: 1fr;
	}

	.gbet-home .home-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.gbet-home .home-promo-card__footer {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Dynamic digital games grid (MVP) */
.eightgbet-game-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
}

.eightgbet-game-card {
	background: #fff;
	border: 1px solid rgba(26, 91, 54, 0.12);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eightgbet-game-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(26, 91, 54, 0.12);
}

.eightgbet-game-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.eightgbet-game-card__media {
	position: relative;
	overflow: hidden;
	background: #eef0f2;
}

.eightgbet-game-card__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: #f3f5f4;
}

.eightgbet-game-card__thumb--placeholder {
	min-height: 140px;
	background: linear-gradient(135deg, #1A5B36 0%, #14452b 100%);
}

.eightgbet-game-card__badge {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 2;
	padding: 3px 7px;
	border-radius: 6px;
	background: rgba(17, 24, 39, 0.78);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 600;
}

.eightgbet-game-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 61, 36, 0.5);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.eightgbet-game-card:hover .eightgbet-game-card__overlay,
.eightgbet-game-card:focus-within .eightgbet-game-card__overlay {
	opacity: 1;
}

.eightgbet-game-card__demo-btn {
	display: inline-flex;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	background: #fff;
	color: #0f3d24;
	font-size: 0.75rem;
	font-weight: 700;
}

.eightgbet-game-card__body {
	padding: 14px 16px 16px;
}

.eightgbet-game-card__title {
	margin: 0 0 4px;
	font-size: 1rem;
	color: #111;
	line-height: 1.35;
}

.eightgbet-game-card__provider {
	margin: 0;
	font-size: 0.82rem;
	color: #6b7280;
}

.eightgbet-game-card__meta {
	margin: 0 0 10px;
	font-size: 0.85rem;
	color: #1A5B36;
}

.eightgbet-game-card__cta {
	display: inline-block;
	padding: 6px 10px;
	background: #FFF200;
	color: #111;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
}

.home-section__footer-link {
	margin-top: 24px;
	text-align: center;
}

/* Homepage — high RTP + explore themes */
.gbet-home .home-high-rtp-games__grid .eightgbet-game-grid,
.gbet-home .home-theme-group__grid .eightgbet-game-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gbet-home .home-theme-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0 0 2rem;
}

.gbet-home .home-theme-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0.5rem 0.95rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	color: var(--8gbet-color-text);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.gbet-home .home-theme-chip:hover {
	background: rgba(255, 242, 0, 0.12);
	border-color: rgba(255, 242, 0, 0.45);
	color: var(--8gbet-color-accent);
	text-decoration: none;
}

.gbet-home .home-theme-chip__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.5rem;
	padding: 0.1rem 0.4rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.22);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.9);
}

.gbet-home .home-theme-groups {
	display: grid;
	gap: 2rem;
}

.gbet-home .home-theme-group__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 1rem;
}

.gbet-home .home-theme-group__title {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--8gbet-color-text);
}

.gbet-home .home-theme-group__link {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--8gbet-color-accent);
	text-decoration: none;
}

.gbet-home .home-theme-group__link:hover {
	text-decoration: underline;
}

@media (max-width: 960px) {
	.gbet-home .home-high-rtp-games__grid .eightgbet-game-grid,
	.gbet-home .home-theme-group__grid .eightgbet-game-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.gbet-home .home-high-rtp-games__grid .eightgbet-game-grid,
	.gbet-home .home-theme-group__grid .eightgbet-game-grid {
		grid-template-columns: 1fr;
	}
}

.eightgbet-empty-state {
	padding: 24px;
	text-align: center;
	background: #f6f7f7;
	border-radius: 8px;
	color: #555;
}

.eightgbet-single-game__banner {
	background: #1A5B36;
	color: #fff;
	padding: 48px 0 32px;
}

.eightgbet-single-game__eyebrow {
	margin: 0 0 8px;
	font-size: 0.85rem;
	opacity: 0.85;
}

.eightgbet-single-game__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 32px;
	padding: 32px 0 48px;
}

.eightgbet-single-game__embed {
	position: relative;
	padding-top: 56.25%;
	margin-bottom: 24px;
	border-radius: 12px;
	overflow: hidden;
	background: #000;
}

.eightgbet-single-game__embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.eightgbet-single-game__sidebar {
	background: #f8faf9;
	border: 1px solid rgba(26, 91, 54, 0.12);
	border-radius: 12px;
	padding: 20px;
}

.eightgbet-single-game__stats {
	margin: 0 0 16px;
	padding-left: 18px;
}

.eightgbet-archive__header {
	padding: 40px 0 24px;
}

@media (max-width: 900px) {
	.eightgbet-single-game__layout {
		grid-template-columns: 1fr;
	}
}
