*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
	--bg-body: #f0f1f3;
	--bg-content: #ffffff;
	--bg-card: #ffffff;
	--bg-sidebar: #ffffff;
	--bg-header: #1c1c1c;
	--accent-green: #22c55e;
	--accent-green-hover: #16a34a;
	--text-primary: #1f2937;
	--text-secondary: #6b7280;
	--text-muted: #9ca3af;
	--text-white: #ffffff;
	--border-color: #e5e7eb;
	--border-light: #f3f4f6;
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--shadow-md:
		0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	--shadow-lg:
		0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	--radius: 12px;
	--radius-sm: 8px;
	--radius-xs: 6px;
	--sidebar-width: 240px;
	--header-height: 56px;
	--transition-fast: 0.15s ease;
	--transition-normal: 0.25s ease;
	--transition-slow: 0.35s ease;
}
html {
	font-size: 16px;
	scroll-behavior: smooth;
}
body {
	font-family:
		'Inter',
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		Roboto,
		sans-serif;
	background: var(--bg-body);
	color: var(--text-primary);
	line-height: 1.5;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
}
a {
	color: inherit;
	text-decoration: none;
	transition:
		color var(--transition-normal),
		background var(--transition-normal),
		transform var(--transition-normal),
		box-shadow var(--transition-normal),
		opacity var(--transition-normal);
}
ul,
ol {
	list-style: none;
}
img {
	max-width: 100%;
	display: block;
}
button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none;
	transition: all var(--transition-normal);
}

/* Sidebar */
.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: var(--sidebar-width);
	height: 100vh;
	background: var(--bg-sidebar);
	border-right: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	z-index: 1000;
	transform: translateX(-100%);
	transition: transform var(--transition-normal);
}
.sidebar.open {
	transform: translateX(0);
}
.sidebar-header {
	padding: 16px 20px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo {
	display: flex;
	align-items: center;
}
.logo-svg {
	height: 22px;
	width: auto;
	transition: opacity var(--transition-normal);
}
.logo-svg path {
	fill: var(--text-primary);
}
.logo:hover .logo-svg {
	opacity: 0.8;
}
.close-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--bg-body);
	border-radius: var(--radius-xs);
	color: var(--text-secondary);
	font-size: 20px;
	transition: all var(--transition-normal);
}
.close-menu:hover {
	background: var(--border-color);
	color: var(--text-primary);
}
.sidebar-nav {
	flex: 1;
	padding: 16px 0;
	overflow-y: auto;
}
.nav-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	border-left: 3px solid transparent;
	transition: all var(--transition-normal);
}
.nav-link:hover {
	color: var(--text-primary);
	background: var(--bg-body);
}
.nav-link.active {
	color: var(--accent-green);
	background: linear-gradient(
		90deg,
		rgba(34, 197, 94, 0.15) 0%,
		rgba(34, 197, 94, 0.05) 100%
	);
	border-left-color: var(--accent-green);
}
.nav-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	color: var(--text-muted);
	transition: all var(--transition-normal);
}
.nav-link:hover .nav-icon {
	color: var(--text-primary);
}
.nav-link.active .nav-icon {
	color: var(--accent-green);
}
.sidebar-cta {
	padding: 16px 20px;
	border-top: 1px solid var(--border-color);
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 14px;
	transition: all var(--transition-normal);
	white-space: nowrap;
}
.btn-primary {
	background: var(--accent-green);
	color: var(--text-white);
}
.btn-primary:hover {
	background: var(--accent-green-hover);
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}
.btn-secondary {
	background: var(--bg-body);
	color: var(--text-primary);
	border: 1px solid var(--border-color);
}
.btn-secondary:hover {
	background: var(--border-color);
	border-color: var(--text-muted);
}
.btn-white {
	background: var(--bg-content);
	color: var(--text-primary);
}
.btn-white:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-1px);
}
.btn-block {
	width: 100%;
}
.btn-sm {
	padding: 8px 16px;
	font-size: 13px;
}
.btn-xs {
	padding: 6px 12px;
	font-size: 12px;
}

/* Mobile Header */
.header-mobile {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-height);
	background: var(--bg-header);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	z-index: 999;
}
.burger {
	width: 40px;
	height: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--text-white);
	border-radius: 1px;
	transition: all var(--transition-normal);
}
.burger:hover span {
	background: var(--accent-green);
}
.header-logo {
	display: flex;
	align-items: center;
}
.header-logo .logo-svg {
	height: 18px;
}
.header-logo .logo-svg path {
	fill: var(--text-white);
}
.header-logo:hover .logo-svg {
	opacity: 0.8;
}
.header-cta .btn {
	padding: 8px 20px;
}

/* Main Layout */
.main {
	padding-top: var(--header-height);
	min-height: 100vh;
}
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}

/* Hero Slider */
.hero-slider {
	position: relative;
	padding: 24px 0;
	background: var(--bg-content);
	border-bottom: 1px solid var(--border-color);
	overflow: hidden;
}
.hero-slider-track {
	display: flex;
	transition: transform 0.5s ease;
}
.hero-slide {
	flex: 0 0 100%;
	min-width: 100%;
	padding: 0 16px;
}
.hero-slide-inner {
	border-radius: var(--radius);
	overflow: hidden;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 28px;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.hero-slide-inner.purple {
	/* background: linear-gradient(135deg, #6b21a8 0%, #4c1d95 50%, #2e1065 100%); */
	background-image: url('img/1242x804_joker@x2.webp');
}
.hero-slide-inner.red {
	/* background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #7f1d1d 100%); */
	background-image: url('img/1125x469+(33)-2@x3.webp');
}
.hero-slide-inner.blue {
	/* background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%); */
	background-image: url('img/1125x469+-+2025-11-11T114331@x3.webp');
}
.hero-slide-content {
	position: relative;
	z-index: 2;
}
.hero-slide-title {
	font-size: clamp(28px, 5vw, 40px);
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 6px;
}
.hero-slide-subtitle {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	margin-bottom: 20px;
}
.hero-slider-nav {
	position: absolute;
	bottom: 16px;
	right: 32px;
	display: flex;
	gap: 8px;
	z-index: 10;
}
.hero-slider-btn {
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-white);
	font-size: 16px;
	backdrop-filter: blur(4px);
	transition: all var(--transition-normal);
}
.hero-slider-btn:hover {
	background: rgba(255, 255, 255, 0.4);
}
.hero-slider-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}
.hero-slider-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--border-color);
	transition: all var(--transition-normal);
	cursor: pointer;
}
.hero-slider-dot.active {
	background: var(--accent-green);
	width: 24px;
	border-radius: 4px;
}

/* Sections */
.section {
	padding: 40px 0;
}
.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 12px;
}
.section-controls {
	display: flex;
	align-items: center;
	gap: 8px;
}
.section-btn {
	width: 36px;
	height: 36px;
	border-radius: var(--radius-sm);
	background: var(--bg-content);
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: all var(--transition-normal);
}
.section-btn:hover {
	border-color: var(--text-muted);
	color: var(--text-primary);
	background: var(--bg-body);
}

/* Title Styles */
.title-xl {
	font-size: clamp(28px, 5vw, 48px);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 16px;
	color: var(--text-primary);
}
.title-lg {
	font-size: clamp(22px, 4vw, 32px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-primary);
}
.title-md {
	font-size: clamp(18px, 3vw, 24px);
	font-weight: 600;
	line-height: 1.3;
}
.title-sm {
	font-size: clamp(16px, 2.5vw, 20px);
	font-weight: 600;
	line-height: 1.3;
}
.subtitle {
	font-size: clamp(14px, 2vw, 16px);
	color: var(--text-secondary);
	margin-bottom: 24px;
	line-height: 1.6;
}
.highlight {
	color: var(--accent-green);
}

/* Hero (fallback for pages without slider) */
.hero {
	position: relative;
	padding: 40px 0;
	background: var(--bg-content);
	border-bottom: 1px solid var(--border-color);
}
.hero-content {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

/* Features Grid */
.features {
	background: var(--bg-content);
	border-bottom: 1px solid var(--border-color);
}
.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.feature-card {
	background: var(--bg-body);
	border-radius: var(--radius);
	padding: 24px;
	text-align: center;
	transition: all var(--transition-normal);
}
.feature-card:hover {
	background: var(--bg-content);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}
.feature-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--accent-green) 0%, #16a34a 100%);
	border-radius: var(--radius-sm);
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.feature-icon svg {
	width: 28px;
	height: 28px;
	color: white;
}
.feature-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text-primary);
}
.feature-text {
	color: var(--text-secondary);
	font-size: 13px;
	line-height: 1.5;
}

/* Winners Section */
.winners-section {
	background: var(--bg-content);
	padding: 32px 0;
}
.winners-scroll {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 8px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.winners-scroll::-webkit-scrollbar {
	display: none;
}
.winner-card {
	flex: 0 0 280px;
	min-width: 240px;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background: var(--bg-body);
	border-radius: var(--radius);
	scroll-snap-align: start;
	transition: all var(--transition-normal);
	cursor: pointer;
}
.winner-card:hover {
	background: var(--bg-content);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}
.winner-img {
	width: 80px;
	height: 80px;
	border-radius: var(--radius-sm);
	background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
	flex-shrink: 0;
	overflow: hidden;
	transition: transform var(--transition-normal);
}
.winner-card:hover .winner-img {
	transform: scale(1.05);
}
.winner-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.winner-info {
	flex: 1;
	min-width: 0;
}
.winner-game {
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 6px;
	color: var(--text-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.winner-amount {
	font-size: 22px;
	font-weight: 700;
	color: var(--accent-green);
	margin-bottom: 6px;
	letter-spacing: -0.5px;
	white-space: nowrap;
}
.winner-user {
	font-size: 13px;
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	gap: 6px;
}
.winner-user-icon {
	width: 16px;
	height: 16px;
	background: var(--border-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Slots Grid */
.slots-section {
	padding: 32px 0;
}
.slots-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.slot-card {
	display: block;
	background: var(--bg-content);
	border-radius: var(--radius);
	overflow: hidden;
	transition: all var(--transition-normal);
	cursor: pointer;
}
.slot-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}
.slot-img {
	aspect-ratio: 3/4;
	background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #6366f1 100%);
	position: relative;
	overflow: hidden;
}
.slot-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}
.slot-card:hover .slot-img img {
	transform: scale(1.05);
}
.slot-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
	opacity: 0;
	transition: opacity var(--transition-normal);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 16px;
}
.slot-card:hover .slot-overlay {
	opacity: 1;
}
.slot-info {
	padding: 12px;
}
.slot-name {
	font-size: 13px;
	font-weight: 500;
	color: var(--text-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
}

/* Content Area (SEO text) */
.content-section {
	background: var(--bg-content);
	padding: 40px 0;
	border-top: 1px solid var(--border-color);
}
.content-area {
	background: var(--bg-body);
	border-radius: var(--radius);
	padding: 32px;
	max-width: 100%;
}
.content-area h1 {
	font-size: clamp(24px, 4vw, 32px);
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-primary);
}
.content-area h2 {
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 600;
	margin-top: 32px;
	margin-bottom: 16px;
	color: var(--text-primary);
}
.content-area h3 {
	font-size: clamp(18px, 2.5vw, 22px);
	font-weight: 600;
	margin-top: 28px;
	margin-bottom: 12px;
	color: var(--text-primary);
}
.content-area h4,
.content-area h5,
.content-area h6 {
	font-size: 18px;
	font-weight: 600;
	margin-top: 24px;
	margin-bottom: 10px;
	color: var(--text-primary);
}
.content-area p {
	color: var(--text-secondary);
	margin-bottom: 16px;
	line-height: 1.7;
	font-size: 15px;
}
.content-area ul,
.content-area ol {
	color: var(--text-secondary);
	margin-bottom: 16px;
	padding-left: 24px;
}
.content-area ul {
	list-style: disc;
}
.content-area ol {
	list-style: decimal;
}
.content-area li {
	margin-bottom: 10px;
	line-height: 1.6;
	font-size: 15px;
}
.content-area a {
	color: var(--accent-green);
	text-decoration: underline;
	transition: color var(--transition-normal);
}
.content-area a:hover {
	color: var(--accent-green-hover);
}

/* Tables in content area */
.content-area .table-wrapper {
	width: 100%;
	overflow-x: auto;
	margin: 20px 0;
	-webkit-overflow-scrolling: touch;
}
.content-area table {
	width: 100%;
	min-width: 500px;
	border-collapse: collapse;
	font-size: 14px;
}
.content-area th,
.content-area td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid var(--border-color);
}
.content-area th {
	background: var(--bg-content);
	font-weight: 600;
	color: var(--text-primary);
	white-space: nowrap;
}
.content-area td {
	color: var(--text-secondary);
}
.content-area tr:hover td {
	background: var(--bg-content);
}

/* FAQ */
.faq-section {
	background: var(--bg-body);
	padding: 40px 0;
}
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 100%;
}
.faq-item {
	background: var(--bg-content);
	border-radius: var(--radius-sm);
	overflow: hidden;
	border: 1px solid var(--border-color);
	transition: all var(--transition-normal);
}
.faq-item:hover {
	border-color: var(--text-muted);
}
.faq-item.open {
	border-color: var(--accent-green);
}
.faq-question {
	width: 100%;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	text-align: left;
	color: var(--text-primary);
	font-weight: 500;
	font-size: 15px;
	cursor: pointer;
	transition: all var(--transition-normal);
}
.faq-question:hover {
	color: var(--accent-green);
}
.faq-icon {
	width: 24px;
	height: 24px;
	position: relative;
	flex-shrink: 0;
	transition: transform var(--transition-normal);
}
.faq-icon::before,
.faq-icon::after {
	content: '';
	position: absolute;
	background: var(--text-muted);
	transition: all var(--transition-normal);
}
.faq-icon::before {
	width: 12px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq-icon::after {
	width: 2px;
	height: 12px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq-item.open .faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}
.faq-item.open .faq-icon::before {
	background: var(--accent-green);
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--transition-normal);
}
.faq-answer-inner {
	padding: 0 20px 18px;
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 14px;
}
.faq-item.open .faq-answer {
	max-height: 400px;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, #1c1c1c 0%, #2d2d2d 100%);
	text-align: center;
	padding: 60px 0;
}
.cta-content {
	max-width: 600px;
	margin: 0 auto;
}
.cta-section .title-lg {
	color: var(--text-white);
	margin-bottom: 12px;
}
.cta-section .subtitle {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 28px;
}
.nowrap {
	white-space: nowrap;
}
.cta-section .btn {
	font-size: 16px;
	padding: 14px 36px;
}

/* Footer */
.footer {
	background: var(--bg-content);
	border-top: 1px solid var(--border-color);
	padding: 48px 0 24px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-bottom: 32px;
}
.footer-brand {
	max-width: 280px;
}
.footer-logo {
	margin-bottom: 16px;
	display: inline-flex;
}
.footer-logo .logo-svg {
	height: 24px;
}
.footer-logo .logo-svg path {
	fill: var(--text-primary);
}
.footer-logo:hover .logo-svg {
	opacity: 0.7;
}
.footer-text {
	color: var(--text-secondary);
	font-size: 13px;
	line-height: 1.6;
}
.footer-nav-title {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 16px;
	color: var(--text-primary);
}
.footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-link {
	color: var(--text-secondary);
	font-size: 13px;
	transition: color var(--transition-normal);
}
.footer-link:hover {
	color: var(--accent-green);
}
.footer-bottom {
	padding-top: 24px;
	border-top: 1px solid var(--border-color);
	text-align: center;
}
.footer-copy {
	color: var(--text-muted);
	font-size: 13px;
}
.footer-disclaimer {
	color: var(--text-muted);
	font-size: 12px;
	margin-top: 12px;
	line-height: 1.6;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Overlay */
.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-normal);
	backdrop-filter: blur(4px);
}
.overlay.active {
	opacity: 1;
	visibility: visible;
}

/* App Page */
.app-features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.app-feature {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: var(--bg-content);
	border-radius: var(--radius);
	border: 1px solid var(--border-color);
	transition: all var(--transition-normal);
}
.app-feature:hover {
	border-color: var(--accent-green);
	box-shadow: var(--shadow-sm);
	transform: translateY(-2px);
}
.app-feature-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--accent-green) 0%, #16a34a 100%);
	border-radius: var(--radius-sm);
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.app-feature-content {
	flex: 1;
}
.app-feature-title {
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 15px;
}
.app-feature-text {
	color: var(--text-secondary);
	font-size: 13px;
	line-height: 1.5;
}

.download-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}
.download-btn {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 24px;
	background: var(--bg-header);
	border-radius: var(--radius-sm);
	transition: all var(--transition-normal);
}
.download-btn:hover {
	background: #2d2d2d;
	transform: translateY(-2px);
}
.download-icon {
	width: 32px;
	height: 32px;
	background: var(--text-white);
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.download-text {
	text-align: left;
}
.download-label {
	font-size: 11px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.download-store {
	font-weight: 600;
	color: var(--text-white);
	font-size: 15px;
}

/* Mirror Page */
.mirror-status {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 24px;
	background: linear-gradient(
		135deg,
		rgba(34, 197, 94, 0.1) 0%,
		rgba(34, 197, 94, 0.05) 100%
	);
	border-radius: var(--radius);
	border: 1px solid var(--accent-green);
	margin-bottom: 24px;
}
.status-dot {
	width: 12px;
	height: 12px;
	background: var(--accent-green);
	border-radius: 50%;
	animation: pulse 2s infinite;
	box-shadow: 0 0 8px var(--accent-green);
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		transform: scale(0.9);
	}
}
.status-text {
	font-weight: 500;
	font-size: 15px;
}
.status-text span {
	color: var(--accent-green);
}

.mirror-benefits {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}
.mirror-benefit {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px;
	background: var(--bg-content);
	border-radius: var(--radius-sm);
	border: 1px solid var(--border-color);
	transition: all var(--transition-normal);
}
.mirror-benefit:hover {
	border-color: var(--accent-green);
	transform: translateY(-2px);
}
.benefit-icon {
	width: 40px;
	height: 40px;
	background: var(--bg-body);
	border-radius: var(--radius-sm);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.benefit-content {
	flex: 1;
}
.benefit-title {
	font-weight: 600;
	margin-bottom: 4px;
	font-size: 14px;
}
.benefit-text {
	color: var(--text-secondary);
	font-size: 13px;
	line-height: 1.5;
}

/* About Page */
.about-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 32px;
}
.stat-card {
	background: var(--bg-content);
	border-radius: var(--radius);
	padding: 24px 16px;
	text-align: center;
	border: 1px solid var(--border-color);
	transition: all var(--transition-normal);
}
.stat-card:hover {
	border-color: var(--accent-green);
	transform: translateY(-2px);
}
.stat-value {
	font-size: clamp(28px, 5vw, 36px);
	font-weight: 700;
	color: var(--accent-green);
	margin-bottom: 6px;
}
.stat-label {
	color: var(--text-secondary);
	font-size: 13px;
}

.about-values {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.value-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: var(--bg-content);
	border-radius: var(--radius);
	border: 1px solid var(--border-color);
	transition: all var(--transition-normal);
}
.value-card:hover {
	border-color: var(--accent-green);
	transform: translateY(-2px);
}
.value-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--accent-green) 0%, #16a34a 100%);
	border-radius: var(--radius-sm);
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.value-content {
	flex: 1;
}
.value-title {
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 15px;
}
.value-text {
	color: var(--text-secondary);
	font-size: 13px;
	line-height: 1.5;
}

/* Responsive */
@media (min-width: 480px) {
	.slots-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.hero-slide-inner {
		min-height: 200px;
		padding: 32px;
	}
}

@media (min-width: 640px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.slots-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.app-features {
		grid-template-columns: repeat(2, 1fr);
	}
	.mirror-benefits {
		grid-template-columns: repeat(2, 1fr);
	}
	.about-stats {
		grid-template-columns: repeat(4, 1fr);
	}
	.about-values {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.winner-card {
		flex: 0 0 300px;
	}
	.hero-slide-inner {
		min-height: 220px;
	}
}

@media (min-width: 768px) {
	.slots-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 16px;
	}
	.hero-slide-inner {
		min-height: 240px;
		padding: 40px;
	}
	.hero-slide-title {
		font-size: 42px;
	}
}

@media (min-width: 1024px) {
	.sidebar {
		transform: translateX(0);
	}
	.close-menu {
		display: none;
	}
	.header-mobile {
		display: none;
	}
	.main {
		padding-top: 0;
		margin-left: var(--sidebar-width);
	}
	.features-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
	.slots-grid {
		grid-template-columns: repeat(6, 1fr);
	}
	.hero-slide-inner {
		min-height: 260px;
	}
}

@media (min-width: 1280px) {
	.slots-grid {
		grid-template-columns: repeat(7, 1fr);
	}
	.container {
		padding: 0 24px;
	}
}
