@charset "UTF-8";

/* =============================================
   FONTS
   ============================================= */
@font-face {
	font-family: "Rubik";
	src: url("../fonts/Rubik-ExtraBold.woff2") format("woff2"),
		url("../fonts/Rubik-ExtraBold.woff") format("woff");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Rubik";
	src: url("../fonts/Rubik-Bold.woff2") format("woff2"),
		url("../fonts/Rubik-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Rubik";
	src: url("../fonts/Rubik-Medium.woff2") format("woff2"),
		url("../fonts/Rubik-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Rubik";
	src: url("../fonts/Rubik-Regular.woff2") format("woff2"),
		url("../fonts/Rubik-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-ExtraBold.woff2") format("woff2"),
		url("../fonts/Inter-ExtraBold.woff") format("woff");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Bold.woff2") format("woff2"),
		url("../fonts/Inter-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-SemiBold.woff2") format("woff2"),
		url("../fonts/Inter-SemiBold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Regular.woff2") format("woff2"),
		url("../fonts/Inter-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, body {
	min-height: 100%;
}

body {
	font-family: "Inter", sans-serif;
	font-weight: 400;
	color: #fff;
	background-color: #0a0a10;
	background-image: url("../img/main-bg.png");
	background-size: cover;
	background-position: center top;
	background-attachment: fixed;
	background-repeat: no-repeat;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

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

/* =============================================
   HEADER
   ============================================= */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10, 10, 18, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(212, 165, 50, 0.2);
	padding: 14px 0;
}

.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.header__logo {
	height: 36px;
	width: auto;
}

.header__btns {
	display: flex;
	gap: 12px;
}

.btn-yellow,
.btn-red {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: 8px;
	font-family: "Rubik", sans-serif;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.btn-yellow {
	background: linear-gradient(135deg, #f5c842 0%, #e4a800 100%);
	color: #1a0f00;
}
.btn-yellow:hover {
	background: linear-gradient(135deg, #ffd84d 0%, #f5b800 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(245, 200, 66, 0.4);
}

.btn-red {
	background: linear-gradient(135deg, #e03232 0%, #b01a1a 100%);
	color: #fff;
}
.btn-red:hover {
	background: linear-gradient(135deg, #f03d3d 0%, #c42020 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(224, 50, 50, 0.4);
}

.btn-yellow img, .btn-red img {
	width: 18px;
	height: 18px;
}

/* =============================================
   LIMITED BANNER
   ============================================= */
.limited-banner {
	background: linear-gradient(90deg, #b01a1a 0%, #e03232 50%, #b01a1a 100%);
	padding: 10px 0;
	text-align: center;
	font-family: "Rubik", sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	animation: pulse-red 2s ease-in-out infinite;
}

.limited-banner span {
	margin: 0 10px;
}

@keyframes pulse-red {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.85; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
	padding: 80px 0 60px;
	min-height: calc(100vh - 65px);
	display: flex;
	align-items: center;
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(5, 5, 10, 0.92) 0%,
		rgba(5, 5, 10, 0.75) 30%,
		rgba(5, 5, 10, 0.1) 50%,
		transparent 50%
	);
	pointer-events: none;
	z-index: 0;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	position: relative;
	z-index: 1;
}

.hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: 32px;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(212, 165, 50, 0.15);
	border: 1px solid rgba(212, 165, 50, 0.5);
	border-radius: 100px;
	padding: 8px 20px;
	font-family: "Rubik", sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #f5c842;
}

.hero__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #f5c842;
	animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}

.hero__title {
	font-family: "Rubik", sans-serif;
	font-weight: 800;
	font-size: clamp(38px, 7vw, 80px);
	line-height: 1.0;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.hero__title-top {
	display: block;
	color: #fff;
	text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.5);
	font-size: clamp(22px, 3.5vw, 42px);
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

.hero__title-big {
	display: block;
	background: linear-gradient(135deg, #f5c842 0%, #ffd700 40%, #f0a800 80%, #c87d00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 30px rgba(245, 200, 66, 0.5));
}

.hero__title-game {
	display: block;
	font-size: clamp(18px, 3vw, 36px);
	font-weight: 600;
	color: rgba(255,255,255,0.8);
	margin-top: 8px;
	letter-spacing: 0.12em;
}

.promo-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	position: relative;
}

.promo-label {
	font-family: "Rubik", sans-serif;
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255,255,255,0.45);
}

.promo-code-wrapper {
	display: inline-flex;
	align-items: center;
	border-radius: 12px;
	border: 2px solid #f5c842;
	box-shadow: 0 0 30px rgba(245, 200, 66, 0.35), inset 0 0 20px rgba(245, 200, 66, 0.05);
	background: rgba(0, 0, 0, 0.5);
	padding: 16px 36px;
	cursor: pointer;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
	position: relative;
	overflow: hidden;
}

.promo-code-wrapper:hover {
	border-color: #ffd84d;
	box-shadow: 0 0 45px rgba(245, 200, 66, 0.55), inset 0 0 20px rgba(245, 200, 66, 0.08);
}

.promo-code-text {
	font-family: "Rubik", sans-serif;
	font-weight: 800;
	font-size: 32px;
	letter-spacing: 0.2em;
	color: #f5c842;
	text-shadow: 0 0 20px rgba(245, 200, 66, 0.6);
	user-select: none;
	-webkit-user-select: none;
	pointer-events: none;
}

.promo-copied {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%) translateY(6px);
	background: rgba(10, 20, 10, 0.92);
	border: 1px solid rgba(74, 222, 128, 0.4);
	border-radius: 8px;
	padding: 8px 16px;
	color: #4ade80;
	font-family: "Rubik", sans-serif;
	font-weight: 600;
	font-size: 13px;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 10;
}

.promo-copied.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #f5c842 0%, #e4a800 100%);
	color: #1a0f00;
	font-family: "Rubik", sans-serif;
	font-weight: 800;
	font-size: 20px;
	padding: 18px 48px;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
	box-shadow: 0 8px 32px rgba(245, 200, 66, 0.45);
	position: relative;
	overflow: hidden;
}

.hero__cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 40px rgba(245, 200, 66, 0.6);
	background: linear-gradient(135deg, #ffd84d 0%, #f5b800 100%);
}

/* =============================================
   BONUS
   ============================================= */
.section-bonus {
	padding: 80px 0;
}

.section-title {
	font-family: "Rubik", sans-serif;
	font-weight: 800;
	font-size: clamp(26px, 4vw, 42px);
	text-align: center;
	margin-bottom: 48px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.section-title span {
	background: linear-gradient(135deg, #f5c842, #ffd700, #f0a800);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.bonus-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.bonus-card {
	position: relative;
	background: rgba(8, 8, 16, 0.7);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 20px;
	padding: 36px 28px 32px;
	text-align: center;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bonus-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(212, 165, 50, 0.6), transparent);
}

.bonus-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 0%, rgba(212, 165, 50, 0.07) 0%, transparent 65%);
	pointer-events: none;
}

.bonus-card:hover {
	transform: translateY(-6px);
	border-color: rgba(212, 165, 50, 0.3);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 165, 50, 0.15);
}

.bonus-card__icon-wrap {
	width: 52px;
	height: 52px;
	margin: 0 auto 20px;
	color: #f5c842;
}

.bonus-card__icon-wrap svg {
	width: 100%;
	height: 100%;
}

.bonus-card__value {
	font-family: "Rubik", sans-serif;
	font-weight: 800;
	font-size: 40px;
	line-height: 1;
	color: #f5c842;
	margin-bottom: 10px;
	letter-spacing: -0.01em;
}

.bonus-card__unit {
	font-size: 24px;
	font-weight: 700;
}

.bonus-card__label {
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.45);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.bonus-card--accent {
	border-color: rgba(212, 165, 50, 0.25);
	background: rgba(20, 14, 2, 0.75);
}

.bonus-card--accent::before {
	background: linear-gradient(90deg, transparent, rgba(245, 200, 66, 0.9), transparent);
	opacity: 1;
}

.bonus-card--accent::after {
	background: radial-gradient(ellipse at 50% 0%, rgba(212, 165, 50, 0.14) 0%, transparent 65%);
}

.bonus-card--accent .bonus-card__value {
	font-size: 44px;
	background: linear-gradient(135deg, #f5c842, #ffd700, #f0a800);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 16px rgba(245, 200, 66, 0.4));
}

.validity-bar {
	margin-top: 20px;
	background: rgba(8, 8, 16, 0.7);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(212, 165, 50, 0.15);
	border-radius: 16px;
	padding: 22px 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.validity-bar__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	flex: 1;
}

.validity-bar__divider {
	width: 1px;
	height: 44px;
	background: rgba(212, 165, 50, 0.2);
	flex-shrink: 0;
	margin: 0 40px;
}

.validity-bar__label {
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.4);
}

.validity-bar__dates {
	font-family: "Rubik", sans-serif;
	font-weight: 800;
	font-size: 22px;
	color: #f5c842;
}

/* =============================================
   HOW TO
   ============================================= */
.section-how {
	padding: 80px 0;
}

.steps-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.step-card {
	background: rgba(10, 10, 20, 0.55);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	padding: 32px 24px;
	position: relative;
	transition: transform 0.2s ease;
}

.step-card:hover {
	transform: translateY(-4px);
}

.step-card__number {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f5c842, #e4a800);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Rubik", sans-serif;
	font-weight: 800;
	font-size: 20px;
	color: #1a0f00;
	margin-bottom: 16px;
}

.step-card__title {
	font-family: "Rubik", sans-serif;
	font-weight: 700;
	font-size: 17px;
	margin-bottom: 10px;
	color: #fff;
}

.step-card__text {
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	line-height: 1.6;
}

.step-card__text strong {
	color: #f5c842;
	font-weight: 700;
}

/* =============================================
   FINAL CTA
   ============================================= */
.section-cta {
	padding: 80px 0;
}

.cta-box {
	background: rgba(10, 10, 20, 0.6);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(212, 165, 50, 0.3);
	border-radius: 24px;
	padding: 60px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center top, rgba(212, 165, 50, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.cta-box__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(224, 50, 50, 0.15);
	border: 1px solid rgba(224, 50, 50, 0.5);
	border-radius: 100px;
	padding: 8px 20px;
	font-family: "Rubik", sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #ff6b6b;
	margin-bottom: 24px;
}

.cta-box__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ff4444;
	animation: blink 1s ease-in-out infinite;
}

.cta-box__title {
	font-family: "Rubik", sans-serif;
	font-weight: 800;
	font-size: clamp(28px, 4vw, 48px);
	text-transform: uppercase;
	line-height: 1.1;
	margin-bottom: 16px;
}

.cta-box__title span {
	background: linear-gradient(135deg, #f5c842, #ffd700, #f0a800);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cta-box__subtitle {
	font-size: 17px;
	color: rgba(255,255,255,0.65);
	max-width: 500px;
	margin: 0 auto 40px;
	line-height: 1.6;
}

.cta-box__promo {
	margin-bottom: 32px;
	align-items: center;
}

.cta-box__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #f5c842 0%, #e4a800 100%);
	color: #1a0f00;
	font-family: "Rubik", sans-serif;
	font-weight: 800;
	font-size: 20px;
	padding: 18px 52px;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 8px 32px rgba(245, 200, 66, 0.45);
	position: relative;
	overflow: hidden;
}

.cta-box__btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 40px rgba(245, 200, 66, 0.6);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
	background: #0a0a12;
	border-top: 1px solid rgba(212, 165, 50, 0.15);
	padding-top: 40px;
}

.footer-providers {
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(255,255,255,0.07);
}

.partners-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	justify-content: center;
}

.partner-item img {
	height: 28px;
	width: auto;
	opacity: 0.55;
	filter: grayscale(1) brightness(1.2);
	transition: opacity 0.2s ease, filter 0.2s ease;
}

.partner-item img:hover {
	opacity: 1;
	filter: grayscale(0) brightness(1);
}

.footer-bottom {
	padding: 32px 0;
}

.footer-bottom-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 20px;
}

.footer-bottom-row:last-child {
	margin-bottom: 0;
}

.footer-bottom-col_text p {
	font-size: 14px;
	color: rgba(255,255,255,0.45);
}

.footer-bottom-col_flex {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-age img,
.footer-license img {
	height: 40px;
	width: auto;
	opacity: 0.75;
}

.footer-bottom-license {
	font-size: 12px;
	color: rgba(255,255,255,0.3);
	line-height: 1.7;
}

.footer-bottom-license a {
	color: rgba(245, 200, 66, 0.6);
	transition: color 0.2s ease;
}

.footer-bottom-license a:hover {
	color: #f5c842;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes heroFadeUp {
	from { opacity: 0; transform: translateY(28px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmerSwipe {
	0%   { transform: translateX(-150%) skewX(-10deg); }
	100% { transform: translateX(350%) skewX(-10deg); }
}
@keyframes floatIcon {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-8px); }
}
@keyframes goldGlow {
	0%, 100% { filter: drop-shadow(0 0 28px rgba(245, 200, 66, 0.45)); }
	50%       { filter: drop-shadow(0 0 56px rgba(245, 200, 66, 0.95)); }
}
@keyframes stepNumPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(245, 200, 66, 0); }
	50%       { box-shadow: 0 0 0 10px rgba(245, 200, 66, 0.12); }
}
@keyframes btnShimmer {
	0%   { transform: translateX(-150%) skewX(-15deg); }
	100% { transform: translateX(350%) skewX(-15deg); }
}

.hero__badge {
	opacity: 0;
	animation: heroFadeUp 0.55s ease both 0.15s;
}
.hero__title {
	opacity: 0;
	animation: heroFadeUp 0.65s ease both 0.35s;
}
.promo-block {
	opacity: 0;
	animation: heroFadeUp 0.55s ease both 0.7s;
}
.hero__cta {
	opacity: 0;
	animation: heroFadeUp 0.55s ease both 0.9s;
}

.hero__title-big {
	animation: goldGlow 3.5s ease-in-out infinite 1.4s;
}

.promo-code-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
	background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.13), transparent);
	animation: shimmerSwipe 4s ease-in-out infinite 2.2s;
	pointer-events: none;
}

.bonus-card__icon-wrap { animation: floatIcon 4s ease-in-out infinite; }
.bonus-card:nth-child(2) .bonus-card__icon-wrap { animation-delay: 0.5s; }
.bonus-card:nth-child(3) .bonus-card__icon-wrap { animation-delay: 1.0s; }
.bonus-card:nth-child(4) .bonus-card__icon-wrap { animation-delay: 1.5s; }
.bonus-card:nth-child(5) .bonus-card__icon-wrap { animation-delay: 2.0s; }
.bonus-card:nth-child(6) .bonus-card__icon-wrap { animation-delay: 2.5s; }

.step-card__number { animation: stepNumPulse 3s ease-in-out infinite; }
.step-card:nth-child(2) .step-card__number { animation-delay: 0.75s; }
.step-card:nth-child(3) .step-card__number { animation-delay: 1.5s; }
.step-card:nth-child(4) .step-card__number { animation-delay: 2.25s; }

.hero__cta::after,
.cta-box__btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 35%;
	height: 100%;
	background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.28), transparent);
	animation: btnShimmer 4s ease-in-out infinite 2.5s;
	pointer-events: none;
}

.anim-scroll {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 0.65s ease, transform 0.65s ease;
	transition-delay: var(--anim-delay, 0s);
}
.anim-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.hero__badge, .hero__title, .promo-block, .hero__cta { opacity: 1; animation: none; }
	.hero__title-big, .promo-code-wrapper::after, .hero__cta::after,
	.cta-box__btn::after, .bonus-card__icon-wrap, .step-card__number { animation: none; }
	.anim-scroll { opacity: 1; transform: none; transition: none; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
	body {
		background-image: none;
		background-color: #0a0a10;
	}

	.hero {
		background-image: url("../img/main-bg.png");
		background-size: cover;
		background-position: 75% top;
		background-attachment: scroll;
	}

	body::before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(5, 5, 10, 0.55);
		pointer-events: none;
		z-index: 0;
	}

	.header { padding: 10px 0; position: static; }
	.header__btns .btn-yellow span,
	.header__btns .btn-red span { display: none; }
	.btn-yellow, .btn-red { padding: 10px 12px; border-radius: 6px; }
	.header__logo { height: 28px; }

	.limited-banner { font-size: 12px; padding: 8px 12px; }

	.hero {
		padding: 125px 0 150px;
		min-height: calc(100vh - 84px);
		align-items: stretch;
	}
	.hero::before { display: none; }
	.hero .container { grid-template-columns: 1fr; padding: 0 16px; align-items: stretch; }
	.hero__content { align-items: flex-start; text-align: left; gap: 20px; width: 100%; min-height: 100%; justify-content: flex-start; }
	.hero__title { font-size: clamp(36px, 11vw, 56px); margin-bottom: auto; }
	.hero__title-top { font-size: clamp(16px, 5vw, 22px); margin-bottom: 4px; }
	.hero__title-game { font-size: clamp(14px, 4vw, 18px); margin-top: 4px; letter-spacing: 0.08em; }
	.hero__badge { font-size: 11px; padding: 6px 14px; }

	.promo-block { width: 100%; }
	.promo-code-wrapper { width: 100%; justify-content: center; padding: 14px 24px; }
	.promo-code-text { font-size: 28px; letter-spacing: 0.25em; }

	.hero__cta {
		width: 100%;
		justify-content: center;
		font-size: 17px;
		padding: 16px 24px;
		border-radius: 10px;
	}

	.section-bonus, .section-how, .section-cta { padding: 52px 0; }
	.section-title { font-size: clamp(22px, 6vw, 32px); margin-bottom: 28px; }

	.bonus-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.bonus-card { padding: 22px 14px; border-radius: 14px; }
	.bonus-card__icon-wrap { width: 40px; height: 40px; margin-bottom: 14px; }
	.bonus-card__value { font-size: 28px; }
	.bonus-card__unit { font-size: 18px; }
	.bonus-card__label { font-size: 11px; }
	.bonus-card--accent .bonus-card__value { font-size: 30px; }

	.validity-bar { flex-direction: column; gap: 16px; padding: 20px; }
	.validity-bar__divider { width: 48px; height: 1px; margin: 0; }
	.validity-bar__dates { font-size: 18px; }

	.steps-list { grid-template-columns: 1fr; gap: 12px; }
	.step-card { padding: 24px 20px; border-radius: 14px; }

	.cta-box { padding: 36px 20px; border-radius: 18px; }
	.cta-box__title { font-size: clamp(24px, 7vw, 36px); }
	.cta-box__subtitle { font-size: 15px; margin-bottom: 28px; }
	.cta-box__btn {
		width: 100%;
		justify-content: center;
		font-size: 17px;
		padding: 16px 24px;
	}
	.cta-box__promo { align-items: center; width: 100%; }
	.cta-box__promo .promo-code-wrapper { width: auto; }

	.footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 12px; }
	.partners-logos { gap: 14px; }
	.partner-item img { height: 22px; }
}
