/* Reset & Base */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--background: #1a1a1f;
	--foreground: #fafafa;
	--card: #222228;
	--card-foreground: #fafafa;
	--primary: #4ade80;
	--primary-foreground: #1a1a1f;
	--secondary: #2a2a32;
	--secondary-foreground: #fafafa;
	--muted: #333340;
	--muted-foreground: #a0a0a8;
	--border: #3a3a45;
	--radius: 0.5rem;
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-sans);
	background-color: var(--background);
	color: var(--foreground);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration: none;
}

img,
svg {
	display: block;
	max-width: 100%;
}

.hidden {
	display: none !important;
}

/* Layout */
.page-wrapper {
	min-height: 100vh;
}

.main-content {
	padding-top: 64px;
}

@media (min-width: 1024px) {
	.main-content {
		margin-left: 256px;
		padding-top: 0;
	}
}

.container {
	max-width: 1152px;
	margin: 0 auto;
	padding: 0 16px;
}

@media (min-width: 640px) {
	.container {
		padding: 0 24px;
	}
}

@media (min-width: 1024px) {
	.container {
		padding: 0 32px;
	}
}

/* Sidebar */
.sidebar {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 256px;
	background: var(--card);
	border-right: 1px solid var(--border);
	z-index: 50;
	flex-direction: column;
}

@media (min-width: 1024px) {
	.sidebar {
		display: flex;
	}
}

.sidebar-logo {
	padding: 24px;
	border-bottom: 1px solid var(--border);
}

.sidebar-nav {
	flex: 1;
	overflow-y: auto;
	padding: 16px 0;
}

.sidebar-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 24px;
	font-size: 14px;
	color: var(--muted-foreground);
	transition: all 0.2s;
}

.sidebar-item:hover {
	color: var(--foreground);
	background: rgba(255, 255, 255, 0.05);
}

.sidebar-item.active {
	background: var(--secondary);
	color: var(--foreground);
	border-left: 2px solid var(--primary);
}

.sidebar-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.sidebar-footer {
	padding: 16px;
	border-top: 1px solid var(--border);
}

/* Mobile Header */
.mobile-header {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 64px;
	background: var(--card);
	border-bottom: 1px solid var(--border);
	z-index: 50;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
}

@media (min-width: 1024px) {
	.mobile-header {
		display: none;
	}
}

.mobile-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.burger-btn {
	padding: 8px;
	color: var(--foreground);
	cursor: pointer;
}

.burger-icon,
.close-icon {
	width: 24px;
	height: 24px;
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 40;
	padding-top: 64px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-out;
}

.mobile-menu.open {
	opacity: 1;
	visibility: visible;
}

.mobile-menu-overlay {
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 31, 0.95);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.3s;
}

.mobile-menu.open .mobile-menu-overlay {
	opacity: 1;
}

.mobile-menu-nav {
	position: relative;
	background: var(--card);
	height: 100%;
	overflow-y: auto;
	padding: 16px 0;
	transform: translateX(-100%);
	transition: transform 0.3s ease-out;
}

.mobile-menu.open .mobile-menu-nav {
	transform: translateX(0);
}

.mobile-menu-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 24px;
	font-size: 14px;
	color: var(--muted-foreground);
	transition: all 0.3s;
	opacity: 0;
	transform: translateX(-20px);
}

.mobile-menu.open .mobile-menu-item {
	opacity: 1;
	transform: translateX(0);
}

.mobile-menu-item:nth-child(1) {
	transition-delay: 0ms;
}
.mobile-menu-item:nth-child(2) {
	transition-delay: 30ms;
}
.mobile-menu-item:nth-child(3) {
	transition-delay: 60ms;
}
.mobile-menu-item:nth-child(4) {
	transition-delay: 90ms;
}
.mobile-menu-item:nth-child(5) {
	transition-delay: 120ms;
}
.mobile-menu-item:nth-child(6) {
	transition-delay: 150ms;
}
.mobile-menu-item:nth-child(7) {
	transition-delay: 180ms;
}
.mobile-menu-item:nth-child(8) {
	transition-delay: 210ms;
}
.mobile-menu-item:nth-child(9) {
	transition-delay: 240ms;
}
.mobile-menu-item:nth-child(10) {
	transition-delay: 270ms;
}
.mobile-menu-item:nth-child(11) {
	transition-delay: 300ms;
}
.mobile-menu-item:nth-child(12) {
	transition-delay: 330ms;
}

.mobile-menu-item:hover,
.mobile-menu-item.active {
	color: var(--foreground);
	background: var(--secondary);
}

@media (min-width: 1024px) {
	.mobile-menu {
		display: none;
	}
}

/* Buttons */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	background: var(--primary);
	color: var(--primary-foreground);
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 14px;
	transition: opacity 0.2s;
}

.btn-primary:hover {
	opacity: 0.9;
}

.btn-sm {
	padding: 8px 16px;
	font-size: 14px;
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 32px;
	background: var(--secondary);
	color: var(--secondary-foreground);
	border-radius: 12px;
	font-weight: 600;
	transition: background 0.2s;
}

.btn-secondary:hover {
	background: rgba(42, 42, 50, 0.8);
}

/* Section Titles */
.title-hero {
	font-size: 2.25rem;
	font-weight: 900;
	line-height: 1.1;
	color: var(--foreground);
}

@media (min-width: 1024px) {
	.title-hero {
		font-size: 3rem;
	}
}

@media (min-width: 1280px) {
	.title-hero {
		font-size: 3.75rem;
	}
}

.title-section {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--foreground);
}

@media (min-width: 1024px) {
	.title-section {
		font-size: 1.875rem;
	}
}

.section-title-margin {
	margin-bottom: 32px;
}

.title-cta {
	font-size: 1.875rem;
	font-weight: 900;
	color: var(--foreground);
	text-shadow: 0 0 40px rgba(74, 222, 128, 0.3);
}

@media (min-width: 1024px) {
	.title-cta {
		font-size: 2.25rem;
	}
}

@media (min-width: 1280px) {
	.title-cta {
		font-size: 3rem;
	}
}

/* Section */
.section {
	padding: 48px 0;
}

.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

.section-cta {
	margin-top: 32px;
	text-align: center;
}

.link-primary {
	font-size: 14px;
	font-weight: 500;
	color: var(--primary);
}

.link-primary:hover {
	text-decoration: underline;
}

/* Hero Section */
.hero-section {
	position: relative;
	padding: 48px 0 64px;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.hero-section {
		padding: 80px 0;
	}
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(74, 222, 128, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(74, 222, 128, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(
		ellipse 80% 80% at 50% 0%,
		black 40%,
		transparent 100%
	);
	animation: hero-grid-move 20s linear infinite;
}

@keyframes hero-grid-move {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 60px 60px;
	}
}

.hero-content {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

@media (min-width: 1024px) {
	.hero-content {
		flex-direction: row;
		gap: 48px;
	}
}

.hero-text {
	flex: 1;
	text-align: center;
}

@media (min-width: 1024px) {
	.hero-text {
		text-align: left;
	}
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(74, 222, 128, 0.1);
	border: 1px solid rgba(74, 222, 128, 0.2);
	border-radius: 100px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--primary);
	margin-bottom: 24px;
}

.hero-badge-dot {
	width: 8px;
	height: 8px;
	background: var(--primary);
	border-radius: 50%;
	animation: hero-badge-pulse 2s ease-in-out infinite;
}

@keyframes hero-badge-pulse {
	0%,
	100% {
		opacity: 1;
		box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
	}
	50% {
		opacity: 0.7;
		box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
	}
}

.hero-highlight {
	color: var(--primary);
	text-shadow: 0 0 30px rgba(74, 222, 128, 0.4);
}

.hero-description {
	font-size: 1.125rem;
	color: var(--muted-foreground);
	margin: 24px 0 32px;
	max-width: 36rem;
	line-height: 1.6;
}

@media (min-width: 1024px) {
	.hero-description {
		margin-left: 0;
	}
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
}

@media (min-width: 640px) {
	.hero-buttons {
		flex-direction: row;
	}
}

@media (min-width: 1024px) {
	.hero-buttons {
		justify-content: flex-start;
	}
}

.hero-btn-primary {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	background: var(--primary);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 40px rgba(74, 222, 128, 0.4);
}

.hero-btn-text {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--primary-foreground);
}

.hero-btn-shine {
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transform: skewX(-20deg);
	animation: hero-btn-shine 3s ease-in-out infinite;
}

@keyframes hero-btn-shine {
	0%,
	100% {
		left: -100%;
	}
	50% {
		left: 150%;
	}
}

.hero-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	background: var(--secondary);
	border: 1px solid var(--border);
	border-radius: 12px;
	font-weight: 600;
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	transition: all 0.3s;
}

.hero-btn-secondary:hover {
	background: rgba(42, 42, 50, 0.8);
	border-color: rgba(58, 58, 69, 0.8);
}

/* Hero Card */
.hero-card-wrapper {
	position: relative;
	max-width: 400px;
	width: 100%;
	flex: 1;
}

.hero-card-glow {
	position: absolute;
	inset: -20px;
	background: radial-gradient(
		circle at 50% 30%,
		rgba(74, 222, 128, 0.25),
		transparent 60%
	);
	filter: blur(40px);
	animation: hero-glow-pulse 4s ease-in-out infinite;
}

@keyframes hero-glow-pulse {
	0%,
	100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
}

.hero-card {
	position: relative;
	background: linear-gradient(145deg, #262630, #1a1a1f);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	overflow: hidden;
}

.hero-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(74, 222, 128, 0.5),
		transparent
	);
}

.hero-particle {
	position: absolute;
	width: 6px;
	height: 6px;
	background: var(--primary);
	border-radius: 50%;
	opacity: 0.6;
	animation: hero-particle-float 6s ease-in-out infinite;
}

.hero-particle-1 {
	top: 20%;
	right: 10%;
}

.hero-particle-2 {
	bottom: 30%;
	left: 5%;
	animation-delay: -2s;
	width: 4px;
	height: 4px;
}

.hero-particle-3 {
	top: 60%;
	right: 5%;
	animation-delay: -4s;
	width: 8px;
	height: 8px;
	opacity: 0.4;
}

@keyframes hero-particle-float {
	0%,
	100% {
		transform: translate(0, 0);
	}
	25% {
		transform: translate(10px, -15px);
	}
	50% {
		transform: translate(-5px, 10px);
	}
	75% {
		transform: translate(15px, 5px);
	}
}

.hero-gift {
	position: relative;
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #dc2626, #b91c1c);
	border-radius: 16px;
	color: var(--foreground);
}

.hero-gift-pulse {
	position: absolute;
	inset: 0;
	border-radius: 16px;
	animation: hero-gift-pulse 2s ease-out infinite;
}
.hero-gift img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes hero-gift-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(184, 25, 216, 0.4);
	}
	100% {
		box-shadow: 0 0 0 20px rgba(220, 38, 38, 0);
	}
}

.hero-amount-wrapper {
	text-align: center;
	margin-bottom: 8px;
}

.hero-amount {
	font-size: 3.5rem;
	font-weight: 900;
	color: var(--foreground);
	line-height: 1;
	letter-spacing: -0.02em;
	text-shadow: 0 0 60px rgba(74, 222, 128, 0.3);
	animation: hero-amount-glow 3s ease-in-out infinite;
}

@keyframes hero-amount-glow {
	0%,
	100% {
		text-shadow: 0 0 60px rgba(74, 222, 128, 0.3);
	}
	50% {
		text-shadow: 0 0 80px rgba(74, 222, 128, 0.5);
	}
}

.hero-currency {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary);
	margin-top: 4px;
	letter-spacing: 0.02em;
}

.hero-card-desc {
	color: var(--muted-foreground);
	font-size: 14px;
	margin-bottom: 24px;
	text-align: center;
}

.hero-card-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 24px;
	background: var(--primary);
	border-radius: 10px;
	font-weight: 600;
	color: var(--primary-foreground);
	transition: all 0.3s;
}

.hero-card-btn:hover {
	background: #5ee88e;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(74, 222, 128, 0.3);
}

.hero-card-btn:hover svg {
	transform: translateX(4px);
}

.hero-card-btn svg {
	transition: transform 0.3s;
}

/* Winners Grid */
.winners-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	overflow-x: auto;
	width: 100%;
}

@media (min-width: 640px) {
	.winners-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.winners-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.winner-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px;
	transition: all 0.2s;
}

.winner-card:hover {
	border-color: rgba(74, 222, 128, 0.5);
	background: rgba(42, 42, 50, 0.3);
}

.winner-icon {
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	flex-shrink: 0;
}
.winner-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gradient-green {
	background: linear-gradient(135deg, #16a34a, #15803d);
}
.gradient-blue {
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
}
.gradient-purple {
	background: linear-gradient(135deg, #9333ea, #7e22ce);
}
.gradient-orange {
	background: linear-gradient(135deg, #ea580c, #c2410c);
}
.gradient-indigo {
	background: linear-gradient(135deg, #4f46e5, #7c3aed);
}
.gradient-red {
	background: linear-gradient(135deg, #dc2626, #991b1b);
}
.gradient-yellow {
	background: linear-gradient(135deg, #eab308, #ea580c);
}
.gradient-amber {
	background: linear-gradient(135deg, #d97706, #ca8a04);
}
.gradient-pink {
	background: linear-gradient(135deg, #ec4899, #9333ea);
}

.winner-info {
	flex: 1;
	min-width: 0;
}

.winner-game {
	font-weight: 600;
	color: var(--foreground);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.winner-user {
	font-size: 12px;
	color: var(--muted-foreground);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.winner-amount {
	color: var(--primary);
	font-weight: 700;
	margin-top: 4px;
}

/* Games Carousel */
.games-carousel {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

@media (min-width: 640px) {
	.games-carousel {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.games-carousel {
		grid-template-columns: repeat(6, 1fr);
	}
}

.carousel-controls {
	display: flex;
	align-items: center;
	gap: 8px;
}

.carousel-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted-foreground);
	cursor: pointer;
	transition: all 0.2s;
}

.carousel-btn:hover {
	color: var(--foreground);
	border-color: rgba(74, 222, 128, 0.5);
}

.game-card {
	display: block;
}

.game-image {
	aspect-ratio: 3/4;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	margin-bottom: 12px;
	transition: transform 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.3);
}
.game-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s;
}

.game-card:hover .game-image {
	transform: scale(1.05);
}

.game-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.game-overlay {
	position: absolute;
	inset: 0;
	background: rgba(74, 222, 128, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.2s;
	z-index: 5;
}

.game-card:hover .game-overlay {
	opacity: 1;
	background: rgba(74, 222, 128, 0.2);
}

.game-play-btn {
	padding: 8px 16px;
	background: var(--primary);
	color: var(--primary-foreground);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
}

.game-name-overlay {
	position: absolute;
	bottom: 12px;
	left: 12px;
	right: 12px;
	color: white;
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	z-index: 2;
}

.game-provider {
	font-size: 12px;
	color: var(--muted-foreground);
}

/* Text Block */
.text-block-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 24px;
}

@media (min-width: 1024px) {
	.text-block-card {
		padding: 40px;
	}
}

.text-wrapper {
	overflow: hidden;
	max-width: 100%;
}

.text-wrapper p {
	margin-bottom: 16px;
	line-height: 1.7;
	color: var(--muted-foreground);
}

.text-wrapper .title-h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 16px;
	margin-top: 24px;
	color: var(--foreground);
}

.text-wrapper .title-h2:first-child {
	margin-top: 0;
}

.text-wrapper .title-h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 12px;
	margin-top: 20px;
	color: var(--foreground);
}

.text-wrapper ul,
.text-wrapper ol {
	padding-left: 24px;
	margin-bottom: 16px;
}

.text-wrapper ul {
	list-style: disc;
}

.text-wrapper ol {
	list-style: decimal;
}

.text-wrapper ul li,
.text-wrapper ol li {
	margin-bottom: 8px;
	color: var(--muted-foreground);
	line-height: 1.6;
}

.text-wrapper blockquote {
	position: relative;
	margin: 24px 0;
	padding: 16px 24px;
	background: #262630;
	border-left: 4px solid var(--primary);
	border-radius: 0 8px 8px 0;
	color: rgba(255, 255, 255, 0.8);
	font-style: italic;
}

.text-wrapper blockquote p {
	margin-bottom: 0;
}

.table-wrapper {
	width: 100%;
	overflow-x: auto;
	margin: 24px 0;
	-webkit-overflow-scrolling: touch;
}

.text-wrapper table {
	width: 100%;
	min-width: 500px;
	border-collapse: collapse;
}

.text-wrapper table th,
.text-wrapper table td {
	padding: 12px 16px;
	text-align: left;
	border: 1px solid var(--border);
	white-space: nowrap;
}

@media (min-width: 768px) {
	.text-wrapper table th,
	.text-wrapper table td {
		white-space: normal;
	}
}

.text-wrapper table th {
	background: var(--secondary);
	font-weight: 600;
	color: var(--foreground);
}

.text-wrapper table td {
	color: var(--muted-foreground);
}

.text-wrapper table tr:nth-child(even) td {
	background: #1f1f26;
}

.text-wrapper table tr:hover td {
	background: #262630;
}

.text-wrapper a {
	color: var(--primary);
	text-decoration: underline;
	transition: opacity 0.2s;
}

.text-wrapper a:hover {
	opacity: 0.8;
}

/* FAQ */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	text-align: left;
	cursor: pointer;
}

.faq-question span {
	font-weight: 600;
	color: var(--foreground);
	padding-right: 16px;
}

.faq-arrow {
	width: 20px;
	height: 20px;
	color: var(--muted-foreground);
	flex-shrink: 0;
	transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer-content {
	padding: 0 20px 20px;
	color: var(--muted-foreground);
	line-height: 1.6;
}

/* CTA Section */
.cta-section {
	padding: 64px 0;
}

.cta-container {
	position: relative;
	background: linear-gradient(135deg, rgba(38, 50, 38, 0.5), #1a1a1f);
	border: 1px solid rgba(74, 222, 128, 0.2);
	border-radius: 16px;
	overflow: hidden;
}

.cta-border-glow {
	position: absolute;
	inset: -2px;
	background: conic-gradient(
		from 0deg,
		rgba(74, 222, 128, 0),
		rgba(74, 222, 128, 0.5),
		rgba(74, 222, 128, 0),
		rgba(74, 222, 128, 0.5),
		rgba(74, 222, 128, 0)
	);
	border-radius: 16px;
	animation: cta-border-spin 6s linear infinite;
	z-index: 0;
	opacity: 0.6;
}

.cta-border-glow::after {
	content: '';
	position: absolute;
	inset: 2px;
	background: #1a1a1f;
	border-radius: inherit;
}

@keyframes cta-border-spin {
	to {
		transform: rotate(360deg);
	}
}

.cta-inner {
	position: relative;
	z-index: 10;
	padding: 32px;
}

@media (min-width: 1024px) {
	.cta-inner {
		padding: 56px;
	}
}

.cta-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.4;
	animation: cta-orb-float 8s ease-in-out infinite;
}

.cta-orb-1 {
	width: 200px;
	height: 200px;
	background: var(--primary);
	top: -50px;
	left: -50px;
}

.cta-orb-2 {
	width: 150px;
	height: 150px;
	background: #22c55e;
	bottom: -30px;
	right: 20%;
	animation-delay: -3s;
}

.cta-orb-3 {
	width: 100px;
	height: 100px;
	background: #facc15;
	top: 20%;
	right: -20px;
	animation-delay: -5s;
}

@keyframes cta-orb-float {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	25% {
		transform: translate(20px, -20px) scale(1.1);
	}
	50% {
		transform: translate(-10px, 10px) scale(0.95);
	}
	75% {
		transform: translate(15px, 15px) scale(1.05);
	}
}

.cta-content {
	position: relative;
	z-index: 20;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

@media (min-width: 1024px) {
	.cta-content {
		flex-direction: row;
	}
}

.cta-text {
	text-align: center;
	max-width: 36rem;
}

@media (min-width: 1024px) {
	.cta-text {
		text-align: left;
	}
}

.cta-title-wrapper {
	position: relative;
	margin-bottom: 16px;
}

.cta-title {
	position: relative;
}

.cta-title::before,
.cta-title::after {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.cta-title::before {
	color: var(--primary);
	animation: cta-glitch-1 4s infinite;
}

.cta-title::after {
	color: #22d3ee;
	animation: cta-glitch-2 4s infinite;
}

@keyframes cta-glitch-1 {
	0%,
	85%,
	100% {
		opacity: 0;
		transform: translate(0);
	}
	86% {
		opacity: 0.8;
		transform: translate(-3px, 1px);
	}
	87% {
		opacity: 0;
		transform: translate(0);
	}
	88% {
		opacity: 0.6;
		transform: translate(2px, -1px);
	}
	89% {
		opacity: 0;
	}
}

@keyframes cta-glitch-2 {
	0%,
	85%,
	100% {
		opacity: 0;
		transform: translate(0);
	}
	86% {
		opacity: 0.6;
		transform: translate(3px, -1px);
	}
	87% {
		opacity: 0;
		transform: translate(0);
	}
	88% {
		opacity: 0.8;
		transform: translate(-2px, 1px);
	}
	89% {
		opacity: 0;
	}
}

.cta-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: center;
	margin-bottom: 24px;
}

@media (min-width: 1024px) {
	.cta-meta {
		justify-content: flex-start;
	}
}

.cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	background: rgba(220, 38, 38, 0.2);
	border: 1px solid rgba(220, 38, 38, 0.5);
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
	color: #f87171;
	letter-spacing: 0.05em;
}

.cta-badge-pulse {
	width: 6px;
	height: 6px;
	background: #ef4444;
	border-radius: 50%;
	animation: cta-pulse 1.5s ease-in-out infinite;
}

@keyframes cta-pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.3);
	}
}

.cta-players {
	color: var(--muted-foreground);
}

.cta-counter {
	font-weight: 600;
	color: var(--foreground);
	font-variant-numeric: tabular-nums;
}

.cta-description {
	color: var(--muted-foreground);
	font-size: 1.125rem;
	line-height: 1.6;
}
.cta-description span,
.hero-description span {
	white-space: nowrap;
}

.text-primary {
	color: var(--primary);
	font-weight: 700;
}

.cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

@media (min-width: 640px) {
	.cta-buttons {
		width: auto;
	}
}

.cta-button-primary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 32px;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-button-primary:hover {
	transform: translateY(-2px);
}

.cta-button-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--primary), #22c55e);
	transition: opacity 0.3s;
}

.cta-button-primary::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #5ee88e, #34d399);
	opacity: 0;
	transition: opacity 0.3s;
}

.cta-button-primary:hover::before {
	opacity: 1;
}

.cta-button-primary::after {
	content: '';
	position: absolute;
	inset: -50%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.15),
		transparent
	);
	transform: translateX(-100%) rotate(25deg);
}

.cta-button-primary:hover::after {
	animation: cta-shine 0.6s ease-out;
}

@keyframes cta-shine {
	to {
		transform: translateX(100%) rotate(25deg);
	}
}

.cta-button-content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary-foreground);
}

.cta-icon {
	animation: cta-star-pulse 2s ease-in-out infinite;
}

@keyframes cta-star-pulse {
	0%,
	100% {
		transform: scale(1) rotate(0deg);
	}
	50% {
		transform: scale(1.15) rotate(10deg);
	}
}

.cta-button-secondary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 28px;
	background: transparent;
	border: 1px solid var(--border);
	border-radius: 12px;
	color: var(--muted-foreground);
	font-weight: 600;
	transition: all 0.3s;
}

.cta-button-secondary:hover {
	border-color: rgba(74, 222, 128, 0.5);
	color: var(--foreground);
	background: rgba(74, 222, 128, 0.08);
}

/* Floating coins */
.cta-coin {
	position: absolute;
	bottom: -20px;
	width: 12px;
	height: 12px;
	background: linear-gradient(135deg, #fbbf24, #d97706);
	border-radius: 50%;
	opacity: 0;
	animation: cta-coin-float 5s ease-out forwards;
	pointer-events: none;
	z-index: 5;
}

.cta-coin::after {
	content: '';
	position: absolute;
	inset: 2px;
	background: #f59e0b;
	border-radius: 50%;
}

@keyframes cta-coin-float {
	0% {
		opacity: 0;
		transform: translateY(0) rotate(0deg) scale(0.5);
	}
	10% {
		opacity: 0.8;
	}
	90% {
		opacity: 0.6;
	}
	100% {
		opacity: 0;
		transform: translateY(-400px) rotate(720deg) scale(1);
	}
}

/* Footer */
.footer {
	padding: 48px 0;
	border-top: 1px solid var(--border);
}

.footer-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

@media (min-width: 1024px) {
	.footer-top {
		flex-direction: row;
		justify-content: space-between;
	}
}

.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

@media (min-width: 1024px) {
	.footer-brand {
		align-items: flex-start;
	}
}

.footer-description {
	color: var(--muted-foreground);
	font-size: 14px;
	text-align: center;
	max-width: 28rem;
}

@media (min-width: 1024px) {
	.footer-description {
		text-align: left;
	}
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px;
	font-size: 14px;
}

.footer-links a {
	color: var(--muted-foreground);
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--foreground);
}

.footer-bottom {
	margin-top: 32px;
	padding-top: 32px;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	font-size: 12px;
	color: var(--muted-foreground);
}

@media (min-width: 640px) {
	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}

.footer-badges {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-badge {
	display: flex;
	align-items: center;
	gap: 4px;
}
