/* Discord Redirect Page Styles */
.discord-redirect-page {
	overflow: hidden;
}

.discord-hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--accent-color) 0%, #5865F2 100%);
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding-top: 60px;
	overflow: hidden;
}

.discord-hero .waves-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: rgba(88, 101, 242, 0.3);
	backdrop-filter: blur(5px);
}

.discord-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 2rem;
	animation: fadeInUp 1s ease-out;
}

.discord-logo {
	font-size: 4rem;
	margin-bottom: 2rem;
}

.discord-logo i {
	color: white;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.discord-hero h1 {
	font-size: 4rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.discord-subtitle {
	font-size: 1.5rem;
	max-width: 600px;
	margin: 0 auto 3rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.discord-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin: 3rem auto;
	max-width: 500px;
}

.discord-feature {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.discord-feature:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.discord-feature i {
	font-size: 1.25rem;
	color: white;
}

.discord-feature span {
	font-weight: 600;
	color: white;
}

.discord-buttons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin: 3rem 0;
}

.discord-btn {
	display: inline-flex;
	align-items: center;
	padding: 1.25rem 2.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	min-width: 200px;
	justify-content: center;
}

.discord-btn.primary {
	background: white;
	color: #5865F2;
	border: 2px solid white;
}

.discord-btn.primary:hover {
	background: transparent;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.discord-btn.secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.discord-btn.secondary:hover {
	background: white;
	color: #5865F2;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.redirect-timer {
	margin-top: 2rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.redirect-timer p {
	margin: 0;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
}

#countdown {
	font-weight: bold;
	color: white;
	font-size: 1.2rem;
}

/* Animations */
@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 991px) {
	.discord-hero h1 {
		font-size: 3.5rem;
	}

	.discord-subtitle {
		font-size: 1.25rem;
	}

	.discord-features {
		grid-template-columns: 1fr;
		max-width: 300px;
	}
}

@media (max-width: 767px) {
	.discord-hero h1 {
		font-size: 3rem;
	}

	.discord-subtitle {
		font-size: 1.125rem;
	}

	.discord-buttons {
		flex-direction: column;
		align-items: center;
	}

	.discord-btn {
		width: 100%;
		max-width: 300px;
	}

	.discord-logo {
		font-size: 3rem;
	}
}

@media (max-width: 575px) {
	.discord-hero h1 {
		font-size: 2.5rem;
	}

	.discord-subtitle {
		font-size: 1rem;
	}

	.discord-features {
		gap: 1rem;
	}

	.discord-feature {
		padding: 0.75rem;
	}
}