:root {
	--bg: #070c14;
	--panel: #0d141f;
	--panel-strong: #0f1a28;
	--accent: #9ef26b;
	--accent-2: #c7974a;
	--text: #e9f4dd;
	--muted: #9cb29d;
	--border: #1c2a32;
	--shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
	color-scheme: dark;
}

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

body {
	min-height: 100vh;
	background: radial-gradient(circle at 18% 20%, rgba(158, 242, 107, 0.07), transparent 28%),
		radial-gradient(circle at 82% 12%, rgba(199, 151, 74, 0.09), transparent 26%),
		radial-gradient(circle at 70% 80%, rgba(118, 178, 112, 0.08), transparent 32%),
		linear-gradient(145deg, #050a0f, #070c14 60%, #0b141e);
	color: var(--text);
	font-family: "Manrope", system-ui, -apple-system, sans-serif;
	line-height: 1.7;
	antialias: subpixel-antialiased;
	position: relative;
	overflow-x: hidden;
}

.aurora,
.orb,
.grain {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -2;
}

.aurora {
	background: radial-gradient(circle at 22% 28%, rgba(158, 242, 107, 0.14), transparent 26%),
		radial-gradient(circle at 78% 20%, rgba(199, 151, 74, 0.12), transparent 24%),
		radial-gradient(circle at 68% 72%, rgba(125, 186, 112, 0.12), transparent 32%);
	filter: blur(40px);
}

.orb {
	width: 40vmax;
	height: 40vmax;
	background: radial-gradient(circle, rgba(158, 242, 107, 0.14), transparent 60%);
	filter: blur(30px);
	z-index: -3;
}

.orb-one {
	left: -10%;
	top: 5%;
}

.orb-two {
	right: -15%;
	bottom: -5%;
	background: radial-gradient(circle, rgba(199, 151, 74, 0.2), transparent 60%);
}

.grain {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
	opacity: 0.35;
	mix-blend-mode: soft-light;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image:
		repeating-linear-gradient(90deg, rgba(233, 244, 221, 0.03) 0, rgba(233, 244, 221, 0.03) 1px, transparent 1px, transparent 32px),
		repeating-linear-gradient(0deg, rgba(233, 244, 221, 0.03) 0, rgba(233, 244, 221, 0.03) 1px, transparent 1px, transparent 32px);
	opacity: 0.35;
	mix-blend-mode: soft-light;
	pointer-events: none;
	z-index: -1;
}

.shell {
	max-width: 1200px;
	padding: 0 28px;
	margin: 0 auto;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

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

h1,
h2,
h3,
h4,
h5 {
	font-family: "Chakra Petch", "Manrope", system-ui, sans-serif;
	letter-spacing: 0.2px;
	line-height: 1.2;
}

.navbar {
	position: sticky;
	top: 0;
	padding: 18px 28px;
	margin-top: 12px;
	border: 1px solid var(--border);
	background: rgba(7, 12, 20, 0.92);
	backdrop-filter: blur(18px);
	border-radius: 16px;
	background: linear-gradient(120deg, rgba(158, 242, 107, 0.1), rgba(199, 151, 74, 0.07));
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
	z-index: 999;
	justify-items: center;
}

.brand {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 12px;
}

.brand-mark {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(124, 244, 255, 0.35), rgba(124, 244, 255, 0.08));
	border: 1px solid var(--border);
	display: grid;
	place-items: center;
	font-size: 18px;
	color: var(--accent);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.brand-name {
	font-weight: 700;
	font-size: 18px;
}

.brand-tag {
	color: var(--muted);
	font-size: 13px;
}

.nav-links {
	display: flex;
	gap: 16px;
	justify-content: center;
	align-items: center;
}

.nav-links a {
	padding: 10px 14px;
	border-radius: 10px;
	color: var(--muted);
	transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
	color: var(--text);
	background: rgba(255, 255, 255, 0.04);
	transform: translateY(-1px);
}

.nav-cta {
	display: flex;
	gap: 10px;
	align-items: center;
}

.nav-toggle {
	display: none;
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: 12px;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.btn {
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.02);
	color: var(--text);
	padding: 10px 14px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
	text-align: center;
	box-shadow: 0 3px 0 #1c2a32;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
	border-color: rgba(158, 242, 107, 0.6);
}

.btn.primary {
	background: linear-gradient(135deg, rgba(124, 244, 255, 0.16), rgba(247, 194, 102, 0.16));
	border-color: rgba(124, 244, 255, 0.5);
}

.btn.ghost {
	border-style: dashed;
	color: var(--muted);
}

.btn.outline {
	border-color: rgba(247, 194, 102, 0.5);
	color: var(--text);
}

.badge,
.eyebrow {
	font-size: 13px;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--accent);
	display: inline-block;
	border: 1px solid rgba(158, 242, 107, 0.35);
	padding: 6px 12px;
	border-radius: 10px;
	background: rgba(158, 242, 107, 0.08);
	margin-bottom: 12px;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.hero {
	padding: 80px 0 40px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 26px;
	align-items: center;
	justify-items: center;
}

.hero-text h1 {
	font-size: clamp(32px, 3vw + 14px, 52px);
	margin-bottom: 14px;
}

.hero-text p {
	color: var(--muted);
	max-width: 720px;
		body {
			padding-top: 12px;
		}

		.shell {
			padding: 0 16px;
		}

		.navbar {
			margin: 0;
			border-radius: 14px;
		}

		.nav-cta {
			justify-content: flex-end;
			width: 100%;
		}

		.hero,
		.features,
		.panels,
		.roadmap,
		.stats,
		.cta,
		.footer {
			padding: 0;
		}

		.hero {
			padding-top: 48px;
		}

		.hero-grid {
			gap: 18px;
		}

		.hero-text h1 {
			font-size: clamp(26px, 6vw, 34px);
		}

		.hero-actions {
			flex-direction: column;
			align-items: stretch;
		}

		.hero-actions .btn {
			width: 100%;
		}

		.hero-meta {
			grid-template-columns: 1fr;
		}

		.hero-card {
			margin-top: 10px;
		}

		.stats {
			grid-template-columns: 1fr;
			max-width: 100%;
			gap: 12px;
		}

		.feature-grid {
			grid-template-columns: 1fr;
			gap: 12px;
		}

		.panels {
			grid-template-columns: 1fr;
			max-width: 100%;
		}

		.cta-card {
			grid-template-columns: 1fr;
		}

		.cta {
			text-align: center;
		}

		.hero-card,
		.hero-meta div,
		.stat-card,
		.feature-card,
		.panel-card,
		.cta-card {
			border-radius: 14px;
		}
	font-weight: 700;
	color: var(--text);
}

.hero-card {
	border: 1px solid var(--border);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
	border-radius: 14px;
	padding: 20px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
	text-align: center;
	width: 100%;
}

.floating-label {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(247, 194, 102, 0.15);
	color: var(--accent-2);
	font-weight: 700;
	font-size: 12px;
}

.hero-stat {
	padding: 14px 12px;
	border: 1px dashed var(--border);
	border-radius: 14px;
	margin-bottom: 12px;
	background: rgba(255, 255, 255, 0.02);
}

.hero-stat h3 {
	margin: 4px 0;
	font-size: 20px;
}

.hint {
	color: var(--muted);
	font-size: 13px;
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: rgba(124, 244, 255, 0.08);
	color: var(--text);
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
	transform: translateY(-1px);
	border-color: rgba(124, 244, 255, 0.6);
}

.copied {
	background: rgba(124, 244, 255, 0.16) !important;
	border-color: rgba(124, 244, 255, 0.7) !important;
	color: var(--text);
}

.hero-list {
	list-style: none;
	display: grid;
	gap: 8px;
	margin-top: 12px;
	color: var(--muted);
	text-align: left;
}

.hero-list i {
	color: var(--accent);
	margin-right: 8px;
}

.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	margin: 30px auto 10px;
	justify-items: center;
	justify-content: center;
	max-width: 900px;
}

.stat-card {
	border: 1px solid var(--border);
	background: linear-gradient(135deg, rgba(124, 244, 255, 0.06), rgba(247, 194, 102, 0.04));
	border-radius: 16px;
	padding: 18px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.stat-label {
	color: var(--muted);
	font-size: 13px;
}

.stat-value {
	font-size: 22px;
	margin: 6px 0 4px;
}

.stat-sub {
	color: var(--muted);
}

.section-head {
	margin: 40px auto 22px;
	max-width: 760px;
	text-align: center;
}

.section-head h2 {
	font-size: clamp(28px, 2.4vw + 10px, 40px);
	margin-bottom: 8px;
}

.section-head p {
	color: var(--muted);
}

.features {
	padding: 20px 0;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 14px;
	text-align: center;
	justify-items: center;
}

.feature-card {
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.02);
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	border-color: rgba(124, 244, 255, 0.4);
	background: rgba(255, 255, 255, 0.03);
}

.feature-card .icon {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: rgba(158, 242, 107, 0.16);
	border: 1px solid rgba(158, 242, 107, 0.35);
	color: var(--accent);
	display: grid;
	place-items: center;
	margin-bottom: 10px;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.feature-card h3 {
	margin-bottom: 6px;
}

.feature-card p {
	color: var(--muted);
}

.panels {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 18px;
	margin: 32px auto;
	justify-items: center;
	align-items: stretch;
	max-width: 900px;
}

.panel-card {
	border: 1px solid var(--border);
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(158, 242, 107, 0.05));
	padding: 18px;
	box-shadow: var(--shadow);
	width: 100%;
	max-width: 420px;
}

.panel-card.alt {
	background: linear-gradient(135deg, rgba(199, 151, 74, 0.1), rgba(255, 255, 255, 0.01));
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.chip.muted {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.08);
	color: var(--muted);
}

.panel-list {
	list-style: none;
	display: grid;
	gap: 8px;
	margin-top: 10px;
	color: var(--muted);
}

.panel-list i {
	color: var(--accent-2);
	margin-right: 8px;
}

.roadmap {
	margin: 34px auto;
	max-width: 900px;
	text-align: center;
}

.timeline {
	border-left: 1px dashed var(--border);
	margin: 0 auto;
	display: grid;
	gap: 18px;
	max-width: 700px;
	padding-left: 14px;
	text-align: left;
}

.milestone {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	position: relative;
}

.milestone .dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	border: 2px solid var(--panel);
	box-shadow: 0 0 0 6px rgba(124, 244, 255, 0.08);
	position: absolute;
	left: -22px;
	top: 4px;
}

.milestone-time {
	color: var(--muted);
	font-size: 13px;
}

.milestone h3 {
	margin: 4px 0;
}

.milestone p {
	color: var(--muted);
}

.cta {
	margin: 46px auto 60px;
	max-width: 900px;
}

.stat-card {
	border: 1px solid var(--border);
	background: linear-gradient(135deg, rgba(158, 242, 107, 0.07), rgba(199, 151, 74, 0.05));
	border-radius: 16px;
	padding: 18px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
	text-align: center;
}

.cta-card {
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 22px;
	background: linear-gradient(120deg, rgba(158, 242, 107, 0.1), rgba(199, 151, 74, 0.07));
	display: grid;
	grid-template-columns: 1.5fr 0.6fr;
	gap: 16px;
	align-items: center;
	box-shadow: var(--shadow);
	text-align: center;
}

.cta-card p {
	color: var(--muted);
}

.cta-actions {
	display: flex;
	gap: 10px;
	margin-top: 14px;
	flex-wrap: wrap;
	justify-content: center;
}

.cta-pill {
	border: 1px dashed rgba(255, 255, 255, 0.18);
	border-radius: 16px;
	padding: 14px;
	background: rgba(255, 255, 255, 0.04);
	text-align: center;
}

.cta {
	text-align: center;
}

.footer {
	border-top: 1px solid var(--border);
	padding: 22px 0 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 14px;
	color: var(--muted);
}

.footer .brand-name {
	color: var(--text);
}

.footer-links {
	display: flex;
	gap: 12px;
}

.footer a:hover {
	color: var(--accent);
}

.noscript {
	margin: 16px auto;
	max-width: 600px;
	padding: 10px 14px;
	background: #2c1e1e;
	border: 1px solid #503939;
	border-radius: 10px;
}

@media (max-width: 980px) {
	.navbar {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
		gap: 12px;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.nav-links {
		display: none;
		grid-column: 1 / -1;
		flex-direction: column;
		align-items: flex-start;
		padding: 10px;
		border: 1px solid var(--border);
		border-radius: 14px;
		background: rgba(7, 11, 24, 0.95);
	}

	.nav-links.open {
		display: flex;
	}

	.nav-cta {
		grid-column: 2;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-meta {
		text-align: left;
	}

	.cta-card {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	body {
		padding-top: 12px;
	}

	.navbar {
		margin: 0;
		border-radius: 14px;
	}

	.hero,
	.features,
	.panels,
	.roadmap,
	.stats,
	.cta,
	.footer {
		padding: 0;
	}

	.hero {
		padding-top: 56px;
	}

	.hero-card,
	.hero-meta div,
	.stat-card,
	.feature-card,
	.panel-card,
	.cta-card {
		border-radius: 14px;
	}
}:root {
	--nice-padding: 6rem;
	--roundness: 0.75rem;
	--roundness-large: 1.5rem;
	--accent1: #a855f7;  /* Vibrant purple */
	--accent2: #9333ea;  /* Slightly darker purple */
	--accent2_transp: #a855f7ad;  /* Semi-transparent version */
	--background1: #0f0f0f;  /* Keeping dark background */
	--background2: #0a0a0a;  /* Keeping darker background */
	--text-color: #ffffff;  /* Keeping white text */
	--text-secondary: #d8b4fe;  /* Light purple for secondary text */
	color-scheme: dark;
}

span,
body {
	font-family: "Space Grotesk", sans-serif;
	line-height: 1.6;
}

body {
	background-color: var(--background1);
	color: var(--text-color);
	margin: 0;
	overflow-x: hidden;
	position: relative;
}

*,
*::before,
*::after {
	-webkit-tap-highlight-color: transparent;
	box-sizing: border-box;
}

#particles-js {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: var(--background1);
}

.visually-hidden,
#skip-navigation-link:not(:focus) {
	position: absolute;
	clip-path: circle(0);
	transform: scale(0);
}

#skip-navigation-link:focus {
	position: absolute;
	z-index: 100000;
	background: var(--accent1);
	color: white;
	padding: 0.5rem;
	border-radius: var(--roundness);
}

header {
	background-color: rgba(8, 8, 8, 0.9);
	padding: 15px 25px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

header.scrolled {
	padding: 10px 25px;
}

header nav ul {
	display: flex;
	list-style: none;
	align-items: center;
	padding: 0;
	margin: 0;
}

header nav ul li {
	margin: 0;
}

header nav ul li a {
	padding: 10px 15px;
	color: var(--text-color);
	display: block;
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: var(--roundness);
	font-size: 1.0625rem;
	white-space: nowrap;
	position: relative;
}

header nav ul li a:hover {
	background-color: rgba(255, 255, 255, 0.05);
	color: var(--accent2);
}

header nav ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--accent2);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

header nav ul li a:hover::after {
	width: 60%;
}

header nav ul li a .header-icon,
header nav ul li a .header-small-icon {
	transition: all 0.3s ease;
}

header nav ul li a:hover .header-icon {
	color: var(--accent2);
	transform: scale(1.1);
}

header nav ul li.header-logo-outer a,
header nav ul li.header-logo-outer a:hover {
	display: block;
	padding: 0 15px;
	background-color: transparent;
}

header .header-logo {
	width: auto;
	height: 25px;
	vertical-align: -50%;
	transition: all 0.3s ease;
}

header .header-logo:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 0 5px var(--accent2_transp));
}

header .header-cta-outer {
	margin-left: auto;
}

header a.header-cta {
	background-color: transparent;
	border: 2px solid var(--accent1);
	transition: all 0.3s ease;
	font-weight: 700;
}

header a.header-cta:hover {
	background-color: var(--accent2);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 49, 49, 0.3);
}

header .header-mobile-logo {
	display: none;
}

header .header-mobile-toggle {
	display: none;
	position: absolute;
	top: 0;
	right: calc(25px - 15px);
	appearance: none;
	background: none;
	color: #fff;
	border: none;
	cursor: pointer;
	font: inherit;
	padding: 25px;
	height: 25px;
	box-sizing: content-box;
	transition: all 0.3s ease;
}

header .header-mobile-toggle:hover {
	color: var(--accent2);
}

header .header-mobile-toggle {
	font-size: 18px;
}

#more,
#discord,
#about {
	padding-top: 5rem;
	margin-top: -5rem;
}

.headline {
	margin-top: 2rem;
	color: var(--text-color);
	font-size: 3rem;
	text-align: center;
	font-weight: 700;
	position: relative;
	display: inline-block;
	padding-bottom: 0.5rem;
}

.headline::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50%;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--accent2), transparent);
	border-radius: 3px;
}

.hero-section {
	padding: 25px max(50% - 500px, 50px);
	margin-top: 75px;
	display: flex;
	width: 100%;
	align-self: center;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: linear-gradient(rgba(0, 0, 0, 0.267), rgba(0, 0, 0, 0.301)), url();
	background-blend-mode: darken;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	min-height: 90vh;
	position: relative;
	overflow: hidden;
}

.hero-logo {
	display: block;
	transition: all 0.5s ease;
	max-width: 200px;
	filter: drop-shadow(0 0 10px rgba(255, 49, 255, 0.5));
}

.hero-logo:hover {
	transform: scale(1.05) rotate(-5deg);
	filter: drop-shadow(0 0 15px rgba(255, 49, 255, 0.8));
}

.hero-section h1 {
	text-align: center;
	font-size: 3rem;
	margin-top: 1.5rem;
	margin-bottom: 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	animation: textGlow 3s infinite alternate;
}

@keyframes textGlow {
	0% {
		text-shadow: 0 0 10px rgba(255, 49, 245, 0.5);
	}
	100% {
		text-shadow: 0 0 20px rgba(255, 49, 221, 0.8);
	}
}

.hero-section p {
	text-align: center;
	font-size: 1.25rem;
	line-height: 1.6;
	margin-top: 1.25rem;
	margin-bottom: 0;
	max-width: 800px;
	color: var(--text-secondary);
}

.hero-call-to-action-container {
	display: flex;
	justify-content: center;
	align-items: stretch;
	width: 100%;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.hero-call-to-action-outer {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--roundness-large);
	padding: 25px;
	margin: 1.5rem 0;
	width: 100%;
	max-width: 400px;
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.hero-call-to-action-outer::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		to bottom right,
		transparent,
		transparent,
		transparent,
		rgba(255, 49, 49, 0.1)
	);
	transform: rotate(30deg);
	transition: all 0.5s ease;
}

.hero-call-to-action-outer:hover::before {
	transform: rotate(30deg) translate(20%, 20%);
}

.hero-call-to-action-outer:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 49, 176, 0.3);
}

.hero-call-to-action-outer + .hero-call-to-action-outer {
	margin-left: 20px;
}

.hero-call-to-action-outer h3 {
	font-size: 1.5rem;
	margin-top: 0;
	margin-bottom: 0.5rem;
	color: var(--text-color);
}

.hero-call-to-action-outer p {
	font-size: 1rem;
	margin-top: 0;
	margin-bottom: 0.5rem;
	color: var(--text-secondary);
}

.hero-call-to-action-outer button {
	appearance: none;
	border: none;
	font: inherit;
	color: var(--text-color);
	border-radius: var(--roundness);
	transition: all 0.3s ease;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 12px 20px;
	display: block;
	text-decoration: none;
	font-size: 1.0625rem;
	white-space: nowrap;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.hero-call-to-action-outer button::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to right,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
}

.hero-call-to-action-outer button:hover::after {
	transform: translateX(100%);
}

.hero-call-to-action-outer button i {
	font-size: 1rem;
	margin-right: 10px;
	transition: all 0.3s ease;
}

.hero-call-to-action-outer button:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.hero-call-to-action-outer button.button-primary {
	background-color: var(--accent1);
	font-weight: 700;
}

.hero-call-to-action-outer button.button-primary:hover {
	background-color: var(--accent2);
	box-shadow: 0 5px 15px rgba(255, 49, 49, 0.4);
	transform: translateY(-2px);
}

.hero-call-to-action-outer button.button-success {
	background-color: #285;
}

.hero-call-to-action-buttons {
	display: flex;
	margin-top: 1rem;
}

.hero-call-to-action-buttons > :not(:last-child) {
	margin-right: 10px;
}

.main2 {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-content: center;
	padding-bottom: 4rem;
	background-color: var(--background2);
	width: 100%;
	position: relative;
}

.main2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--accent1), var(--accent2));
}

.main2_features_div {
	padding-top: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1400px;
	margin: 0 auto;
}

.main2_feature {
	display: flex;
	background-color: var(--background1);
	height: 24rem;
	width: 18rem;
	margin: 1rem;
	border-radius: var(--roundness-large);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.main2_feature:hover {
	transform: translateY(-10px) scale(1.03);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	border-color: rgba(221, 49, 255, 0.3);
}

.feature-img-container {
	width: 100%;
	height: 50%;
	overflow: hidden;
}

.main2_feature_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.main2_feature:hover .main2_feature_img {
	transform: scale(1.1);
}

.main2_feature_headline {
	margin-top: 1rem;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: auto;
	padding: 0 1rem;
	color: var(--text-color);
	transition: all 0.3s ease;
}

.main2_feature:hover .main2_feature_headline {
	color: var(--accent2);
}

.main2_feature_text {
	margin: 1rem;
	text-align: center;
	font-size: 1.1rem;
	margin-bottom: auto;
	color: var(--text-secondary);
	padding: 0 0.5rem;
}

@media (max-width: 1599px) {
	.main2_features_div {
		margin-left: 10rem;
		margin-right: 10rem;
	}
}

@media (max-width: 1279px) {
	.main2_features_div {
		margin-left: 2rem;
		margin-right: 2rem;
	}
}

.main4 {
	min-height: 10rem;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	padding: 4rem 0;
	background-color: var(--background1);
	position: relative;
}

.main4::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--accent2), var(--accent1));
}

.main4_dc_widget {
	border-radius: var(--roundness);
	border: 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.discord-widget-container {
	overflow: hidden;
	border-radius: var(--roundness);
	position: relative;
}

.discord-widget-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(255, 49, 49, 0.1),
		transparent
	);
	pointer-events: none;
}

.main4_dc_div {
	margin: 2rem;
	display: flex;
	flex-direction: row;
	background-color: var(--background2);
	border-radius: var(--roundness-large);
	max-width: 48rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.main4_dc_div:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 49, 255, 0.3);
}

.main4_dc_description_div {
	display: flex;
	flex-direction: column;
	padding: 2rem;
}

.main4_dc_description_title {
	margin: 0 0 1.5rem 0;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-color);
	position: relative;
}

.main4_dc_description_title::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 50%;
	height: 2px;
	background: var(--accent2);
}

.main4_dc_description {
	margin-left: 1.5rem;
	margin-right: 1.5rem;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

.main4_dc_button_a {
	text-decoration: none;
	color: #fff;
	text-align: center;
	border: solid var(--accent1) 2px;
	border-radius: var(--roundness);
	margin-top: auto;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
	overflow: hidden;
	position: relative;
	font-weight: 700;
}

.main4_dc_button_a::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: all 0.6s ease;
}

.main4_dc_button_a:hover::before {
	left: 100%;
}

.main4_dc_button_a:hover {
	border: solid 2px var(--accent2);
	background-color: var(--accent2);
	box-shadow: 0 5px 15px rgba(255, 49, 255, 0.3);
	transform: translateY(-2px);
}

.main4_dc_button {
	padding: 0.75rem 2rem;
}

.main5 {
	background-color: var(--background2);
	min-height: 10rem;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	padding: 4rem 0;
	position: relative;
}

.main5::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--accent1), var(--accent2));
}

.main5_admin_div {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem 1rem 0.5rem;
	max-width: 1200px;
}

.main5_admins_div {
	display: flex;
	max-width: 46rem;
	min-height: 18rem;
	background-color: var(--background1);
	border-radius: var(--roundness-large);
	margin: 1.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.4s ease;
}

.main5_admins_div:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 49, 228, 0.3);
}

.main5_admins_dev_type1 {
	flex-direction: row;
	padding-right: 2rem;
}

.main5_admins_dev_type2 {
	flex-direction: row-reverse;
	padding-left: 2rem;
}

.admin-img-container {
	width: 45%;
	overflow: hidden;
}

.main5_admins_img {
	border-radius: var(--roundness);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.main5_admins_div:hover .main5_admins_img {
	transform: scale(1.05);
}

.main5_admins_description_div {
	display: flex;
	justify-content: center;
	max-width: 60%;
	padding-top: 2rem;
	padding-bottom: 2rem;
	flex-direction: column;
	padding-left: 1rem;
	padding-right: 1rem;
	margin-left: auto;
	margin-right: auto;
}

.main5_admins_description_rank {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.main5_admins_description_rank_owner {
	color: #3498db;
	text-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

.main5_admins_description_rank_admin {
	color: #f82fc6;
	text-shadow: 0 0 10px rgba(248, 47, 198, 0.3);
}

.main5_admins_description_title {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-color);
	text-decoration: none;
	transition: all 0.3s ease;
	margin-bottom: 0.5rem;
}

.main5_admins_description_title:hover {
	color: var(--accent1);
}

.main5_admins_description {
	margin-bottom: auto;
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.6;
	padding: 0 1rem;
}

.copyright_div {
	display: flex;
	justify-content: center;
	padding: 2rem;
	width: auto;
	background-color: #000;
	position: relative;
}

.copyright_div::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--accent2), var(--accent1));
}

.footer_content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.footer_links {
	display: flex;
	gap: 2rem;
}

.footer_link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
}

.footer_link::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent2);
	transition: width 0.3s ease;
}

.footer_link:hover {
	color: var(--accent2);
}

.footer_link:hover::after {
	width: 100%;
}

.footer_link i {
	font-size: 1.3rem;
}

#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--background1);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.loader {
	width: 80px;
	height: 80px;
	border: 5px solid var(--accent2);
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 1s linear infinite, glow 1.5s ease-in-out infinite alternate;
}

@keyframes spin {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}

.loading-text {
	margin-top: 20px;
	font-size: 1.2rem;
	color: var(--accent2);
	animation: pulse 2s infinite;
}

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

dialog {
	background-color: var(--background1);
	border: none;
	padding: 30px 35px;
	width: 100%;
	max-width: 500px;
	border-radius: var(--roundness-large);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 49, 49, 0.3);
	animation: dialogFadeIn 0.3s ease-out;
}

@keyframes dialogFadeIn {
	from {
		opacity: 0;
		transform: translate(-50%, -40%);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

dialog h1 {
	font-size: 1.5rem;
	margin-top: 0;
	margin-bottom: 1rem;
	color: var(--text-color);
}

dialog::backdrop {
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
}

dialog .dialog-close {
	position: fixed;
	appearance: none;
	border: none;
	padding: 0.125rem 0.25rem;
	margin: 0;
	background: none;
	color: var(--text-color);
	font: inherit;
	font-size: 1.25rem;
	border-radius: 1000vmax;
	top: 25px;
	right: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
}

dialog .dialog-close:hover {
	color: var(--accent2);
	transform: rotate(90deg);
}

/* Responsive Styles */
@media (max-width: 1200px) {
	header .header-icon,
	header .header-small-icon {
		display: none;
	}
}

@media (max-width: 975px) {
	header .header-icon,
	header .header-small-icon {
		display: inline;
	}
	
	header {
		padding: 25px;
	}
	
	header .header-mobile-logo {
		display: inline-block;
		margin-left: 15px;
	}
	
	header .header-mobile-toggle {
		display: block;
	}
	
	header nav {
		position: relative;
		padding-top: 5px;
		margin-top: 25px;
	}
	
	header nav::before {
		content: "";
		position: absolute;
		top: -1px;
		left: -25px;
		width: calc(100% + 25px + 25px);
		border-top: 1px solid #222;
	}
	
	header:not(.navigation-open) nav {
		position: absolute;
		top: 0;
		clip-path: circle(0);
		transform: scale(0);
	}
	
	header nav ul {
		flex-direction: column;
	}
	
	header nav ul li {
		width: 100%;
	}
	
	header nav ul li a {
		padding: 15px 20px;
		text-align: center;
	}
	
	header nav ul li.header-cta-outer {
		margin-top: 10px;
	}
	
	.header-logo-outer {
		display: none;
	}
	
	.hero-section {
		padding: 25px;
		min-height: auto;
		padding-top: 100px;
		padding-bottom: 100px;
	}
	
	.hero-section h1 {
		font-size: 2rem;
	}
	
	.hero-call-to-action-container {
		flex-direction: column;
		align-items: center;
	}
	
	.hero-call-to-action-outer {
		margin: 0;
		max-width: none;
	}
	
	.hero-call-to-action-outer + .hero-call-to-action-outer {
		margin-left: 0;
		margin-top: 20px;
	}
	
	.main4_dc_div {
		flex-direction: column;
		max-width: 90%;
	}
	
	.main4_dc_widget {
		width: 100%;
		height: 300px;
	}
}

@media only screen and (max-width: 600px) {
	.headline {
		font-size: 2rem;
		margin-right: 1rem;
		margin-left: 1rem;
	}
	
	.main5_admins_img {
		align-self: center;
		padding-top: 1rem;
	}
	
	.main5_admins_div {
		flex-direction: column;
		min-height: 0;
		padding: 0 !important;
	}
	
	.admin-img-container {
		width: 100%;
		max-height: 300px;
	}
	
	.main5_admins_description_div {
		max-width: 100%;
		padding: 2rem;
	}
	
	.main4_dc_div {
		flex-direction: column;
	}
	
	.main4_dc_widget {
		height: 250px;
		width: 100%;
	}
	
	.main3_join_div {
		min-width: 20rem;
		min-height: 9rem;
	}
	
	.main3_join_content_div {
		padding: 1rem;
	}
	
	.main5_admins_dev_type1,
	.main5_admins_dev_type2 {
		flex-direction: column;
		padding: 0 !important;
	}
}

@media only screen and (max-width: 360px) {
	.main3_join_categories {
		font-size: 1rem;
	}
	
	.main3_join_values {
		font-size: 1rem;
	}
	
	.main3_join_div {
		min-width: 10rem;
		padding: 0.5rem;
	}
	
	.main3_join_div_div {
		margin: 0.25rem;
	}
	
	.footer_links {
		flex-direction: column;
		gap: 1rem;
	}
}

/* Scrollbar styling */
::-webkit-scrollbar {
	width: 10px;
}

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

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

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

/* Add this to enhance animations */
@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes pulse-glow {
	0%, 100% {
		box-shadow: 0 0 10px rgba(255, 72, 240, 0.5);
	}
	50% {
		box-shadow: 0 0 20px rgba(249, 72, 255, 0.8);
	}
}

/* Update the header icon spacing */
header nav ul li a .header-icon {
	margin-right: 8px;
}

/* Enhance feature cards */
.main2_feature {
	position: relative;
	overflow: hidden;
}

.main2_feature::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 72, 185, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.main2_feature:hover::before {
	opacity: 1;
}

/* Enhance Discord section */
.main4_dc_div {
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem;
}

.main4_dc_description_div {
	max-width: 600px;
}

/* Enhance buttons with new animations */
.hero-call-to-action-outer button.button-primary {
	animation: pulse-glow 2s infinite;
}

/* Add floating animation to logo */
.hero-logo {
	animation: float 4s ease-in-out infinite;
}

/* Enhance admin cards */
.main5_admins_div {
	position: relative;
}

.main5_admins_div::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--accent2);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.main5_admins_div:hover::after {
	transform: scaleX(1);
}




















.main2_feature, .main5_admins_div {
    position: relative;
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.08); /* even more subtle default border */
}

.main2_feature::before, .main5_admins_div::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    background: linear-gradient(
        45deg,
        rgba(255, 5, 243, 0.089),  /* much softer accent1 */
        rgba(255, 49, 221, 0.062),  /* much softer accent2 */
        rgba(255, 0, 212, 0),    /* barely visible orange */
        rgba(255, 57, 255, 0.1)    /* much softer accent1 */
    );
    background-size: 400% 400%;   /* more spread out gradient */
    border-radius: var(--roundness-large);
    animation: gradientBorder 18s ease infinite; /* even slower animation */
    opacity: 0.4; /* more transparent overall */
}

@keyframes gradientBorder {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}


.main2_feature, .main5_admins_div {
    transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28) 0.1s;
}

body {
    background-image: 
        radial-gradient(circle at 85% 15%, rgba(255, 72, 142, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 15% 85%, rgba(255,72,72,0.03) 0%, transparent 25%);
}

button:focus-visible, a:focus-visible {
    outline: 2px solid var(--accent2);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(173, 72, 255, 0.2);
}

.main2_feature_text {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.7;
}

.main3 {
    background-color: var(--background1);
    min-height: 10rem;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
    position: relative;
}

.main3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent2), var(--accent1));
}

.main3_reviews_div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
    margin: 2rem auto;
    gap: 2rem;
}

.main3_review {
    background-color: var(--background2);
    border-radius: var(--roundness-large);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main3_review:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(214, 49, 255, 0.3);
}

.main3_review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(221, 49, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main3_review:hover::before {
    opacity: 1;
}

.main3_review_header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.main3_review_avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--accent1);
}

.main3_review_user {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-color);
}

.main3_review_rating {
    color: var(--accent1);
    margin-left: auto;
    font-size: 1.2rem;
}

.main3_review_content {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .main3_reviews_div {
        flex-direction: column;
        align-items: center;
    }
    
    .main3_review {
        max-width: 90%;
    }
}

/* Enhanced Rules & ToS Section - Purple Version */
.main-rules {
    background-color: var(--background2);
    min-height: 10rem;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.main-rules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    z-index: 1;
}

.main-rules::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.05) 0%, transparent 25%);
    pointer-events: none;
}

.rules-container {
    background-color: var(--background1);
    border-radius: var(--roundness-large);
    width: 90%;
    max-width: 900px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(168, 85, 247, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.rules-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.5);
}

.rules-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    background: linear-gradient(
        135deg,
        rgba(168, 85, 247, 0.1),
        rgba(147, 51, 234, 0.05),
        rgba(168, 85, 247, 0),
        rgba(168, 85, 247, 0.08)
    );
    background-size: 300% 300%;
    border-radius: var(--roundness-large);
    animation: gradientBorder 15s ease infinite;
    opacity: 0.6;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

.rules-tabs {
    display: flex;
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.rules-tab {
    padding: 1.25rem 2rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    text-align: center;
    flex: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.rules-tab:hover {
    color: var(--text-color);
    background-color: rgba(168, 85, 247, 0.15);
    transform: translateY(-1px);
}

.rules-tab.active {
    color: var(--accent2);
    background-color: rgba(168, 85, 247, 0.25);
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

.rules-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--accent2);
    border-radius: 3px 3px 0 0;
    animation: tabUnderline 0.4s ease-out;
}

@keyframes tabUnderline {
    from { width: 0%; opacity: 0; }
    to { width: 60%; opacity: 1; }
}

.rules-content {
    padding: 2.5rem;
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
    background: 
        linear-gradient(rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.9)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%239333ea" stroke-width="0.5" opacity="0.05"/></svg>');
}

.rules-section {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.rules-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.rule-item {
    margin-bottom: 1.75rem;
    padding: 1.25rem 1.5rem 1.25rem 2.5rem;
    position: relative;
    border-left: 3px solid rgba(168, 85, 247, 0.2);
    transition: all 0.4s ease;
    background: rgba(10, 10, 10, 0.4);
    border-radius: 0 var(--roundness) var(--roundness) 0;
}

.rule-item:hover {
    border-left-color: var(--accent2);
    background: rgba(20, 20, 20, 0.6);
    transform: translateX(5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.rule-number {
    position: absolute;
    left: -0.5rem;
    top: 1.25rem;
    color: var(--accent2);
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--background1);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--accent2);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.rule-title {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    position: relative;
    display: inline-block;
}

.rule-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent2);
    transition: width 0.4s ease;
}

.rule-item:hover .rule-title::after {
    width: 100%;
}

.rule-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.rules-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent2), transparent);
    margin: 2.5rem 0;
    border: none;
    opacity: 0.3;
}

.special-rules-title {
    color: var(--accent2);
    font-weight: 700;
    margin: 2rem 0 1.5rem;
    text-align: center;
    position: relative;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.special-rules-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
    background: var(--accent2);
    border-radius: 2px;
}

.special-rule {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: all 0.3s ease;
}

.special-rule:hover {
    color: var(--text-color);
    transform: translateX(5px);
}

.special-rule::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent2);
    font-weight: bold;
    font-size: 1.2rem;
    top: -1px;
}

/* Enhanced Scrollbar styling */
.rules-content::-webkit-scrollbar {
    width: 10px;
}

.rules-content::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.5);
    border-radius: 10px;
}

.rules-content::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--accent1), var(--accent2));
    border-radius: 10px;
    border: 2px solid rgba(10, 10, 10, 0.5);
}

.rules-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rules-container {
        width: 95%;
    }
    
    .rules-tab {
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    .rules-content {
        padding: 1.5rem;
    }
    
    .rule-item {
        padding: 1rem 1rem 1rem 2rem;
    }
    
    .rule-number {
        left: -0.5rem;
        width: 1.8rem;
        height: 1.8rem;
        font-size: 1rem;
    }
}

/* Realms+ Sponsor Section - Purple Version */
.main-realmsplus {
    background-color: var(--background1);
    min-height: 10rem;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.main-realmsplus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent2), var(--accent1));
    z-index: 1;
}

.main-realmsplus::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.03) 0%, transparent 25%);
    pointer-events: none;
}

.realmsplus-container {
    background-color: var(--background2);
    border-radius: var(--roundness-large);
    width: 90%;
    max-width: 1000px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(168, 85, 247, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.realmsplus-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(168, 85, 247, 0.1);
    border-color: rgba(147, 51, 234, 0.5);
}

.realmsplus-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    background: linear-gradient(
        135deg,
        rgba(168, 85, 247, 0.1),
        rgba(147, 51, 234, 0.05),
        rgba(168, 85, 247, 0),
        rgba(168, 85, 247, 0.08)
    );
    background-size: 300% 300%;
    border-radius: var(--roundness-large);
    animation: gradientBorder 15s ease infinite;
    opacity: 0.6;
}

.realmsplus-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.9), rgba(15, 15, 15, 0.9));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.realmsplus-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 2px solid var(--accent1);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
}

.realmsplus-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.realmsplus-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
}

.realmsplus-badge {
    display: inline-block;
    background-color: var(--accent1);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.realmsplus-content {
    display: flex;
    padding: 2rem;
}

.realmsplus-features {
    flex: 1;
    padding-right: 2rem;
}

.realmsplus-feature {
    display: flex;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(15, 15, 15, 0.5);
    border-radius: var(--roundness);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.realmsplus-feature:hover {
    background: rgba(20, 20, 20, 0.7);
    border-left-color: var(--accent2);
    transform: translateX(5px);
}

.realmsplus-feature-icon {
    font-size: 1.5rem;
    color: var(--accent2);
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50%;
}

.realmsplus-feature-content h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.realmsplus-feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.realmsplus-cta {
    width: 300px;
    background: rgba(10, 10, 10, 0.7);
    border-radius: var(--roundness);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.realmsplus-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.realmsplus-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    background: var(--accent1);
    color: white;
    border-radius: var(--roundness);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.realmsplus-button:hover {
    background: var(--accent2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.realmsplus-button i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.realmsplus-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s ease;
}

.realmsplus-button:hover::after {
    left: 100%;
}

.realmsplus-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    width: 100%;
}

.realmsplus-stat {
    text-align: center;
}

.realmsplus-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent2);
    margin-bottom: 0.3rem;
}

.realmsplus-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
    .realmsplus-content {
        flex-direction: column;
    }
    
    .realmsplus-features {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .realmsplus-cta {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .realmsplus-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .realmsplus-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .realmsplus-badge {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .realmsplus-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .realmsplus-feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
}