/* Modern theme inspired by ClassicConquer (conqueronline.net) */

:root{
	--bg:#0b0c10;
	--bg-alt:#121318;
	--surface:#161821;
	--surface-2:#1c1f2a;
	--primary:#5865F2;
	--primary-600:#4653da;
	--accent:#EAB308;
	--text:#e6e6e9;
	--muted:#a0a3ad;
	--success:#22c55e;
	--danger:#ef4444;
}

body{
	background: radial-gradient(60% 80% at 50% 0%, rgba(88,101,242,0.10) 0%, rgba(88,101,242,0) 60%) , var(--bg);
	color: var(--text);
	font-family: "OpenSans-Regular", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Header */
.site-header{
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 1000;
	backdrop-filter: blur(6px);
	background: rgba(12,13,18,0.65);
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header .topbar{
	background: linear-gradient(90deg, rgba(88,101,242,0.18), rgba(12,13,18,0.0));
	padding: 6px 0;
	font-size: 12px;
}

.site-header .topbar ul{
	margin: 0;
	padding: 0 16px;
	list-style: none;
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.site-header .topbar li{
	color: var(--muted);
}

.mainnav{
	background: transparent !important;
}

.mainnav .navbar-brand{
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	color: var(--text) !important;
}

.mainnav .navbar-brand img{
	height: 36px;
	width: auto;
	filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

.mainnav .nav-link{
	color: var(--text) !important;
	opacity: 0.85;
	padding: 14px 12px !important;
}

.mainnav .nav-link:hover,.mainnav .nav-link:focus{
	opacity: 1;
	color: #fff !important;
}

/* Online badge */
.badge-online{
	background: rgba(34,197,94,0.15);
	color: #bbf7d0;
	border: 1px solid rgba(34,197,94,0.35);
	padding: 6px 10px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 12px;
}
.badge-online .fa-circle{ color: #22c55e; font-size: 8px; margin-right: 6px; }

.mainnav .cta{
	background: var(--primary);
	color: #fff !important;
	border-radius: 8px;
	padding: 10px 14px !important;
	margin-left: 8px;
	transition: background .2s ease;
}

.mainnav .cta:hover{
	background: var(--primary-600);
}

/* Hero */
.hero{
	position: relative;
	width: 100%;
	min-height: 68vh;
	display: grid;
	place-items: center;
	overflow: hidden;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero .bg-video{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.05) brightness(0.9);
	opacity: 0.55;
    z-index: 0;
}

.hero::after{
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(60% 60% at 50% 30%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero .content{
	position: relative;
	text-align: center;
	padding: 40px 16px;
	max-width: 980px;
    z-index: 2;
}

.hero h1{
	font-family: "NotoSerif-Bold", ui-serif, Georgia, serif;
	font-size: clamp(32px, 5vw, 56px);
	margin: 0 0 10px 0;
	color: #fff;
	text-shadow: 0 8px 30px rgba(0,0,0,0.65);
}

.hero p{
	font-size: clamp(14px, 2vw, 18px);
	color: var(--muted);
	margin: 0 0 20px 0;
}

.hero .actions{
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary-modern{
	background: var(--primary);
	color: #fff;
	border: none;
	padding: 12px 18px;
	border-radius: 10px;
	font-weight: 700;
	box-shadow: 0 6px 24px rgba(88,101,242,0.35);
}

.btn-primary-modern:hover{
	background: var(--primary-600);
}

.btn-ghost{
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.35);
	padding: 12px 18px;
	border-radius: 10px;
}

.btn-ghost:hover{
	border-color: #fff;
}

/* Sections */
.section{
	padding: 60px 16px;
	background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
	border-top: 1px solid rgba(255,255,255,0.06);
}

.section .section-title{
	text-align: center;
	margin-bottom: 24px;
	color: #fff;
}

.feature-cards{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	max-width: 1100px;
	margin: 0 auto;
}

.feature-card{
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 12px;
	padding: 20px;
	text-align: left;
	box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.feature-card h3{
	margin-top: 0;
	margin-bottom: 8px;
}

.grid-gallery{
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
	gap: 10px;
}

.grid-gallery img{
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.08);
}

/* Footer enhancements */
.footer-modern{
	background: var(--bg-alt);
	border-top: 1px solid rgba(255,255,255,0.06);
	padding: 60px 0 24px 0;
	margin-top: 80px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3 {
	color: #fff;
	margin-bottom: 16px;
	font-size: 18px;
}

.footer-section p {
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 0;
}

.footer-logo-img {
	width: 60px;
	height: auto;
	margin-bottom: 16px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-links a {
	color: var(--muted);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #fff;
}

.social-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.social-links a {
	color: var(--muted);
	text-decoration: none;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.social-links a:hover {
	color: var(--primary);
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.06);
	padding-top: 24px;
	text-align: center;
}

.footer-bottom p {
	color: var(--muted);
	margin-bottom: 8px;
}

.footer-bottom a {
	color: var(--text);
}

.policies a{
	color: var(--muted);
	text-decoration: none;
}

.policies a:hover{
	color: #fff;
}

/* Utilities */
.container-modern{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}

/* Fix button clickability */
.btn, button, a {
	pointer-events: auto !important;
	cursor: pointer !important;
}

.btn-primary-modern, .btn-ghost {
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-primary-modern:hover, .btn-ghost:hover {
	text-decoration: none;
	transform: translateY(-2px);
}

/* Forms */
input[type="text"], input[type="password"], input[type="email"], select, textarea{
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.16);
	border-radius: 10px;
	color: #fff;
	padding: 12px 14px;
	width: 100%;
}
input[type="text"]::placeholder, input[type="password"]::placeholder, input[type="email"]::placeholder{ color: #bfc3cf; }
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, select:focus, textarea:focus{
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(88,101,242,0.25);
}

button.submit, .btn.btn-dark, .btn.btn-danger{
	border-radius: 10px !important;
	border: none !important;
	background: var(--primary) !important;
	color: #fff !important;
	font-weight: 700 !important;
	padding: 12px 16px !important;
	box-shadow: 0 6px 24px rgba(88,101,242,0.3) !important;
}
button.submit:hover, .btn.btn-dark:hover, .btn.btn-danger:hover{
	background: var(--primary-600) !important;
}

/* Tables */
table{
	background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 10px;
	color: var(--text);
}
table thead th{
	background: rgba(255,255,255,0.06);
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
table tbody tr:hover{
	background: rgba(255,255,255,0.04);
}

/* Store Grid */
.store-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.store-card {
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 12px;
	padding: 24px;
	text-align: center;
	position: relative;
	transition: all 0.3s ease;
}

.store-card:hover {
	transform: translateY(-4px);
	border-color: var(--primary);
	box-shadow: 0 8px 32px rgba(88,101,242,0.2);
}

.store-featured {
	border-color: var(--accent);
	background: linear-gradient(180deg, rgba(234,179,8,0.08), rgba(234,179,8,0.02));
}

.store-badge {
	position: absolute;
	top: -8px;
	right: 12px;
	background: var(--accent);
	color: #000;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
}

.store-item-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(88,101,242,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px auto;
}

.store-item-icon i {
	font-size: 24px;
	color: var(--primary);
}

.store-card h3 {
	color: #fff;
	margin-bottom: 8px;
	font-size: 18px;
}

.store-price {
	font-size: 24px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 8px;
}

.store-description {
	color: var(--muted);
	margin-bottom: 20px;
	font-size: 14px;
}

.store-card .btn {
	width: 100%;
}

/* Download Table */
.download-table-container {
	max-width: 1000px;
	margin: 0 auto;
	overflow-x: auto;
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.06);
}

.download-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}

.download-table th {
	background: rgba(255,255,255,0.08);
	color: #fff;
	padding: 16px;
	text-align: left;
	font-weight: 600;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.download-table td {
	padding: 16px;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	color: var(--text);
}

.download-table tbody tr:hover {
	background: rgba(255,255,255,0.03);
}

.file-type {
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.file-type.client {
	background: rgba(34,197,94,0.15);
	color: #bbf7d0;
}

.file-type.patch {
	background: rgba(234,179,8,0.15);
	color: #fef3c7;
}

.download-table .btn {
	padding: 8px 16px;
	font-size: 14px;
}

/* About Conquer Section */
.about-conquer {
	text-align: center;
}

.about-content p {
	font-size: 18px;
	line-height: 1.8;
	color: var(--muted);
	max-width: 800px;
	margin: 0 auto 40px auto;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	margin-top: 40px;
}

.stat-item {
	text-align: center;
	padding: 24px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 12px;
}

.stat-item i {
	font-size: 32px;
	color: var(--primary);
	margin-bottom: 16px;
}

.stat-item h3 {
	font-size: 36px;
	color: #fff;
	margin-bottom: 8px;
	font-weight: 700;
}

.stat-item p {
	color: var(--muted);
	margin: 0;
}

/* Character Classes Section */
.classes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.class-card {
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 12px;
	padding: 24px;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
}

.class-card:hover {
	transform: translateY(-4px);
	border-color: var(--primary);
	box-shadow: 0 8px 32px rgba(88,101,242,0.2);
}

.class-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 16px auto;
	border-radius: 50%;
	background: rgba(255,255,255,0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.class-icon img {
	width: 60px;
	height: 60px;
	object-fit: cover;
}

.class-card h3 {
	color: #fff;
	margin-bottom: 12px;
	font-size: 20px;
}

.class-card p {
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 20px;
}

.class-stats {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.stat-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	color: var(--muted);
}

.stat-bar span:first-child {
	min-width: 60px;
	text-align: left;
}

.bar {
	flex: 1;
	height: 4px;
	background: rgba(255,255,255,0.1);
	border-radius: 2px;
	overflow: hidden;
}

.bar div {
	height: 100%;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	border-radius: 2px;
}

/* Detailed Features Section */
.features-detailed {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}

.feature-detailed {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.feature-icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	background: rgba(88,101,242,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-icon i {
	font-size: 24px;
	color: var(--primary);
}

.feature-content h3 {
	color: #fff;
	margin-bottom: 8px;
	font-size: 18px;
}

.feature-content p {
	color: var(--muted);
	line-height: 1.6;
	margin: 0;
}

/* Events Preview Section */
.events-preview {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.event-card {
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 12px;
	padding: 24px;
	transition: all 0.3s ease;
}

.event-card:hover {
	transform: translateY(-2px);
	border-color: var(--accent);
}

.event-time {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 12px;
}

.event-card h3 {
	color: #fff;
	margin-bottom: 12px;
	font-size: 18px;
}

.event-card p {
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 16px;
}

.event-reward {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--primary);
	font-weight: 600;
	font-size: 14px;
}

/* Modern Signup Page Styles */
.signup-hero {
	background: linear-gradient(135deg, rgba(88,101,242,0.12) 0%, rgba(234,179,8,0.08) 100%);
	padding: 80px 0 60px 0;
	text-align: center;
}

.signup-hero-content h1 {
	font-size: clamp(32px, 4vw, 48px);
	color: #fff;
	margin-bottom: 16px;
	font-family: "NotoSerif-Bold", ui-serif, Georgia, serif;
}

.signup-hero-content p {
	font-size: 18px;
	color: var(--muted);
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero-stats {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.hero-stat {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text);
	font-weight: 600;
}

.hero-stat i {
	color: var(--primary);
	font-size: 20px;
}

.signup-section {
	padding: 80px 0;
}

.signup-container {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
}

.signup-form-container {
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.signup-form-header {
	text-align: center;
	margin-bottom: 32px;
}

.signup-form-header h2 {
	color: #fff;
	font-size: 28px;
	margin-bottom: 8px;
	font-family: "NotoSerif-Bold", ui-serif, Georgia, serif;
}

.signup-form-header p {
	color: var(--muted);
	font-size: 16px;
	margin: 0;
}

.signup-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text);
	font-weight: 600;
	font-size: 14px;
}

.form-group label i {
	color: var(--primary);
	width: 16px;
}

.form-group input {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.16);
	border-radius: 10px;
	color: #fff;
	padding: 14px 16px;
	font-size: 16px;
	transition: all 0.3s ease;
}

.form-group input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(88,101,242,0.25);
	background: rgba(255,255,255,0.08);
}

.form-group input::placeholder {
	color: var(--muted);
}

.form-group small {
	color: var(--muted);
	font-size: 12px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.captcha-group {
	margin-top: 8px;
}

.captcha-container {
	display: flex;
	gap: 12px;
	align-items: center;
}

.captcha-container input {
	flex: 1;
}

.captcha-image {
	width: 120px;
	height: 40px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.16);
	cursor: pointer;
	transition: all 0.3s ease;
}

.captcha-image:hover {
	border-color: var(--primary);
	transform: scale(1.02);
}

.btn-signup {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 16px 24px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
	box-shadow: 0 8px 24px rgba(88,101,242,0.35);
}

.btn-signup:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(88,101,242,0.45);
}

.btn-signup:active {
	transform: translateY(0);
}

.signup-footer {
	text-align: center;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,0.06);
}

.signup-footer p {
	color: var(--muted);
	margin: 8px 0;
}

.signup-footer a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
}

.signup-footer a:hover {
	color: #fff;
	text-decoration: underline;
}

.signup-benefits {
	background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 16px;
	padding: 32px;
	height: fit-content;
}

.signup-benefits h3 {
	color: #fff;
	font-size: 20px;
	margin-bottom: 24px;
	text-align: center;
	font-family: "NotoSerif-Bold", ui-serif, Georgia, serif;
}

.benefit {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
	align-items: flex-start;
}

.benefit:last-child {
	margin-bottom: 0;
}

.benefit i {
	color: var(--primary);
	font-size: 20px;
	margin-top: 4px;
	flex-shrink: 0;
}

.benefit h4 {
	color: #fff;
	font-size: 16px;
	margin-bottom: 4px;
	font-weight: 600;
}

.benefit p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
}

/* Alert Styles */
.alert {
	padding: 16px;
	border-radius: 10px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
}

.alert-error {
	background: rgba(239,68,68,0.15);
	border: 1px solid rgba(239,68,68,0.3);
	color: #fca5a5;
}

.alert-success {
	background: rgba(34,197,94,0.15);
	border: 1px solid rgba(34,197,94,0.3);
	color: #bbf7d0;
}

.alert i {
	font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.signup-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.signup-form-container {
		padding: 24px;
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.hero-stats {
		flex-direction: column;
		gap: 16px;
	}
	
	.captcha-container {
		flex-direction: column;
		align-items: stretch;
	}
	
	.captcha-image {
		align-self: center;
	}
}

/* Modern Login Page Styles */
.login-hero {
	background: linear-gradient(135deg, rgba(88,101,242,0.10) 0%, rgba(234,179,8,0.06) 100%);
	padding: 60px 0 50px 0;
	text-align: center;
}

.login-hero-content h1 {
	font-size: clamp(28px, 4vw, 42px);
	color: #fff;
	margin-bottom: 12px;
	font-family: "NotoSerif-Bold", ui-serif, Georgia, serif;
}

.login-hero-content p {
	font-size: 16px;
	color: var(--muted);
	margin-bottom: 32px;
}

.login-section {
	padding: 60px 0;
}

.login-container {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 50px;
	max-width: 1000px;
	margin: 0 auto;
}

.login-form-container {
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.login-form-header {
	text-align: center;
	margin-bottom: 24px;
}

.login-form-header h2 {
	color: #fff;
	font-size: 24px;
	margin-bottom: 6px;
	font-family: "NotoSerif-Bold", ui-serif, Georgia, serif;
}

.login-form-header p {
	color: var(--muted);
	font-size: 14px;
	margin: 0;
}

.login-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.btn-login {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 8px;
	box-shadow: 0 6px 20px rgba(88,101,242,0.35);
}

.btn-login:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(88,101,242,0.45);
}

.btn-login:active {
	transform: translateY(0);
}

.login-footer {
	text-align: center;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.06);
}

.login-footer p {
	color: var(--muted);
	margin: 6px 0;
	font-size: 14px;
}

.login-footer a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
}

.login-footer a:hover {
	color: #fff;
	text-decoration: underline;
}

.login-benefits {
	background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 16px;
	padding: 24px;
	height: fit-content;
}

.login-benefits h3 {
	color: #fff;
	font-size: 18px;
	margin-bottom: 20px;
	text-align: center;
	font-family: "NotoSerif-Bold", ui-serif, Georgia, serif;
}

/* Responsive Design for Login */
@media (max-width: 768px) {
	.login-container {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.login-form-container {
		padding: 20px;
	}
}

/* Modern Password Recovery Page Styles */
.recovery-hero {
	background: linear-gradient(135deg, rgba(88,101,242,0.08) 0%, rgba(234,179,8,0.04) 100%);
	padding: 60px 0 50px 0;
	text-align: center;
}

.recovery-hero-content h1 {
	font-size: clamp(28px, 4vw, 40px);
	color: #fff;
	margin-bottom: 12px;
	font-family: "NotoSerif-Bold", ui-serif, Georgia, serif;
}

.recovery-hero-content p {
	font-size: 16px;
	color: var(--muted);
	margin-bottom: 32px;
}

.recovery-steps {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.step {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text);
	font-weight: 600;
}

.step-number {
	background: var(--primary);
	color: #fff;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
}

.recovery-section {
	padding: 60px 0;
}

.recovery-container {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 50px;
	max-width: 1000px;
	margin: 0 auto;
}

.recovery-form-container {
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.recovery-form-header {
	text-align: center;
	margin-bottom: 24px;
}

.recovery-form-header h2 {
	color: #fff;
	font-size: 24px;
	margin-bottom: 6px;
	font-family: "NotoSerif-Bold", ui-serif, Georgia, serif;
}

.recovery-form-header p {
	color: var(--muted);
	font-size: 14px;
	margin: 0;
}

.recovery-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.btn-recovery {
	background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 8px;
	box-shadow: 0 6px 20px rgba(234,179,8,0.35);
}

.btn-recovery:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(234,179,8,0.45);
}

.btn-recovery:active {
	transform: translateY(0);
}

.recovery-footer {
	text-align: center;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.06);
}

.recovery-footer p {
	color: var(--muted);
	margin: 6px 0;
	font-size: 14px;
}

.recovery-footer a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
}

.recovery-footer a:hover {
	color: #fff;
	text-decoration: underline;
}

.recovery-help {
	background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 16px;
	padding: 24px;
	height: fit-content;
}

.recovery-help h3 {
	color: #fff;
	font-size: 18px;
	margin-bottom: 20px;
	text-align: center;
	font-family: "NotoSerif-Bold", ui-serif, Georgia, serif;
}

.help-item {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
	align-items: flex-start;
}

.help-item:last-child {
	margin-bottom: 0;
}

.help-item i {
	color: var(--accent);
	font-size: 18px;
	margin-top: 2px;
	flex-shrink: 0;
}

.help-item h4 {
	color: #fff;
	font-size: 14px;
	margin-bottom: 4px;
	font-weight: 600;
}

.help-item p {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.4;
	margin: 0;
}

/* Responsive Design for Recovery */
@media (max-width: 768px) {
	.recovery-container {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.recovery-form-container {
		padding: 20px;
	}
	
	.recovery-steps {
		flex-direction: column;
		gap: 16px;
	}
}

/* Loading Animations and Smooth Transitions */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes shimmer {
	0% {
		background-position: -200px 0;
	}
	100% {
		background-position: calc(200px + 100%) 0;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Apply animations to elements */
.hero .content {
	animation: fadeInUp 1s ease-out;
}

.feature-cards .feature-card {
	animation: fadeInUp 0.8s ease-out;
	animation-fill-mode: both;
}

.feature-cards .feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-cards .feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-cards .feature-card:nth-child(3) { animation-delay: 0.3s; }

.screenshot-gallery .screenshot {
	animation: fadeInUp 0.6s ease-out;
	animation-fill-mode: both;
}

.screenshot-gallery .screenshot:nth-child(1) { animation-delay: 0.1s; }
.screenshot-gallery .screenshot:nth-child(2) { animation-delay: 0.2s; }
.screenshot-gallery .screenshot:nth-child(3) { animation-delay: 0.3s; }
.screenshot-gallery .screenshot:nth-child(4) { animation-delay: 0.4s; }

.server-stat {
	animation: fadeInUp 0.7s ease-out;
	animation-fill-mode: both;
}

.server-stat:nth-child(1) { animation-delay: 0.1s; }
.server-stat:nth-child(2) { animation-delay: 0.2s; }
.server-stat:nth-child(3) { animation-delay: 0.3s; }
.server-stat:nth-child(4) { animation-delay: 0.4s; }

.class-card {
	animation: fadeInUp 0.6s ease-out;
	animation-fill-mode: both;
}

.class-card:nth-child(1) { animation-delay: 0.1s; }
.class-card:nth-child(2) { animation-delay: 0.2s; }
.class-card:nth-child(3) { animation-delay: 0.3s; }
.class-card:nth-child(4) { animation-delay: 0.4s; }

.event-card {
	animation: fadeInLeft 0.7s ease-out;
	animation-fill-mode: both;
}

.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.2s; }
.event-card:nth-child(3) { animation-delay: 0.3s; }

/* Hover animations */
.feature-card:hover {
	animation: pulse 0.6s ease-in-out;
}

.store-item:hover {
	animation: float 2s ease-in-out infinite;
}

.btn-primary-modern:hover,
.btn-ghost:hover,
.btn-signup:hover,
.btn-login:hover,
.btn-recovery:hover {
	animation: pulse 0.3s ease-in-out;
}

/* Loading spinner */
.loading-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	border-top-color: #fff;
	animation: spin 1s ease-in-out infinite;
}

/* Shimmer loading effect for images */
.loading-shimmer {
	background: linear-gradient(90deg, 
		rgba(255,255,255,0) 0%, 
		rgba(255,255,255,0.2) 50%, 
		rgba(255,255,255,0) 100%);
	background-size: 200px 100%;
	animation: shimmer 1.5s infinite;
}

/* Smooth transitions for all interactive elements */
* {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced hover effects */
.nav-link {
	position: relative;
	overflow: hidden;
}

.nav-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s ease;
}

.nav-link:hover::before {
	width: 100%;
}

/* Page load animation */
body {
	animation: fadeInUp 0.5s ease-out;
}

/* Stagger animation for form groups */
.form-group {
	animation: fadeInUp 0.5s ease-out;
	animation-fill-mode: both;
}

.signup-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.signup-form .form-group:nth-child(2) { animation-delay: 0.2s; }
.signup-form .form-group:nth-child(3) { animation-delay: 0.3s; }
.signup-form .form-group:nth-child(4) { animation-delay: 0.4s; }
.signup-form .form-group:nth-child(5) { animation-delay: 0.5s; }

.login-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.login-form .form-group:nth-child(2) { animation-delay: 0.2s; }

.recovery-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.recovery-form .form-group:nth-child(2) { animation-delay: 0.2s; }
.recovery-form .form-group:nth-child(3) { animation-delay: 0.3s; }

/* Entrance animations for benefits */
.benefit {
	animation: fadeInRight 0.6s ease-out;
	animation-fill-mode: both;
}

.benefit:nth-child(1) { animation-delay: 0.1s; }
.benefit:nth-child(2) { animation-delay: 0.2s; }
.benefit:nth-child(3) { animation-delay: 0.3s; }
.benefit:nth-child(4) { animation-delay: 0.4s; }

/* Discord Widget */
.discord-widget-container {
	position: fixed !important;
	bottom: 20px !important;
	left: 20px !important;
	width: 350px !important;
	height: 500px !important;
	z-index: 1000 !important;
	background: rgba(0, 0, 0, 0.9) !important;
	border-radius: 8px !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
	transition: all 0.3s ease !important;
	overflow: hidden !important;
}

.discord-widget-container.minimized {
	height: 60px !important;
}

.discord-widget-container .discord-toggle {
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	background: #5865F2 !important;
	border: none !important;
	color: white !important;
	padding: 5px 10px !important;
	border-radius: 4px !important;
	cursor: pointer !important;
	font-size: 12px !important;
	z-index: 10 !important;
}

.discord-widget-container iframe {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	border-radius: 8px !important;
}

@media (max-width: 768px){
	.hero{min-height: 56vh;}
	.mainnav .cta{margin-top: 8px;}
	.discord-widget-container {
		display: none !important;
	}
}


