@import url("./utilities.css");
@import url("./base.css");
@import url("./responsive.css");

html {
	scroll-padding-top: 100px;
}



html,
body,
.font-unbounded,
.font-unboundedBlond {
	font-family: "UnboundedBlond", sans-serif !important;
}

:root {
	--accent-color: #f8c42a;
	--accent-hover: #e3b11e;
	--section-gap: 60px;
	--section-gap-tight: 36px;
	--section-gap-mobile: 38px;
	--section-card-radius: 30px;
	--form-space-xs: 10px;
	--form-space-sm: 14px;
	--form-space-md: 18px;
	--form-space-lg: 28px;
	--text-grey: #9d9fa0;
}

.header-container {
	max-height: 80px;
}

.grey {
	color: var(--text-grey);
}

.green-btn:hover,
.game__btn:hover,
.fav__buy-btn a:hover,
.dep__btn:hover,
.choose__tabs button:hover,
.dep2__tabs button:hover,
.review-type-btn:hover,
.review-type-btn.active,
.review-btn:hover,
.review-btn.active,
.hover\:bg-greenmain:hover,
.group:hover .group-hover\:bg-greenmain {
	background-color: var(--accent-hover) !important;
	border-color: var(--accent-hover) !important;
}

.hover\:text-greenmain:hover,
.group:hover .group-hover\:text-greenmain {
	color: var(--accent-hover) !important;
}

.group:hover .group-hover\:fill-greenmain {
	fill: var(--accent-hover) !important;
}

.header-layout {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
}

.header-center-actions {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
}

.header-quick-nav {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(6px);
}

.header-quick-nav a {
	font-size: 12px;
	line-height: 1;
	color: #d6d7da;
	padding: 8px 12px;
	border-radius: 999px;
	transition: 0.2s;
}

.header-quick-nav a:hover {
	color: #0d0c10;
	background: var(--accent-color);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	padding: 10px 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent-color), #ffd85e);
	color: #111;
	box-shadow: 0 8px 22px rgba(248, 196, 42, 0.3);
	margin-left: 10px;
	transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(248, 196, 42, 0.34);
}

.header-top {
	background-color: rgba(13, 12, 16, 0.6) !important;
	transition: background-color 0.3s;
}

.hero-redesign {
	position: relative;
	margin-top: var(--section-gap);
}

.hero-layout {
	align-items: stretch;
	gap: 26px;
}

.hero-content {
	padding: 10px 2px;
	border-radius: var(--section-card-radius);
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 86% 0%, rgba(248, 196, 42, 0.16), rgba(248, 196, 42, 0) 42%),
		rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: inset 0 1px 24px rgba(255, 255, 255, 0.05);
	padding: 26px;
}

.hero-content .game__title {
	font-size: 46px;
	line-height: 1.08;
	white-space: nowrap;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #0d0c10;
	background: var(--accent-color);
	padding: 8px 12px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.hero-lead {
	font-size: 16px;
	line-height: 1.55;
	color: #e5e6e8;
	margin-top: 14px;
	max-width: 92%;
}

.hero-benefits {
	margin-top: 18px;
	display: grid;
	gap: 10px;
	list-style: none;
	padding: 0;
}

.hero-benefits li {
	position: relative;
	padding-left: 24px;
	font-size: 14px;
	line-height: 1.45;
	color: #bec1c5;
}

.hero-benefits li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent-color);
	box-shadow: 0 0 0 4px rgba(248, 196, 42, 0.2);
}

.hero-actions {
	margin-top: 22px;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.hero-action-primary,
.hero-action-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 12px;
	font-size: 13px;
	line-height: 1;
	transition: 0.2s;
}

.hero-action-primary {
	background: var(--accent-color);
	color: #121212;
	box-shadow: 0 8px 22px rgba(248, 196, 42, 0.3);
}

.hero-action-primary:hover {
	background: #ffd24d;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(248, 196, 42, 0.34);
}

.hero-action-secondary {
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
}

.hero-action-secondary:hover {
	border-color: var(--accent-color);
	color: var(--accent-color);
}

.hero-stats {
	margin-top: 22px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.hero-stat-card {
	border-radius: 14px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-height: 86px;
}

.hero-stat-card strong {
	font-size: 18px;
	line-height: 1;
	color: var(--accent-color);
	font-weight: 500;
}

.hero-stat-card span {
	font-size: 11px;
	line-height: 1.4;
	color: #c6c8cb;
}

.hero-visual {
	position: relative;
	border-radius: var(--section-card-radius);
	overflow: hidden;
	min-height: 100%;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform 0.45s;
}

.hero-redesign:hover .hero-visual img {
	transform: scale(1.06);
}

@media (max-width: 1250px) {
	.header-layout {
		grid-template-columns: auto 1fr auto;
	}

	.header-layout > div:last-child {
		justify-self: end;
	}

	.header-quick-nav {
		display: none;
	}

	.header-center-actions {
		display: none;
	}

	.header-cta {
		display: none;
	}

	.hero-layout {
		grid-template-columns: 1fr;
	}

	.hero-content {
		order: 1;
	}

	.hero-visual {
		order: 2;
		max-height: 340px;
	}

	.hero-content .game__title {
		font-size: 50px;
		white-space: normal;
	}
}

@media (max-width: 900px) {
	.header-layout {
		display: flex;
		justify-content: space-between;
	}

	.header-center-actions {
		display: none;
	}

	.header-cta {
		display: none;
	}

	.hero-redesign {
		margin-top: var(--section-gap-mobile);
	}

	.hero-content {
		padding: 18px;
	}

	.hero-content .game__title {
		font-size: 38px;
		line-height: 1.15;
	}

	.hero-lead {
		max-width: 100%;
		font-size: 14px;
	}

	.hero-benefits li {
		font-size: 13px;
	}

	.hero-stats {
		grid-template-columns: 1fr;
	}

}

.redesign-form .canbuy__inner {
	position: relative;
	overflow: hidden;
	border-radius: var(--section-card-radius);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: inset 0 1px 26px rgba(255, 255, 255, 0.06), 0 20px 45px rgba(0, 0, 0, 0.28);
	background:
		radial-gradient(circle at 12% 10%, rgba(248, 196, 42, 0.14), rgba(248, 196, 42, 0) 32%),
		rgba(255, 255, 255, 0.03);
}

.redesign-form {
	margin-top: var(--section-gap);
	padding-top: 0;
}

.faq-redesign {
	margin-top: var(--section-gap);
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 0;
	max-width: none;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
}

.canbuy-subtitle {
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.5;
	color: #b9bec3;
	max-width: 630px;
}

.redesign-form .canbuy__title {
	max-width: 760px;
	line-height: 1.2;
}

.redesign-form .canbuy__title span {
	display: block;
}

.purchase-form {
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(3, 12, 16, 0.45);
	padding: 28px;
	margin-top: var(--form-space-lg);
	backdrop-filter: blur(8px);
	box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.05);
	animation: soft-fade-up 0.6s ease both;
}

/* Form blocks */
.form-block {
	display: flex;
	flex-direction: column;
	gap: var(--form-space-md);
}

.form-block > .relative + .relative {
	margin-top: 0;
}

.form-block-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.form-block-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--accent-color);
	color: #101317;
	font-family: 'Unbounded', sans-serif;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
	box-shadow: 0 6px 14px rgba(248, 196, 42, 0.3);
}

.form-block-label {
	font-family: 'Unbounded', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.01em;
}

.form-divider {
	height: 1px;
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
	margin: var(--form-space-sm) 0;
}

/* Inputs */
.form-input {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	padding: 16px 48px;
	font-size: 14px;
	color: #fff;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	width: 100%;
}

.form-input::placeholder {
	color: rgba(157, 159, 160, 0.7);
}

.form-input:focus {
	border-color: rgba(248, 196, 42, 0.5);
	box-shadow: 0 0 0 3px rgba(248, 196, 42, 0.1), inset 0 4px 14px rgba(0,0,0,0.18);
}

.form-input-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

/* Coin chips grid */
.coins-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.coin-chip {
	cursor: pointer;
	display: block;
}

.coin-chip input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.coin-chip-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 8px;
	min-height: 90px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.03);
	transition: border-color 0.18s, background 0.18s, box-shadow 0.18s, transform 0.18s;
}

.coin-chip:hover .coin-chip-inner {
	border-color: rgba(248, 196, 42, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.coin-chip:has(input:checked) .coin-chip-inner {
	border-color: var(--accent-color);
	background: rgba(248, 196, 42, 0.14);
	box-shadow: 0 8px 20px rgba(248, 196, 42, 0.2);
}

.coin-chip-amount {
	font-family: 'Unbounded', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	line-height: 1;
}

.coin-chip:has(input:checked) .coin-chip-amount {
	color: var(--accent-color);
}

.coin-chip-label {
	font-size: 10px;
	color: rgba(157,159,160,0.8);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* Order summary */
.order-summary {
	border-radius: 14px;
	border: 1px solid rgba(248, 196, 42, 0.2);
	background: rgba(248, 196, 42, 0.05);
	padding: 16px 20px;
}

.order-summary-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.order-summary-key {
	font-size: 13px;
	color: #9d9fa0;
}

.order-summary-val {
	font-family: 'Unbounded', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--accent-color);
}

.purchase-steps {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.purchase-step {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 11px;
	line-height: 1;
	color: #c5c9cc;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.03);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.purchase-step.is-active {
	color: #101317;
	background: var(--accent-color);
	border-color: var(--accent-color);
	box-shadow: 0 10px 18px rgba(248, 196, 42, 0.26);
}

.purchase-form .donate__row-title {
	font-size: 18px;
	margin-bottom: 8px;
}

.purchase-form .main-input {
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.purchase-form .main-input:focus {
	box-shadow: 0 0 0 3px rgba(248, 196, 42, 0.14), inset 0 4px 14px rgba(0, 0, 0, 0.24);
	transform: translateY(-1px);
}

.purchase-form .hero-form-btn {
	position: relative;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
	margin-top: 0;
	background: linear-gradient(135deg, var(--accent-color), #ffd85e);
	color: #111;
	box-shadow: 0 8px 22px rgba(248, 196, 42, 0.3);
}

.purchase-form .donate__checkbox {
	margin-top: 0;
}

.purchase-form .donate__checkbox span {
	line-height: 1.5;
}

.purchase-form .hero-form-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(248, 196, 42, 0.34);
}

.faq-redesign .why__wrapper {
	overflow: hidden;
	position: relative;
	width: 100%;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	padding: 60px;
	border-radius: var(--section-card-radius);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: inset 0 1px 20px rgba(255, 255, 255, 0.05), 0 20px 45px rgba(0, 0, 0, 0.28);
	background:
		radial-gradient(circle at 90% 0%, rgba(248, 196, 42, 0.12), rgba(248, 196, 42, 0) 38%),
		rgba(255, 255, 255, 0.03);
}

.faq-redesign .why__head {
	display: grid;
	gap: var(--form-space-sm);
}

.faq-redesign .why__head p {
	margin: 0;
}

.faq-redesign .why__acc {
	margin-top: var(--form-space-lg);
}

.faq-redesign .how-item-second::before {
	display: none;
}

.how-item-second {
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	will-change: auto;
}

.how-item,
.faq-tab-btn,
.review-item,
.review-type-btn,
.review-type-btn.active,
.review-type-btn:hover,
.wallet-item {
	-webkit-backdrop-filter: none !important;
	backdrop-filter: none !important;
	will-change: auto;
}

.faq-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.faq-tags span {
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.03);
	color: #c7ccd1;
}

.faq-redesign .why__acc-item {
	padding-left: 14px;
	padding-right: 14px;
	border-radius: 14px;
	min-height: 96px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
	border: 1px solid transparent;
	animation: soft-fade-up 0.45s ease both;
}

.faq-redesign .why__acc-item-question h3 {
	margin: 0;
	line-height: 1.35;
}

.faq-redesign .why__acc-item:hover {
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(255, 255, 255, 0.16);
	transform: translateY(-1px);
}

.faq-redesign .why__acc-item-question svg {
	transition: transform 0.25s ease, fill 0.25s ease;
}

.faq-redesign .why__acc-item.active {
	background: rgba(248, 196, 42, 0.08);
	border-color: rgba(248, 196, 42, 0.4);
}

.faq-redesign .why__acc-item:nth-child(1) { animation-delay: 0.02s; }
.faq-redesign .why__acc-item:nth-child(2) { animation-delay: 0.06s; }
.faq-redesign .why__acc-item:nth-child(3) { animation-delay: 0.1s; }
.faq-redesign .why__acc-item:nth-child(4) { animation-delay: 0.14s; }
.faq-redesign .why__acc-item:nth-child(5) { animation-delay: 0.18s; }
.faq-redesign .why__acc-item:nth-child(6) { animation-delay: 0.22s; }

@keyframes soft-fade-up {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.reveal-card {
	opacity: 0;
	transform: translateY(26px) scale(0.98);
	filter: blur(2px);
	transition:
		opacity 0.55s ease,
		transform 0.55s ease,
		filter 0.55s ease;
	transition-delay: var(--reveal-delay, 0ms);
	will-change: transform, opacity, filter;
}

.reveal-card.reveal-section {
	transform: translateY(34px) scale(0.99);
	filter: blur(3px);
}

.reveal-card.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
	.reveal-card,
	.reveal-card.is-visible {
		opacity: 1;
		transform: none;
		filter: none;
		transition: none;
	}
}

.footer-redesign .footer-shell {
	display: grid;
	grid-template-columns: 1.1fr 1fr max-content;
	gap: 28px;
	align-items: start;
	padding: 6px 2px 16px;
}

.footer-redesign {
	margin-top: var(--section-gap-tight);
	padding-top: 0;
	padding-bottom: 26px;
}

footer#footer,
.footer-redesign {
	-webkit-backdrop-filter: none !important;
	backdrop-filter: none !important;
}

.footer-redesign .footer-brand {
	display: grid;
	gap: 12px;
}

.footer-redesign .footer-brand-note {
	max-width: 360px;
	font-size: 13px;
	line-height: 1.55;
	color: #aeb4b9;
}

.footer-redesign .footer-links {
	display: grid;
	gap: 10px;
	align-content: start;
}

.footer-redesign .footer-link-item {
	font-size: 14px;
	line-height: 1.45;
	color: #bfc4c9;
	transition: color 0.2s ease;
}

.footer-redesign .footer-link-item:hover {
	color: var(--accent-color);
}

.footer-redesign .footer-socials {
	display: grid;
	gap: 10px;
}

.footer-redesign .footer-copy {
	margin-top: 12px;
	margin-bottom: 14px;
	padding: 0 10px;
	font-size: 13px;
	line-height: 1.4;
	color: #9ba0a5;
	text-align: center;
}

.footer-redesign .footer__payments {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	padding-top: 16px;
	padding-bottom: 6px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-redesign .footer__payments img {
	height: 22px;
	width: auto;
	max-width: 54px;
	object-fit: contain;
	opacity: 0.92;
}

.footer-redesign .footer__payments .spb {
	height: 20px;
	max-width: 42px;
}

@media (max-width: 900px) {
	.redesign-form,
	.faq-redesign {
		margin-top: var(--section-gap-mobile);
	}

	.footer-redesign {
		margin-top: 24px;
	}

	.faq-redesign {
		padding-top: 0;
		padding-bottom: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.faq-redesign .why__wrapper {
		padding: 18px 16px;
	}

	.purchase-form {
		padding: 18px 16px;
		border-radius: 16px;
		margin-top: var(--form-space-md);
	}

	.redesign-form .canbuy__inner,
	.faq-redesign .why__wrapper {
		border-radius: 24px;
	}

	.coins-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 8px;
	}

	.coin-chip-inner {
		padding: 10px 4px;
		gap: 4px;
	}

	.form-block {
		gap: var(--form-space-sm);
	}

	.form-divider {
		margin: var(--form-space-xs) 0;
	}

	.coin-chip-amount {
		font-size: 13px;
	}

	.order-summary-val {
		font-size: 18px;
	}

	.purchase-form .donate__row-title {
		font-size: 16px;
	}

	.canbuy-subtitle {
		font-size: 13px;
	}

	.redesign-form .canbuy__title {
		max-width: none;
	}

	.faq-redesign .why__acc-item {
		padding-left: 10px;
		padding-right: 10px;
	}

	.footer-redesign .footer-shell {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 0 0 12px;
	}

	.footer-redesign {
		padding-top: 0;
		padding-bottom: 20px;
	}

	.footer-redesign .footer-brand-note {
		max-width: none;
	}

	.footer-redesign .footer-socials {
		width: 100%;
	}

	.footer-redesign .footer-socials .gradient-btn {
		width: 100%;
	}

	.footer-redesign .footer__payments {
		gap: 10px;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.coins-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 6px;
	}

	.coin-chip-inner {
		padding: 10px 2px;
	}

	.coin-chip-amount {
		font-size: 12px;
	}

	.form-block-label {
		font-size: 13px;
	}
}
