/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Dark Mode Colors */
	--bg-primary: #0a0a0a;
	--bg-secondary: rgba(26, 11, 46, 0.9);
	--text-primary: #ffffff;
	--text-secondary: #cccccc;
	--accent-primary: #cd2bad;
	--accent-secondary: #8a2be2;
	--accent-tertiary: #4b0082;
	--border-color: rgba(205, 43, 173, 0.3);
	--shadow-color: rgba(0, 0, 0, 0.5);
	--input-bg: rgba(255, 255, 255, 0.1);
	--input-focus-bg: rgba(255, 255, 255, 0.15);
}

[data-theme="light"] {
	/* Light Mode Colors */
	--bg-primary: #f8f9fa;
	--bg-secondary: rgba(255, 255, 255, 0.9);
	--text-primary: #1a1a1a;
	--text-secondary: #666666;
	--accent-primary: #cd2bad;
	--accent-secondary: #8a2be2;
	--accent-tertiary: #4b0082;
	--border-color: rgba(205, 43, 173, 0.2);
	--shadow-color: rgba(0, 0, 0, 0.1);
	--input-bg: rgba(0, 0, 0, 0.05);
	--input-focus-bg: rgba(0, 0, 0, 0.1);
}

body {
	font-family: "Rajdhani", sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	overflow-x: hidden;
	min-height: 100vh;
	position: relative;
	transition: all 0.3s ease;
}

/* Background Animation */
.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(
		135deg,
		#0a0a0a 0%,
		#1a0b2e 25%,
		#cd2bad 50%,
		#8a2be2 75%,
		#4b0082 100%
	);
	animation: sunsetShift 20s ease-in-out infinite;
	transition: all 0.3s ease;
}

[data-theme="light"] .background {
	background: linear-gradient(
		135deg,
		#f8f9fa 0%,
		#e9ecef 25%,
		#cd2bad 50%,
		#8a2be2 75%,
		#4b0082 100%
	);
}

@keyframes sunsetShift {
	0%,
	100% {
		background: linear-gradient(
			135deg,
			#0a0a0a 0%,
			#1a0b2e 25%,
			#cd2bad 50%,
			#8a2be2 75%,
			#4b0082 100%
		);
	}
	50% {
		background: linear-gradient(
			135deg,
			#1a0b2e 0%,
			#cd2bad 25%,
			#8a2be2 50%,
			#4b0082 75%,
			#cd2bad 100%
		);
	}
}

/* Moon and Glow Effects */
.moon {
	position: absolute;
	top: 15%;
	right: 20%;
	width: 120px;
	height: 120px;
	background: radial-gradient(circle, #ffffff 0%, #cd2bad 50%, #8a2be2 100%);
	border-radius: 50%;
	box-shadow: 0 0 60px #cd2bad, 0 0 120px #8a2be2,
		0 0 180px rgba(205, 43, 173, 0.3);
	animation: moonPulse 4s ease-in-out infinite;
}

.moon-glow {
	position: absolute;
	top: 15%;
	right: 20%;
	width: 200px;
	height: 200px;
	background: radial-gradient(
		circle,
		rgba(205, 43, 173, 0.3) 0%,
		transparent 70%
	);
	border-radius: 50%;
	animation: glowPulse 6s ease-in-out infinite;
}

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

@keyframes glowPulse {
	0%,
	100% {
		opacity: 0.5;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.2);
	}
}

/* Clouds */
.clouds {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.cloud {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	animation: cloudFloat 15s linear infinite;
}

.cloud-1 {
	top: 20%;
	left: -100px;
	width: 80px;
	height: 40px;
	animation-delay: 0s;
}

.cloud-2 {
	top: 35%;
	left: -150px;
	width: 120px;
	height: 60px;
	animation-delay: 5s;
}

.cloud-3 {
	top: 15%;
	left: -200px;
	width: 100px;
	height: 50px;
	animation-delay: 10s;
}

@keyframes cloudFloat {
	0% {
		transform: translateX(0px);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateX(calc(100vw + 200px));
		opacity: 0;
	}
}

/* Palm Trees */
.palm-trees {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.palm-tree {
	position: absolute;
	bottom: 0;
	width: 20px;
	height: 200px;
	background: linear-gradient(to top, #2d1b69, #1a0b2e);
	border-radius: 10px 10px 0 0;
}

.palm-tree::before {
	content: "";
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 40px;
	background: linear-gradient(45deg, #2d1b69, #ff6b35);
	border-radius: 50% 50% 0 0;
	box-shadow: -20px -10px 0 #2d1b69, 20px -10px 0 #ff6b35, -30px -20px 0 #1a0b2e,
		30px -20px 0 #f7931e;
}

.palm-1 {
	right: 15%;
	height: 180px;
	animation: palmSway 8s ease-in-out infinite;
}

.palm-2 {
	right: 25%;
	height: 220px;
	animation: palmSway 8s ease-in-out infinite 2s;
}

.palm-3 {
	right: 35%;
	height: 160px;
	animation: palmSway 8s ease-in-out infinite 4s;
}

@keyframes palmSway {
	0%,
	100% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(2deg);
	}
}

/* Ocean Horizon */
.ocean-horizon {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(
		to top,
		#000000 0%,
		#1a0b2e 30%,
		#cd2bad 60%,
		transparent 100%
	);
	clip-path: polygon(
		0% 100%,
		10% 90%,
		20% 95%,
		30% 85%,
		40% 90%,
		50% 80%,
		60% 85%,
		70% 75%,
		80% 80%,
		90% 70%,
		100% 75%,
		100% 100%
	);
}

/* Ocean Waves */
.ocean-waves {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120px;
	background: linear-gradient(
		to top,
		rgba(205, 43, 173, 0.4) 0%,
		rgba(138, 43, 226, 0.3) 50%,
		transparent 100%
	);
	animation: waveRipple 4s ease-in-out infinite;
}

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

/* Theme Toggle */
.theme-toggle {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
}

.theme-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--bg-secondary);
	border: 2px solid var(--border-color);
	color: var(--accent-primary);
	font-size: 1.2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px var(--shadow-color);
}

.theme-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px var(--shadow-color);
	border-color: var(--accent-primary);
}

/* Container */
.container {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

/* Logo Section */
.logo-section {
	text-align: center;
	margin-bottom: 40px;
	animation: logoFloat 6s ease-in-out infinite;
}

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

.logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 10px;
}

.logo-text {
	font-family: "Orbitron", monospace;
	font-weight: 900;
	font-size: 3.5rem;
	color: #ffffff;
	text-shadow: 0 0 10px #cd2bad, 0 0 20px #cd2bad, 0 0 30px #cd2bad,
		2px 2px 0px #000000, -2px -2px 0px #000000, 2px -2px 0px #000000,
		-2px 2px 0px #000000;
	letter-spacing: 4px;
	animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
	0%,
	100% {
		text-shadow: 0 0 10px #cd2bad, 0 0 20px #cd2bad, 0 0 30px #cd2bad,
			2px 2px 0px #000000, -2px -2px 0px #000000, 2px -2px 0px #000000,
			-2px 2px 0px #000000;
	}
	50% {
		text-shadow: 0 0 20px #cd2bad, 0 0 40px #cd2bad, 0 0 60px #cd2bad,
			2px 2px 0px #000000, -2px -2px 0px #000000, 2px -2px 0px #000000,
			-2px 2px 0px #000000;
	}
}

.subtitle {
	font-size: 1.2rem;
	color: white;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
}

[data-theme="light"] .subtitle {
	color: #ffffff;
}

/* Login Card */
.login-card {
	background: var(--bg-secondary);
	backdrop-filter: blur(20px);
	border: 2px solid var(--border-color);
	border-radius: 20px;
	padding: 40px;
	width: 100%;
	max-width: 450px;
	box-shadow: 0 20px 40px var(--shadow-color), 0 0 20px rgba(205, 43, 173, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	animation: cardFloat 8s ease-in-out infinite;
	transition: all 0.3s ease;
}

@keyframes cardFloat {
	0%,
	100% {
		transform: translateY(0px) rotateX(0deg);
	}
	50% {
		transform: translateY(-5px) rotateX(2deg);
	}
}

.card-header {
	text-align: center;
	margin-bottom: 30px;
}

.card-header h2 {
	font-size: 2rem;
	color: #cd2bad;
	margin-bottom: 10px;
	font-weight: 600;
}

.card-header h2 i {
	margin-right: 10px;
	color: #cd2bad;
}

.card-header p {
	color: var(--text-secondary);
	font-size: 1rem;
}

/* Form Styles */
.login-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.input-group {
	position: relative;
	display: flex;
	align-items: center;
}

.input-icon {
	position: absolute;
	left: 15px;
	color: #cd2bad;
	font-size: 1.2rem;
	z-index: 2;
}

.input-group input {
	width: 100%;
	padding: 15px 15px 15px 50px;
	background: var(--input-bg);
	border: none;
	border-radius: 10px;
	color: var(--text-primary);
	font-size: 1rem;
	font-family: "Rajdhani", sans-serif;
	transition: all 0.3s ease;
}

.input-group input::placeholder {
	color: var(--text-secondary);
}

.input-group input:focus {
	outline: none;
	background: var(--input-focus-bg);
	box-shadow: 0 0 20px rgba(205, 43, 173, 0.3);
}

.input-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #cd2bad, #8a2be2);
	transition: width 0.3s ease;
}

.input-group input:focus + .input-line {
	width: 100%;
}

.password-toggle {
	position: absolute;
	right: 15px;
	background: none;
	border: none;
	color: #cd2bad;
	cursor: pointer;
	font-size: 1.1rem;
	transition: color 0.3s ease;
}

.password-toggle:hover {
	color: #8a2be2;
}

/* Form Options */
.form-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
}

.checkbox-container {
	display: flex;
	align-items: center;
	cursor: pointer;
	color: var(--text-secondary);
}

.checkbox-container input {
	display: none;
}

.checkmark {
	width: 18px;
	height: 18px;
	border: 2px solid #cd2bad;
	border-radius: 4px;
	margin-right: 8px;
	position: relative;
	transition: all 0.3s ease;
}

.checkbox-container input:checked + .checkmark {
	background: #cd2bad;
}

.checkbox-container input:checked + .checkmark::after {
	content: "✓";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #ffffff;
	font-size: 12px;
}

.forgot-password {
	color: #cd2bad;
	text-decoration: none;
	transition: color 0.3s ease;
}

.forgot-password:hover {
	color: #8a2be2;
}

/* Login Button */
.login-btn {
	position: relative;
	width: 100%;
	padding: 15px;
	background: linear-gradient(45deg, #cd2bad, #8a2be2);
	border: none;
	border-radius: 10px;
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 600;
	font-family: "Rajdhani", sans-serif;
	cursor: pointer;
	overflow: hidden;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.login-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(205, 43, 173, 0.4);
}

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

.btn-glow {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s ease;
}

.login-btn:hover .btn-glow {
	left: 100%;
}

/* Register Link */
.register-link {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.register-link p {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.register-btn {
	color: #cd2bad;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.register-btn:hover {
	color: #8a2be2;
}

/* Social Login */
.social-login {
	margin-top: 25px;
	text-align: center;
}

.social-login p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-bottom: 15px;
}

.social-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
}

.social-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: var(--input-bg);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	color: var(--text-primary);
	font-size: 0.9rem;
	font-family: "Rajdhani", sans-serif;
	cursor: pointer;
	transition: all 0.3s ease;
}

.social-btn:hover {
	background: var(--input-focus-bg);
	transform: translateY(-2px);
}

.social-btn.discord:hover {
	border-color: #7289da;
	box-shadow: 0 5px 15px rgba(114, 137, 218, 0.3);
}

.social-btn.google:hover {
	border-color: #171a21;
	box-shadow: 0 5px 15px rgba(23, 26, 33, 0.3);
}

/* Footer */
.footer {
	margin-top: 40px;
	text-align: center;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 15px;
}

.footer-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: #cd2bad;
}

[data-theme="light"] .footer-link {
	color: #ffffff;
}

[data-theme="light"] .footer-link:hover {
	color: #cd2bad;
}

.copyright {
	color: var(--text-secondary);
	font-size: 0.8rem;
}

[data-theme="light"] .copyright {
	color: #ffffff;
}

/* Particles */
.particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: #cd2bad;
	border-radius: 50%;
	animation: particleFloat 10s linear infinite;
}

.particle:nth-child(1) {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.particle:nth-child(2) {
	top: 60%;
	left: 20%;
	animation-delay: 2s;
}

.particle:nth-child(3) {
	top: 40%;
	left: 80%;
	animation-delay: 4s;
}

.particle:nth-child(4) {
	top: 80%;
	left: 70%;
	animation-delay: 6s;
}

.particle:nth-child(5) {
	top: 30%;
	left: 50%;
	animation-delay: 8s;
}

.particle:nth-child(6) {
	top: 70%;
	left: 30%;
	animation-delay: 1s;
}

.particle:nth-child(7) {
	top: 50%;
	left: 90%;
	animation-delay: 3s;
}

.particle:nth-child(8) {
	top: 10%;
	left: 60%;
	animation-delay: 5s;
}

@keyframes particleFloat {
	0% {
		transform: translateY(0px) rotate(0deg);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateY(-100vh) rotate(360deg);
		opacity: 0;
	}
}

/* Password Strength Indicator */
.password-strength {
	margin-top: 5px;
	display: flex;
	align-items: center;
	gap: 10px;
}

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

.strength-fill {
	height: 100%;
	transition: all 0.3s ease;
}

.strength-text {
	font-size: 0.8rem;
	color: var(--text-secondary);
	min-width: 80px;
}

.terms-link {
	color: var(--accent-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.terms-link:hover {
	color: var(--accent-secondary);
}

/* Dashboard Styles */
.user-info {
	margin: 20px 0;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: var(--input-bg);
	border-radius: 10px;
	margin-bottom: 10px;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.info-item:hover {
	background: var(--input-focus-bg);
	transform: translateX(5px);
}

.info-item i {
	color: var(--accent-primary);
	font-size: 1.2rem;
	width: 20px;
	text-align: center;
}

.info-item span {
	color: var(--text-primary);
	font-size: 1rem;
}

/* Dashboard Cards */
.dashboard-card {
	background: var(--bg-secondary);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

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

.user-info-card {
	max-width: 1200px;
	margin: 0 auto 40px auto;
	width: 100%;
}

.application-status-card {
	max-width: 1200px;
	margin: 0 auto 30px auto;
	width: 100%;
	background: linear-gradient(
		135deg,
		rgba(255, 193, 7, 0.1),
		rgba(253, 126, 20, 0.1)
	);
	border: 1px solid rgba(255, 193, 7, 0.3);
}

.application-status-card:hover {
	border-color: rgba(255, 193, 7, 0.5);
	transform: translateY(-2px);
}

.status-header {
	display: flex;
	align-items: center;
	gap: 20px;
}

.status-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: white;
	flex-shrink: 0;
}

.status-icon.pending {
	background: linear-gradient(45deg, #ffc107, #fd7e14);
	animation: pulse 2s infinite;
}

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

.status-content h3 {
	font-family: "Orbitron", sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: white !important;
	margin-bottom: 5px;
}

.status-content p {
	color: white !important;
	font-size: 14px;
	margin-bottom: 5px;
}

.status-content small {
	color: white !important;
	font-size: 12px;
}

.dashboard-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.feature-card {
	position: relative;
	height: 280px;
	cursor: pointer;
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.feature-card:hover {
	transform: translateY(-10px) scale(1.02);
}

.card-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.3s ease;
	z-index: 1;
}

.feature-card:hover .card-bg {
	transform: scale(1.1);
}

.card-content {
	position: relative;
	z-index: 2;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.9) 0%,
		rgba(0, 0, 0, 0.7) 50%,
		rgba(0, 0, 0, 0.3) 100%
	);
	padding: 30px;
	color: white;
	border-radius: 0 0 20px 20px;
	transform: translateY(0);
	transition: all 0.3s ease;
}

.feature-card:hover .card-content {
	transform: translateY(-5px);
}

.card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		45deg,
		var(--accent-primary),
		var(--accent-secondary)
	);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	box-shadow: 0 5px 15px rgba(205, 43, 173, 0.3);
	transition: all 0.3s ease;
}

.feature-card:hover .card-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 25px rgba(205, 43, 173, 0.5);
}

.card-icon i {
	font-size: 24px;
	color: white;
}

.card-content h3 {
	font-family: "Orbitron", sans-serif;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
	color: white;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-content p {
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 20px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.card-arrow {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateX(20px);
}

.feature-card:hover .card-arrow {
	opacity: 1;
	transform: translateX(0);
	background: var(--accent-primary);
}

/* Disabled Card */
.feature-card.disabled {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

.feature-card.disabled:hover {
	transform: none;
}

.feature-card.disabled .card-bg {
	filter: grayscale(50%);
}

.feature-card.disabled .card-icon {
	background: rgba(128, 128, 128, 0.5);
}

.feature-card.disabled .card-content h3 {
	color: rgba(255, 255, 255, 0.7);
}

.feature-card.disabled .card-content p {
	color: rgba(255, 255, 255, 0.6);
}

.feature-card.disabled .card-arrow {
	opacity: 0.3;
}

.card-arrow i {
	color: white;
	font-size: 16px;
}

.logout-section {
	text-align: center;
	margin-top: 40px;
}

/* User Info Card Styles */
.user-info-card .card-header {
	text-align: center;
	margin-bottom: 30px;
}

.user-info-card .card-header h2 {
	font-family: "Orbitron", sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--accent-primary);
	margin-bottom: 10px;
}

.user-info-card .card-header h2 i {
	margin-right: 10px;
	color: var(--accent-secondary);
}

.user-info-card .card-header p {
	color: var(--text-secondary);
	font-size: 16px;
}

.user-info-compact {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	flex-wrap: nowrap;
}

.info-item-compact {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 15px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	flex: 1;
	min-width: 0;
}

.info-item-compact:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--accent-primary);
	transform: translateY(-2px);
}

.info-item-compact i {
	width: 35px;
	height: 35px;
	background: linear-gradient(
		45deg,
		var(--accent-primary),
		var(--accent-secondary)
	);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 14px;
	flex-shrink: 0;
}

.info-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.info-label {
	font-size: 10px;
	color: var(--text-secondary);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.info-value {
	font-size: 13px;
	color: var(--text-primary);
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.user-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.info-item {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.info-item:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--accent-primary);
	transform: translateY(-2px);
}

.info-item i {
	width: 40px;
	height: 40px;
	background: linear-gradient(
		45deg,
		var(--accent-primary),
		var(--accent-secondary)
	);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: white;
	font-size: 16px;
}

.info-item span {
	color: var(--text-primary);
	font-size: 14px;
}

.info-item strong {
	color: var(--accent-primary);
	font-weight: 600;
}

/* Responsive Design */
@media (max-width: 480px) {
	.logo-text {
		font-size: 2.5rem;
	}

	.login-card {
		padding: 30px 20px;
		margin: 0 10px;
	}

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

	.social-buttons {
		flex-direction: column;
	}

	.moon {
		width: 80px;
		height: 80px;
		top: 10%;
		right: 10%;
	}

	.moon-glow {
		width: 140px;
		height: 140px;
		top: 10%;
		right: 10%;
	}

	.info-item {
		padding: 12px;
	}

	.info-item span {
		font-size: 0.9rem;
	}

	.dashboard-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 20px;
	}

	.feature-card {
		height: 250px;
	}

	.card-content {
		padding: 25px;
	}

	.card-content h3 {
		font-size: 20px;
	}

	.card-content p {
		font-size: 14px;
	}

	.user-info {
		grid-template-columns: 1fr;
	}

	.info-item {
		padding: 12px 15px;
	}

	.info-item i {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}

	.user-info-compact {
		flex-direction: column;
		gap: 15px;
	}

	.info-item-compact {
		min-width: auto;
		width: 100%;
	}

	.info-label {
		font-size: 11px;
	}

	.info-value {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.logo-text {
		font-size: 2rem;
	}

	.card-header h2 {
		font-size: 1.5rem;
	}

	.input-group input {
		padding: 12px 12px 12px 40px;
	}

	.form-options {
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
	}
}

/* Application Form Styles */
.application-form-container {
	max-width: 800px;
	margin: 0 auto 40px auto;
}

.application-form {
	background: var(--bg-secondary);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-color);
}

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

.form-header h2 {
	font-family: "Orbitron", sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--accent-primary);
	margin-bottom: 10px;
}

.form-header h2 i {
	margin-right: 10px;
	color: var(--accent-secondary);
}

.form-header p {
	color: var(--text-secondary);
	font-size: 16px;
}

/* Step Indicator */
.step-indicator {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	gap: 20px;
}

.step {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 25px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
}

.step.active {
	background: linear-gradient(
		45deg,
		var(--accent-primary),
		var(--accent-secondary)
	);
	border-color: var(--accent-primary);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(205, 43, 173, 0.3);
}

.step-number {
	width: 30px;
	height: 30px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: white;
}

.step.active .step-number {
	background: rgba(255, 255, 255, 0.3);
}

.step-text {
	font-weight: 500;
	color: var(--text-primary);
}

.step.active .step-text {
	color: white;
}

/* Form Steps */
.form-step {
	display: none;
	animation: fadeIn 0.5s ease;
}

.form-step.active {
	display: block;
}

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

.step-content h3 {
	font-family: "Orbitron", sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--accent-primary);
	margin-bottom: 10px;
}

.step-description {
	color: var(--text-secondary);
	font-size: 16px;
	margin-bottom: 30px;
}

/* Question Groups */
.question-group {
	margin-bottom: 30px;
}

.question-label {
	display: block;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 1.5;
}

.required {
	color: #e74c3c;
	margin-left: 5px;
}

.form-textarea {
	width: 100%;
	padding: 15px;
	background: var(--input-bg);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	color: var(--text-primary);
	font-family: "Rajdhani", sans-serif;
	font-size: 16px;
	resize: vertical;
	transition: all 0.3s ease;
}

.form-textarea:focus {
	outline: none;
	border-color: var(--accent-primary);
	background: var(--input-focus-bg);
	box-shadow: 0 0 0 3px rgba(205, 43, 173, 0.1);
}

.form-textarea::placeholder {
	color: var(--text-secondary);
}

.form-input {
	width: 100%;
	padding: 15px;
	background: var(--input-bg);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	color: var(--text-primary);
	font-family: "Rajdhani", sans-serif;
	font-size: 16px;
	transition: all 0.3s ease;
}

.form-input:focus {
	outline: none;
	border-color: var(--accent-primary);
	background: var(--input-focus-bg);
	box-shadow: 0 0 0 3px rgba(205, 43, 173, 0.1);
}

.form-input::placeholder {
	color: var(--text-secondary);
}

/* Options Group */
.options-group {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.option-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 20px;
	background: var(--input-bg);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.option-item:hover {
	background: var(--input-focus-bg);
	border-color: var(--accent-primary);
	transform: translateX(5px);
}

.option-item input[type="radio"] {
	width: 20px;
	height: 20px;
	accent-color: var(--accent-primary);
}

.option-text {
	color: var(--text-primary);
	font-size: 16px;
	font-weight: 500;
}

/* Step Actions */
.step-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid var(--border-color);
}

.btn-prev,
.btn-next,
.btn-submit {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	background: linear-gradient(
		45deg,
		var(--accent-primary),
		var(--accent-secondary)
	);
	border: none;
	border-radius: 10px;
	color: white;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-prev:hover,
.btn-next:hover,
.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(205, 43, 173, 0.3);
}

.btn-prev:disabled,
.btn-next:disabled,
.btn-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* Application Status */
.application-status {
	max-width: 600px;
	margin: 0 auto 40px auto;
}

.status-card {
	background: var(--bg-secondary);
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 20px;
}

.status-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: white;
	flex-shrink: 0;
}

.status-icon i.fa-clock {
	background: linear-gradient(45deg, #ffc107, #fd7e14);
}

.status-icon i.fa-check-circle {
	background: linear-gradient(45deg, #28a745, #20c997);
}

.status-icon i.fa-times-circle {
	background: linear-gradient(45deg, #dc3545, #e74c3c);
}

.status-content h3 {
	font-family: "Orbitron", sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--accent-primary);
	margin-bottom: 10px;
}

.status-content p {
	color: var(--text-primary);
	font-size: 16px;
	margin-bottom: 10px;
}

.status-content small {
	color: var(--text-secondary);
	font-size: 14px;
}

/* Back Section */
.back-section {
	text-align: center;
	margin-top: 40px;
}

.back-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	color: var(--text-primary);
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.back-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--accent-primary);
	transform: translateY(-2px);
}

/* Field Errors */
.field-error {
	color: #e74c3c;
	font-size: 14px;
	margin-top: 5px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.field-error::before {
	content: "⚠";
	font-size: 16px;
}

.question-group.has-error .form-textarea,
.question-group.has-error .option-item {
	border-color: #e74c3c;
}

/* No Questions */
.no-questions {
	text-align: center;
	padding: 40px 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid var(--border-color);
}

.no-questions p {
	color: var(--text-secondary);
	font-size: 16px;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.application-form {
		padding: 30px 20px;
		margin: 0 20px;
	}

	.step-indicator {
		flex-direction: column;
		gap: 15px;
	}

	.step {
		justify-content: center;
	}

	.step-actions {
		flex-direction: column;
		gap: 15px;
	}

	.btn-prev,
	.btn-next,
	.btn-submit {
		width: 100%;
		justify-content: center;
	}

	.status-card {
		flex-direction: column;
		text-align: center;
		padding: 25px 20px;
	}

	.status-header {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.status-icon {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}

	.status-content h3 {
		font-size: 16px;
	}

	.status-content p {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.application-form {
		padding: 25px 15px;
		margin: 0 15px;
	}

	.form-header h2 {
		font-size: 24px;
	}

	.step-content h3 {
		font-size: 20px;
	}

	.option-item {
		padding: 12px 15px;
	}

	.option-text {
		font-size: 14px;
	}
}
