body {
		font-family: 'Inter', sans-serif;
		font-size: 16px;
		font-weight: 400;
		background: #0f0f1e;
		color: #FFFFFF;
		margin: 0;
		line-height: 1.6;
}

a {
		color: #1414E0;
		text-decoration: none;
}

a:hover {
		text-decoration: none;
}

::selection {
		color: #fff;
		background: #5470fa;
}

img {
		display: block;
		max-width: 80%;
		height: auto;
	margin: 0 auto;
}

.container {
		max-width: 1144px;
		margin: 0 auto;
		padding: 0 16px;
}

.main {
		overflow: hidden;
}

h1 {
		font-size: 2.25rem;
		line-height: 1.2;
		margin-bottom: 20px;
	color: #FFFFFF;
	text-align: center;
}
h2 {
		font-size: 1.75rem;
		margin: 1em 0 0.5em;
		color: #ffd700;
}
h3 {
		font-size: 1.5rem;
		margin: 1em 0 0.5em;
		color: #ffd700;
}
h4 {
		font-size: 1.25rem;
		margin: 0.8em 0 0.4em;
		color: #ffd700;
}

.header-area {
		background: #1a1a2e;
	color: #FFFFFF;
		box-shadow: 0 4px 20px rgba(1, 3, 5, 0.1);
		padding: 12px 0;
		position: relative;
}

.header__row {
		display: flex;
		align-items: center;
		justify-content: space-between;
}

.logo img {
		max-width: 150px;
		height: auto;
}

.nav ul {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
}

.nav ul li {
		margin: 0 15px;
}

.nav ul li a {
		font-weight: 700;
		color: #FFFFFF;
		font-size: 18px;
		transition: 0.2s;
}

.nav ul li a:hover {
		color: #f74835;
}

.btn {
		display: inline-block;
		padding: 10px 30px;
		background: #ffd700;
		color: #0f0f1e;
		font-weight: 700;
		border-radius: 30px;
		text-align: center;
		transition: background 0.2s;
}

.btn:hover {
		background: #c93b2b;
}

.btn--lg {
		font-size: 18px;
		padding: 15px 60px;
	display: block;
	margin: 0 auto;
	max-width: 250px;
}

.btn--block {
		display: block;
		width: 100%;
}

.hero-area {
		padding: 10px 0;
}

.hero__grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		align-items: center;
}

.hero__media img {
		border-radius: 20px;
}

.adaptive-table {
		overflow-x: auto;
}

table {
		width: 100%;
		border-collapse: collapse;
		margin: 20px 0;
		color: #FFFFFF;
}

table th, table td {
		border: 1px solid #ffd700;
		padding: 10px 15px;
		vertical-align: top;
}

table th {
		color: #FFFFFF;
		text-align: left;
}

table td a {
		color: blue;
		font-weight: bold;
		text-decoration: none;
}

table td a:hover {
		text-decoration: underline;
}

.main-text {
		margin-top: 20px;
		font-size: 18px;
		line-height: 1.6;
}

.footer-area {
		background: #1a1a2e;
		padding: 40px 0;
		border-top: 1px solid #444;
	color: #E0E0E0;
}

.footer__grid {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
}

.footer__brand img {
		max-width: 150px;
}

.footer__text {
		font-size: 14px;
		color: #E0E0E0;
}

footer a {
		color: #f74835;
}

.burger {
		display: none;
		position: relative;
		width: 32px;
		height: 24px;
		background: none;
		border: 0;
		padding: 0;
		cursor: pointer;
		z-index: 1100;
	color: #FFFFFF;
}

.burger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 3px;
		background: currentColor;
		border-radius: 2px;
		transition: top .2s ease, transform .2s ease, opacity .2s ease;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }

.burger[aria-expanded="true"] span:nth-child(1) {
		top: 10px; transform: rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
		top: 10px; transform: rotate(-45deg);
}

.mobile-nav {
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		right: 0;
		background: #2e303b;
		border-top: 1px solid #3a3c47;
		z-index: 1000;
}

.mobile-nav.is-open { display: block; }

.mobile-nav ul {
		margin: 0;
		padding: 8px 0;
		list-style: none;
}

.mobile-nav li {
		border-bottom: 1px solid #3a3c47;
}

.mobile-nav li:last-child {
		border-bottom: 0;
}

.mobile-nav a {
		display: block;
		padding: 12px 16px;
		color: #fff;
		text-decoration: none;
}

.mobile-nav a:hover {
		background: rgba(255,255,255,.06);
}

@media (max-width: 992px) {
		.hero__grid {
				grid-template-columns: 1fr;
				text-align: center;
		}
}

@media (max-width: 768px) {
		.nav { display: none; }
		.burger { display: block;}
		body.lock { overflow: hidden; }
}

.welcome-offer {
		position: relative;
		margin: 30px auto 0;
		padding: 22px 26px;
		max-width: 620px;
		text-align: center;
		border-radius: 24px;

		background:
				linear-gradient(
						135deg,
						rgba(255,255,255,0.04),
						rgba(255,255,255,0.02)
				);

		border: 1px solid rgba(255,255,255,0.08);

		backdrop-filter: blur(12px);

		box-shadow:
				0 10px 40px rgba(0,0,0,0.35),
				0 0 25px rgba(255,255,255,0.03);

		overflow: hidden;
}

.welcome-offer::before {
		content: "";
		position: absolute;
		inset: -2px;

		background:
				linear-gradient(
						135deg,
						#ffd700,
						transparent,
						#ffd700
				);

		opacity: 0.18;
		filter: blur(18px);

		z-index: 0;

		animation: welcomeGlow 6s linear infinite;
}

.welcome-label {
		position: relative;
		z-index: 1;

		display: inline-block;

		margin-bottom: 14px;

		font-size: 13px;
		font-weight: 700;
		letter-spacing: 3px;
		text-transform: uppercase;

		color: #ffd700;

		opacity: 0.85;
}

.welcome-main {
		position: relative;
		z-index: 1;

		display: block;

		font-size: clamp(30px, 5vw, 52px);
		font-weight: 800;
		line-height: 1.1;

		color: #FFFFFF;

		text-shadow:
				0 0 12px rgba(255,255,255,0.08),
				0 0 28px rgba(255,255,255,0.04);

		animation: bonusFloat 4s ease-in-out infinite;
}

@keyframes bonusFloat {
		0% {
				transform: translateY(0px);
		}

		50% {
				transform: translateY(-4px);
		}

		100% {
				transform: translateY(0px);
		}
}

@keyframes welcomeGlow {
		0% {
				transform: rotate(0deg) scale(1);
		}

		50% {
				transform: rotate(180deg) scale(1.05);
		}

		100% {
				transform: rotate(360deg) scale(1);
		}
}

blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 3px solid;
	border-radius: 0 8px 8px 0;
	line-height: 1.7;
}

blockquote p {
	margin: 0;
}

blockquote {
	border-color: #ffd700;
}

.btn {
		animation: btnFloat 2.2s ease-in-out infinite;
		will-change: transform;
}

@keyframes btnFloat {
		0% {
				transform: translateY(0);
		}
		50% {
				transform: translateY(-4px);
		}
		100% {
				transform: translateY(0);
		}
}

.hero__media {
		position: relative;
		perspective: 1000px;
}

.hero__media img {
		border-radius: 20px;
		animation: heroFloat 6s ease-in-out infinite;
		will-change: transform;
		transform-origin: center center;
}

@keyframes heroFloat {
		0% {
				transform: translateY(0px) rotate(0deg) scale(1);
		}

		25% {
				transform: translateY(-8px) rotate(-1deg) scale(1.01);
		}

		50% {
				transform: translateY(-14px) rotate(1deg) scale(1.02);
		}

		75% {
				transform: translateY(-8px) rotate(-1deg) scale(1.01);
		}

		100% {
				transform: translateY(0px) rotate(0deg) scale(1);
		}
}

/* ---- Lang Switcher Desktop ---- */
.lang-switcher {
	position: relative;
	margin-left: 12px;
}
.lang-switcher .lang-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: 1px solid currentColor;
	color: #FFFFFF;
	border-radius: 20px;
	padding: 6px 14px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	font-family: inherit;
}
.lang-switcher .lang-toggle svg {
	width: 10px;
	height: 10px;
	transition: transform 0.2s ease;
}
.lang-switcher.is-open .lang-toggle svg {
	transform: rotate(180deg);
}
.lang-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 130px;
	max-height: 320px;
	overflow-y: auto;
	list-style: none;
	margin: 0;
	padding: 6px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.18);
	display: none;
	z-index: 1200;
}
.lang-switcher.is-open .lang-dropdown {
	display: block;
}
.lang-dropdown .lang-item {
	display: block;
	padding: 8px 12px;
	border-radius: 8px;
	color: #222;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
}
.lang-dropdown .lang-item:hover {
	background: #f2f2f2;
}
.lang-dropdown .lang-item.is-active {
	background: #ffd700;
	color: #fff;
}

/* ---- Lang Switcher Mobile ---- */
.lang-switcher-mobile {
	padding: 0 !important;
}
.lang-toggle-mobile {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: transparent;
	border: 0;
	color: #fff;
	padding: 12px 16px;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	font-family: inherit;
}
.lang-toggle-mobile svg {
	width: 10px;
	height: 10px;
	transition: transform 0.2s ease;
}
.lang-switcher-mobile.is-open .lang-toggle-mobile svg {
	transform: rotate(180deg);
}
.lang-dropdown-mobile {
	display: none;
	list-style: none;
	margin: 0;
	padding: 4px 0;
	background: rgba(0,0,0,0.15);
}
.lang-switcher-mobile.is-open .lang-dropdown-mobile {
	display: block;
}
.lang-dropdown-mobile .lang-item {
	display: block;
	padding: 10px 16px 10px 28px;
	color: #fff;
	opacity: 0.75;
	text-decoration: none;
	font-size: 15px;
}
.lang-dropdown-mobile .lang-item:hover {
	opacity: 1;
}
.lang-dropdown-mobile .lang-item.is-active {
	opacity: 1;
	font-weight: 700;
}