:root {
	--bg: #050816;
	--bg-soft: #080d1a;
	--card: #1a1a1a;
	--accent: #fde68a;
	--accent-soft: #fde68a;
	--text: #e5e7eb;
	--muted: #9ca3af;
	--border: rgba(148, 163, 184, 0.35);
	--danger: #f97373;
	--divider: rgba(55, 65, 81, 0.7);
	--success: #10b981;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family:
		'Inter',
		'Poppins',
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	background:
		linear-gradient(180deg, #0d0d0d 0%, #4b5563 100%),
		radial-gradient(
			1260.95% 100.32% at 100% 100%,
			rgba(75, 85, 99, 0.35) 0%,
			rgba(75, 85, 99, 0) 55%
		),
		radial-gradient(
			1260.95% 100.32% at 0% 0%,
			rgba(30, 41, 59, 0.35) 0%,
			rgba(30, 41, 59, 0) 55%
		);

	color: var(--text);
	min-height: 100vh;
	line-height: 1.7;
}

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

header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(20px);
	background: #262626;
	border-bottom: 1px solid var(--border);
	padding: 0.5rem 0;
}

.header-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.brand-logo {
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: conic-gradient(from 160deg, #fde68a, #facc15, #a855f7, #fde68a);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	color: #020617;
	font-size: 1.4rem;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
	transition: transform 0.3s ease;
}

.brand-logo:hover {
	transform: rotate(10deg) scale(1.05);
}

.brand-text {
	display: flex;
	flex-direction: column;
}

.brand-text span:first-child {
	font-weight: 900;
	letter-spacing: 0.15em;
	font-size: 1.1rem;
	background: linear-gradient(120deg, #fbbf24, #fde68a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.brand-text span:last-child {
	font-size: 0.85rem;
	color: var(--muted);
	margin-top: 2px;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.btn {
	border-radius: 999px;
	padding: 12px 28px;
	font-size: 0.95rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
	font-family: 'Poppins', sans-serif;
}

.btn-primary {
	background: #fcd80d;
	color: #020617;
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.7s;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 18px 48px rgba(248, 113, 113, 0.7);
}

.btn-ghost {
	border-color: var(--border);
	background: #1a1a1ae5;
	color: var(--text);
	backdrop-filter: blur(10px);
}

.btn-ghost:hover {
	border-color: var(--accent);
	background: rgba(15, 23, 42, 1);
	transform: translateY(-2px);
}

main {
	max-width: 1280px;
	margin: 0 auto;
	padding: 32px 24px 60px;
}

.divider {
	width: 100%;
	height: 1px;
	background: radial-gradient(
		circle,
		rgba(148, 163, 184, 0.9),
		transparent 80%
	);
	opacity: 0.3;
	margin: 40px 0;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
	padding: 30px 0 20px;
	animation: fadeIn 1s ease-out;
}

@media (max-width: 900px) {
	.hero {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px dashed rgba(250, 204, 21, 0.6);
	background: rgba(15, 23, 42, 0.95);
	color: var(--accent-soft);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-weight: 600;
	backdrop-filter: blur(10px);
}

.hero-tag span::before {
	content: '★';
	font-size: 0.8rem;
	margin-right: 6px;
	color: #fbbf24;
	animation: pulse 2s infinite;
}

.hero h1 {
	margin: 24px 0 16px;
	font-size: clamp(2.2rem, 4.2vw, 3rem);
	line-height: 1.15;
	font-weight: 800;
	background: linear-gradient(120deg, #e5e7eb, #fde68a, #fbbf24);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: 'Poppins', sans-serif;
}

.hero-sub {
	color: var(--muted);
	font-size: 1.1rem;
	max-width: 800px;
	margin-bottom: 28px;
	line-height: 1.8;
}

.hero-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 20px;
	margin: 28px 0 0;
	font-size: 0.95rem;
	color: var(--muted);
}

.hero-list span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
}

.hero-list i {
	width: 20px;
	height: 20px;
	border-radius: 999px;
	border: 2px solid rgba(52, 211, 153, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	color: #22c55e;
	background: #1a1a1ae5;
	flex-shrink: 0;
}

.hero-card {
	background:
		radial-gradient(circle at top right, #4c1d95, transparent 70%),
		linear-gradient(150deg, #020617, #020617 40%, #0f172a 100%);
	border-radius: 28px;
	padding: 28px 24px 24px;
	border: 1px solid rgba(148, 163, 184, 0.6);
	box-shadow: 0 30px 90px rgba(15, 23, 42, 1);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	animation: slideUp 0.8s ease-out;
}

.hero-card::after {
	content: '';
	position: absolute;
	inset: auto -60px -60px auto;
	width: 160px;
	height: 160px;
	border-radius: 999px;
	background: radial-gradient(circle, #fde68a, transparent 70%);
	opacity: 0.2;
	animation: float 6s ease-in-out infinite;
}

.hero-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(15, 23, 42, 0.98);
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid rgba(248, 250, 252, 0.25);
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 8px;
	backdrop-filter: blur(10px);
	z-index: 2;
}

.hero-badge span {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #4ade80;
	box-shadow: 0 0 12px rgba(74, 222, 128, 0.9);
	animation: pulse 1.5s infinite;
}

.hero-card h2 {
	font-size: 1.3rem;
	margin-bottom: 12px;
	color: var(--accent-soft);
	font-weight: 700;
}

.hero-card p {
	font-size: 0.95rem;
	color: var(--muted);
	margin-bottom: 20px;
	line-height: 1.7;
}

.hero-stat-row {
	display: flex;
	gap: 14px;
	margin-top: 20px;
}

.hero-stat {
	flex: 1;
	padding: 14px 12px;
	border-radius: 16px;
	background: rgba(15, 23, 42, 0.98);
	border: 1px solid rgba(148, 163, 184, 0.5);
	text-align: left;
	backdrop-filter: blur(10px);
	transition: transform 0.3s;
}

.hero-stat:hover {
	transform: translateY(-5px);
}

.hero-stat strong {
	display: block;
	font-size: 1.3rem;
	color: var(--accent-soft);
	font-weight: 800;
	margin-bottom: 4px;
}

.hero-stat span {
	font-size: 0.8rem;
	color: var(--muted);
	line-height: 1.4;
}

.section {
	margin-top: 50px;
	animation: fadeInUp 0.8s ease-out;
}

.section-header {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}

.section-kicker {
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent-soft);
	font-weight: 600;
	background: linear-gradient(120deg, #fbbf24, #fde68a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-title {
	font-size: 2.2rem;
	font-weight: 800;
	line-height: 1.2;
	font-family: 'Poppins', sans-serif;
}

.section-sub {
	font-size: 1.05rem;
	color: var(--muted);
	max-width: 900px;
	line-height: 1.8;
}

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

@media (max-width: 1100px) {
	.grid-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.grid-3 {
		grid-template-columns: 1fr;
	}
}

.table-container {
	display: block;
	width: 100%;
	overflow-x: auto;
}

.table-container table {
	width: 100%;
	border-collapse: collapse;
}
.table-container table td {
	padding: 10px 15px;
	width: max-content;
	color: white;
	border: 1px solid white;
}

.img-cov {
	width: 100%;
	height: 100%;
	max-width: 900px;
	margin: 15px auto;
}
.img-cov img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	object-fit: cover;
}

.seo-nav {
	margin: 30px 0;
}

.card {
	background: var(--card);
	border-radius: 24px;
	padding: 28px 24px;
	border: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	/* height: 100%; */
}

.card:hover {
	border-color: var(--accent);
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--accent-soft);
}

.card p {
	font-size: 0.95rem;
	color: var(--muted);
	line-height: 1.7;
	flex-grow: 1;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 999px;
	background: linear-gradient(120deg, rgba(31, 41, 55, 0.9), #1a1a1ae5);
	font-size: 0.8rem;
	color: var(--accent-soft);
	margin-bottom: 12px;
	border: 1px solid rgba(148, 163, 184, 0.3);
	width: fit-content;
	backdrop-filter: blur(10px);
}

.badge::before {
	content: '▶';
	font-size: 0.7rem;
	color: #fde68a;
}

.timeline {
	display: grid;
	gap: 24px;
	border-left: 3px solid rgba(148, 163, 184, 0.5);
	padding-left: 32px;
	position: relative;
}

.timeline::before {
	content: '';
	position: absolute;
	left: -3px;
	top: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(
		to bottom,
		transparent,
		var(--accent),
		transparent
	);
	opacity: 0.3;
}

.step {
	position: relative;
	padding-left: 12px;
	animation: fadeInRight 0.6s ease-out;
}

.step::before {
	content: attr(data-step);
	position: absolute;
	left: -44px;
	top: 0;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: var(--accent);
	color: #020617;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	font-weight: 900;
	box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.3);
	z-index: 2;
}

.step h3 {
	font-size: 1.1rem;
	margin-bottom: 8px;
	color: var(--accent-soft);
	font-weight: 700;
}

.step p {
	font-size: 0.95rem;
	color: var(--muted);
	line-height: 1.7;
}

/* GAMES - Enhanced */
.games {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

@media (max-width: 1100px) {
	.games {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.games {
		grid-template-columns: 1fr;
	}
}

.game {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #1a1a1ae5;
	background: #020617;
	aspect-ratio: 4/3;
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
}

.game:hover {
	transform: scale(1.03);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(1.1) brightness(0.9);
	transition: transform 0.5s ease;
}

.game:hover img {
	transform: scale(1.1);
}

.game-label {
	position: absolute;
	left: 16px;
	bottom: 16px;
	background: rgba(15, 23, 42, 0.95);
	border-radius: 999px;
	padding: 10px 18px;
	font-size: 0.85rem;
	border: 1px solid rgba(148, 163, 184, 0.8);
	backdrop-filter: blur(10px);
	font-weight: 600;
}

.payments {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
}

@media (max-width: 1100px) {
	.payments {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.payments {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.pay-card {
	border-radius: 16px;
	background: var(--card);
	border: 1px solid var(--border);
	padding: 20px 12px;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 600;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80px;
}

.pay-card:hover {
	border-color: var(--accent);
	transform: translateY(-5px);
	background: #1a1a1ae5;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 16px;
}

details {
	background: var(--card);
	border-radius: 20px;
	border: 1px solid var(--border);
	padding: 20px 24px;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

details:hover {
	border-color: var(--accent);
}

details[open] {
	background: #1a1a1ae5;
}

summary {
	cursor: pointer;
	list-style: none;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--accent-soft);
	display: flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
}

summary::-webkit-details-marker {
	display: none;
}

summary::after {
	content: '+';
	font-size: 1.5rem;
	color: var(--accent);
	transition: transform 0.3s;
}

details[open] summary::after {
	content: '−';
}

details p {
	margin-top: 16px;
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.8;
	padding-left: 8px;
	border-left: 3px solid var(--accent);
	padding-left: 16px;
}

.warning {
	margin-top: 32px;
	padding: 20px 24px;
	border-radius: 20px;
	border: 1px solid rgba(248, 113, 113, 0.7);
	background: rgba(248, 113, 113, 0.08);
	color: var(--danger);
	font-size: 0.9rem;
	line-height: 1.7;
	backdrop-filter: blur(10px);
}

.testimonials {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

@media (max-width: 1100px) {
	.testimonials {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.testimonials {
		grid-template-columns: 1fr;
	}
}

.testimonials blockquote {
	font-size: 0.95rem;
	color: var(--muted);
	font-style: italic;
	line-height: 1.8;
	quotes: '\201C' '\201D' '\2018' '\2019';
	position: relative;
}

.testimonials blockquote::before {
	content: open-quote;
	font-size: 3rem;
	color: var(--accent);
	opacity: 0.5;
	position: absolute;
	left: -10px;
	top: -20px;
}

footer {
	margin-top: 60px;
	padding: 32px 24px 20px;
	border-top: 1px solid var(--border);
	text-align: center;
	font-size: 0.9rem;
	color: var(--muted);
	background: rgba(15, 23, 42, 0.5);
	backdrop-filter: blur(10px);
	border-radius: 24px 24px 0 0;
}

footer nav {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	font-size: 0.85rem;
}

footer nav a {
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid var(--border);
	transition: all 0.3s;
}

footer nav a:hover {
	border-color: var(--accent);
	background: #1a1a1ae5;
	transform: translateY(-3px);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.7;
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
	background: var(--accent);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--accent-soft);
}

::selection {
	background: var(--accent);
	color: #020617;
}

.loading-skeleton {
	background: linear-gradient(
		90deg,
		var(--bg-soft) 25%,
		var(--card) 50%,
		var(--bg-soft) 75%
	);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
}

@keyframes loading {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -200% 0;
	}
}

@media (max-width: 480px) {
	.header-inner {
		flex-direction: column;
		gap: 16px;
		padding: 16px;
	}

	.hero h1 {
		font-size: 1.8rem;
	}

	.hero-sub {
		font-size: 1rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

.header__nav {
	list-style: none;
}
