:root {
	--mh-bg: #090909;
	--mh-surface: #1a1a1a;
	--mh-text: #ffffff;
	--mh-red: #d60000;
	--mh-red-alt: #e21b1b;
	--mh-gold: #f4c542;
	--mh-muted: #bbbbbb;
	--mh-border: #2b2b2b;
	--mh-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
	--mh-radius: 14px;
	--mh-bg-image-mobile: none;
	--mh-bg-image-tablet: none;
	--mh-bg-image-desktop: none;
	--mh-bg-filter: none;
	--mh-bg-overlay-alpha: 0.62;
	--mh-bg-image-opacity: 0.24;
	--mh-bg-size: cover;
	--mh-bg-position: center center;
	--mh-bg-repeat: no-repeat;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 12% 0%, rgba(214, 0, 0, 0.22), transparent 36%),
		radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.06), transparent 30%),
		linear-gradient(165deg, #0b0b0b 0%, var(--mh-bg) 46%, #050505 100%);
	color: var(--mh-text);
	font-family: "Bahnschrift", "Trebuchet MS", "Segoe UI", "Tahoma", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	position: relative;
	isolation: isolate;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image: var(--mh-bg-image-desktop);
	background-size: var(--mh-bg-size);
	background-position: var(--mh-bg-position);
	background-repeat: var(--mh-bg-repeat);
	filter: var(--mh-bg-filter);
	opacity: var(--mh-bg-image-opacity);
	z-index: -2;
	pointer-events: none;
}

body::after {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, var(--mh-bg-overlay-alpha));
	z-index: -1;
	pointer-events: none;
}

a {
	color: #ffffff;
	text-decoration: none;
}

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

.container {
	width: min(1180px, 92%);
	margin: 0 auto;
}

.site-header {
	position: relative;
	z-index: 30;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(90deg, rgba(214, 0, 0, 0.16), rgba(17, 17, 17, 0.95));
}

.site-header.is-sticky {
	position: sticky;
	top: 0;
	backdrop-filter: blur(6px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
}

.site-branding {
	display: flex;
	align-items: center;
	line-height: 0;
}

.brand-link {
	display: flex;
	align-items: center;
	max-width: 100%;
	width: fit-content;
	line-height: 0;
}

.brand-image {
	display: block;
	max-height: 64px;
	width: auto;
	object-fit: contain;
}

.brand-text {
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.header-cta-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.cta-form {
	margin: 0;
}

.btn {
	appearance: none;
	border: 1px solid transparent;
	outline: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 18px;
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.2;
	border-radius: 999px;
	color: #fff;
	background: linear-gradient(180deg, var(--mh-red-alt), var(--mh-red));
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
	box-shadow: 0 8px 16px rgba(214, 0, 0, 0.28);
	text-transform: none;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-1px);
	filter: brightness(1.05);
}

.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.btn-icon {
	display: inline-flex;
	width: 18px;
	height: 18px;
}

.btn-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.btn-header {
	padding: 10px 16px;
	font-size: 0.92rem;
}

.btn-daftar {
	background: linear-gradient(180deg, #ffffff, #f7f7f7);
	color: #9e0000;
}

.front-main,
.standard-main {
	padding: 16px 0 40px;
	position: relative;
	z-index: 1;
}

.home-main-title {
	margin: 8px 0 16px;
	font-size: clamp(1.4rem, 3.6vw, 2.2rem);
	line-height: 1.24;
	letter-spacing: 0.2px;
}

.hero-section {
	margin-bottom: 20px;
}

.hero-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	justify-content: stretch;
}

.hero-info-card,
.content-card,
.table-panel,
.warning-card,
.faq-item,
.page-card {
	background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(12, 12, 12, 0.98));
	border: 1px solid var(--mh-border);
	border-radius: var(--mh-radius);
	box-shadow: var(--mh-shadow);
}

.hero-info-card {
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	height: 100%;
}

.hero-info-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}

.hero-info-table th,
.hero-info-table td {
	padding: 8px;
	vertical-align: top;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-info-table tr:last-child th,
.hero-info-table tr:last-child td {
	border-bottom: 0;
}

.hero-info-table th {
	width: 33%;
	color: var(--mh-gold);
	font-weight: 700;
	text-align: left;
}

.hero-action-wrap {
	margin-top: auto;
}

.hero-mobile-action {
	display: none;
	width: 100%;
}

.btn-cta {
	width: 100%;
	padding: 12px 18px;
	font-size: 1.02rem;
}

.btn-secondary {
	background: linear-gradient(180deg, #ffffff, #f7f7f7);
	color: #a00000;
}

.hero-banner-card {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	min-height: 0;
	width: 100%;
	max-width: 100%;
	align-self: start;
	height: auto;
	margin: 0 auto;
}

.hero-banner-card > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
}

.hero-banner-card > a img {
	display: block;
}

.hero-banner-image {
	width: 100%;
	max-width: 100%;
	max-height: min(62vh, 560px);
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}

.hero-banner-placeholder,
.section-image-placeholder {
	width: 100%;
	min-height: 190px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #d4d4d4;
	border: 1px dashed rgba(255, 255, 255, 0.25);
	border-radius: 10px;
	padding: 14px;
}

.content-block-section,
.warning-section,
.table-image-section,
.faq-section {
	margin-top: 16px;
}

.dynamic-main-blocks .content-block-section,
.dynamic-main-blocks .warning-section,
.dynamic-main-blocks .dynamic-cta-block {
	margin-top: 16px;
}

.dynamic-cta-block {
	flex-direction: column;
	gap: 8px;
}

.dynamic-cta-title {
	margin: 0;
	font-size: 1rem;
	text-align: center;
}

.text-media-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	gap: 14px;
	align-items: start;
}

.text-media-layout.media-right {
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.text-media-layout.media-right .text-media-image {
	order: 2;
}

.text-media-image img {
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: min(58vh, 560px);
	object-fit: contain;
}

.text-inline-images {
	margin: 10px 0;
}

.text-embedded-table {
	margin-top: 12px;
}

.text-embedded-warnings {
	margin-top: 12px;
	display: grid;
	gap: 10px;
}

.inline-cta-wrap {
	margin: 10px 0;
}

.block-buttons-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 12px;
}

.block-button-item {
	width: min(360px, 100%);
}

.block-buttons-3col {
	display: grid;
	grid-template-columns: repeat(3, minmax(180px, 1fr));
	justify-items: center;
	align-items: start;
	width: 100%;
}

.block-buttons-3col .block-button-item {
	width: 100%;
	max-width: 320px;
	min-width: 0;
}

.block-buttons-3col .cta-form {
	width: 100%;
}

.image-block-section {
	overflow: hidden;
}

.image-block-scroll-wrap {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 4px;
}

.image-block-scroll-wrap.single-image {
	justify-content: center;
	overflow: visible;
}

.image-block-item {
	min-width: 0;
	max-width: 100%;
	flex: 0 0 auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	width: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.image-block-item a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.image-block-item img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: min(60vh, 640px);
	object-fit: contain;
}

.image-block-scroll-wrap.single-image .image-block-item {
	min-width: 0;
	max-width: 100%;
}

.table-image-layout.table-image-none {
	grid-template-columns: minmax(0, 1fr);
}

.table-image-layout.table-image-left {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.table-image-layout.table-image-left .table-panel {
	order: 2;
}

.content-card {
	padding: 18px;
}

.content-card h2,
.content-card h3,
.entry-content h2,
.entry-content h3 {
	margin: 0 0 12px;
	line-height: 1.3;
}

.warning-card {
	display: flex;
	gap: 12px;
	padding: 14px 16px;
	border-left: 4px solid var(--mh-red);
}

.warning-primary {
	background: linear-gradient(155deg, rgba(214, 0, 0, 0.2), rgba(20, 20, 20, 1));
}

.warning-secondary {
	background: linear-gradient(155deg, rgba(244, 197, 66, 0.14), rgba(20, 20, 20, 1));
	border-left-color: var(--mh-gold);
}

.warning-icon {
	width: 30px;
	height: 30px;
	min-width: 30px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: 800;
	color: #0e0e0e;
	background: var(--mh-gold);
}

.warning-content p {
	margin: 0;
}

.table-image-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 16px;
}

.table-panel {
	padding: 10px;
}

.table-scroll-wrap {
	overflow-x: auto;
}

.feature-table {
	width: 100%;
	min-width: 520px;
	border-collapse: collapse;
}

.feature-table th,
.feature-table td {
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 9px 10px;
	text-align: left;
}

.feature-table th {
	background: rgba(214, 0, 0, 0.24);
	color: #fff;
	font-size: 0.9rem;
}

.feature-table td {
	background: rgba(255, 255, 255, 0.01);
	font-size: 0.92rem;
}

.image-panel {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	width: auto;
	max-width: 100%;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.section-image {
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: min(60vh, 640px);
	object-fit: contain;
}

.section-cta-center {
	margin-top: 14px;
	display: flex;
	justify-content: center;
}

.section-cta-center .cta-form {
	width: min(420px, 100%);
}

.section-title {
	margin: 0 0 10px;
	font-size: clamp(1.2rem, 3vw, 1.65rem);
}

.faq-list {
	display: grid;
	gap: 10px;
}

.faq-item {
	padding: 8px 12px;
}

.faq-item summary {
	cursor: pointer;
	font-weight: 700;
	line-height: 1.4;
	padding: 6px 0;
}

.faq-item[open] summary {
	color: var(--mh-gold);
}

.faq-answer {
	padding-bottom: 6px;
}

.faq-answer p {
	margin: 0;
}

.site-footer {
	margin-top: 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.9)),
		linear-gradient(145deg, rgba(214, 0, 0, 0.1), rgba(0, 0, 0, 1));
	position: relative;
	z-index: 1;
}

.footer-main {
	padding: 24px 0 16px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.footer-title {
	margin: 0 0 10px;
	font-size: 1.03rem;
	color: var(--mh-gold);
}

.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.footer-menu a {
	color: #f5f5f5;
	font-size: 0.95rem;
}

.footer-menu a:hover {
	color: var(--mh-gold);
}

.footer-contact-list {
	margin: 0 0 10px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 6px;
	font-size: 0.93rem;
}

.footer-contact-desc p {
	margin: 0;
	font-size: 0.9rem;
	color: #d8d8d8;
}

.footer-logo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 10px;
	align-items: stretch;
}

.footer-logo-item {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	display: flex;
	flex-direction: column;
	gap: 5px;
	align-items: center;
	justify-content: center;
	min-height: 0;
}

.footer-logo-item img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 56px;
	object-fit: contain;
}

.footer-logo-item a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: 100%;
}

.footer-logo-text {
	font-weight: 700;
	font-size: 0.9rem;
}

.footer-logo-note {
	font-size: 0.8rem;
	color: #d2d2d2;
}

.footer-legal {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 14px 0 20px;
	text-align: center;
}

.footer-legal p {
	margin: 0;
	font-size: 0.85rem;
	color: #d4d4d4;
}

.btn-floating-bonus {
	width: 100%;
	padding: 10px 14px;
	font-size: 0.9rem;
}

@keyframes bonusFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
}

@keyframes bonusPulse {
	0%,
	100% {
		box-shadow: 0 14px 30px rgba(0, 0, 0, 0.38);
	}
	50% {
		box-shadow: 0 16px 34px rgba(214, 0, 0, 0.48);
	}
}

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

.floating-bonus {
	position: fixed;
	right: 14px;
	bottom: 14px;
	z-index: 80;
	width: min(320px, calc(100vw - 24px));
	padding: 10px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: linear-gradient(130deg, rgba(214, 0, 0, 0.96), rgba(40, 0, 0, 0.95), rgba(244, 197, 66, 0.34));
	background-size: 190% 190%;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.38);
	backdrop-filter: blur(4px);
	animation: bonusFloat 2.8s ease-in-out infinite, bonusPulse 2.1s ease-in-out infinite, bonusGradient 6s linear infinite;
}

.floating-bonus-text {
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 8px;
	text-align: center;
}

.floating-bonus-action .cta-form {
	width: 100%;
}

.floating-bonus-mobile {
	display: none;
}

.btn-floating-bonus-mini {
	min-width: 0;
	padding: 9px 11px;
	font-size: 0.82rem;
	letter-spacing: 0.2px;
}

.btn-floating-bonus-mini .btn-text::before {
	content: "\1F642  ";
}

.btn-floating-bonus-mini .btn-text::after {
	content: "  \1F381";
}

.cookie-consent {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	width: min(1180px, 92%);
	bottom: 10px;
	z-index: 130;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 12px;
	background: rgba(12, 12, 12, 0.96);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
	padding: 16px 18px 14px;
}

.cookie-consent-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.cookie-consent-text {
	flex: 1 1 auto;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #f2f2f2;
	text-align: center;
	max-width: 980px;
}

.cookie-consent-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

.cookie-consent-actions .btn,
.cookie-consent-actions .cookie-consent-btn-info {
	padding: 9px 14px;
	font-size: 0.84rem;
	min-width: 124px;
	text-align: center;
}

.cookie-consent-link {
	color: var(--mh-gold);
	font-weight: 700;
	text-decoration: underline;
	font-size: 0.84rem;
}

.cookie-consent-btn-info {
	appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.cookie-consent-close {
	position: absolute;
	top: 6px;
	right: 8px;
	margin-left: 0;
}

.cookie-consent-close .btn {
	padding: 4px 8px;
	min-width: 0;
	font-size: 1rem;
	line-height: 1;
}

.cookie-info-modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 14px;
	background: rgba(0, 0, 0, 0.72);
	z-index: 140;
}

.cookie-info-modal:target {
	display: flex;
}

.cookie-info-card {
	width: min(760px, 100%);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(17, 17, 17, 0.97);
	padding: 18px 16px;
	position: relative;
}

.cookie-info-card h3 {
	margin: 0 0 12px;
	font-size: 1.08rem;
}

.cookie-info-card p {
	margin: 0 0 10px;
	font-size: 0.95rem;
	line-height: 1.45;
	color: #efefef;
}

.cookie-info-close {
	position: absolute;
	top: 6px;
	right: 8px;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1;
	text-decoration: none;
}

.standard-main .content-card {
	margin: 10px 0 16px;
}

.entry-title {
	margin-top: 0;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content table th,
.entry-content table td {
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 8px;
}

.fallback-list {
	padding-left: 18px;
	margin: 8px 0;
}

@media (max-width: 980px) {
	body::before {
		background-image: var(--mh-bg-image-tablet);
	}

	.hero-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.hero-banner-card {
		order: 1;
		margin-inline: auto;
		max-width: 100%;
	}

	.hero-mobile-action {
		display: block;
		order: 2;
	}

	.hero-info-card {
		order: 3;
		max-width: 100% !important;
	}

	.hero-banner-image {
		max-height: min(46vh, 420px);
	}

	.floating-bonus {
		right: 10px;
		bottom: 10px;
		padding: 9px;
		width: auto;
		max-width: calc(100vw - 20px);
	}

	.floating-bonus-full {
		display: none;
	}

	.floating-bonus-mobile {
		display: block;
	}

	.table-image-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.image-panel {
		order: -1;
	}

	.text-media-layout,
	.text-media-layout.media-right {
		grid-template-columns: minmax(0, 1fr);
	}

	.text-media-layout.media-right .text-media-image {
		order: initial;
	}
}

@media (max-width: 768px) {
	body::before {
		background-image: var(--mh-bg-image-mobile);
	}

	.container {
		width: min(680px, 94%);
	}

	.header-inner {
		padding: 8px 0;
		gap: 10px;
	}

	.brand-image {
		max-height: 48px;
	}

	.header-cta-wrap {
		gap: 6px;
	}

	.btn-header {
		padding: 8px 9px;
		font-size: 0.77rem;
		min-width: auto;
		gap: 5px;
		border-radius: 9px;
	}

	.btn-header .btn-text {
		display: none;
	}

	.btn-header .btn-icon,
	.btn-header .btn-icon svg {
		width: 16px;
		height: 16px;
	}

	.home-main-title {
		margin: 6px 0 10px;
		font-size: clamp(1.1rem, 5vw, 1.45rem);
	}

	.hero-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 8px;
	}

	.hero-info-card {
		padding: 8px;
		gap: 8px;
	}

	.hero-info-table {
		font-size: 0.76rem;
	}

	.hero-info-table th,
	.hero-info-table td {
		padding: 5px 6px;
	}

	.hero-info-table th {
		width: 37%;
	}

	.hero-banner-card {
		min-height: 0;
		padding: 0;
		max-width: 100%;
	}

	.hero-banner-image {
		max-height: min(38vh, 300px);
	}

	.btn-cta {
		font-size: 0.84rem;
		padding: 9px 10px;
	}

	.hero-mobile-action .btn-cta {
		font-size: 0.9rem;
		padding: 10px 12px;
	}

	.front-main,
	.standard-main {
		padding-top: 10px;
	}

	.footer-main {
		grid-template-columns: minmax(0, 1fr);
	}

	.footer-logo-grid {
		grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
	}

	.block-buttons-3col .block-button-item {
		width: 100%;
		max-width: 100%;
	}

	.block-buttons-3col {
		grid-template-columns: repeat(2, minmax(120px, 1fr));
	}

	.floating-bonus {
		right: 10px;
		bottom: 10px;
		padding: 9px;
		width: auto;
		max-width: calc(100vw - 20px);
	}

	.floating-bonus-text {
		font-size: 0.88rem;
	}

	.cookie-consent {
		width: min(680px, 94%);
		bottom: 8px;
		padding: 14px 12px 12px;
	}

	.cookie-consent-text {
		font-size: 0.82rem;
		flex-basis: 100%;
	}

	.cookie-consent-actions {
		gap: 6px;
	}

	.cookie-consent-actions .btn,
	.cookie-consent-actions .cookie-consent-btn-info {
		min-width: 104px;
		font-size: 0.78rem;
		padding: 8px 10px;
	}
}

@media (max-width: 420px) {
	.hero-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.hero-info-table {
		font-size: 0.71rem;
	}

	.hero-banner-card {
		min-height: 0;
	}

	.hero-banner-image {
		max-height: min(32vh, 220px);
	}

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

	.block-buttons-3col {
		grid-template-columns: minmax(0, 1fr);
	}

	.floating-bonus {
		right: 8px;
		bottom: 8px;
		padding: 8px;
	}

	.btn-floating-bonus-mini {
		padding: 8px 10px;
		font-size: 0.76rem;
	}
}

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

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