/* Social Redirect Page Styles */
.social-page {
	overflow: hidden;
}

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

.social-hero .waves-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: rgba(102, 126, 234, 0.3);
	backdrop-filter: blur(5px);
}

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

.social-logo {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

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

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

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

.social-platforms {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin: 2rem auto;
	max-width: 600px;
}

.social-platform {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	text-decoration: none;
	color: white;
	min-height: 180px;
}

.social-platform:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	color: white;
	text-decoration: none;
}

.platform-icon {
	font-size: 2rem;
	margin-bottom: 0.75rem;
	transition: transform 0.3s ease;
}

.social-platform:hover .platform-icon {
	transform: scale(1.1);
}

.platform-name {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.platform-description {
	font-size: 0.8rem;
	opacity: 0.8;
	text-align: center;
	line-height: 1.3;
}

/* Platform-specific colors on hover */
.social-platform.youtube:hover {
	background: rgba(255, 0, 0, 0.2);
	border-color: rgba(255, 0, 0, 0.4);
}

.social-platform.github:hover {
	background: rgba(51, 51, 51, 0.2);
	border-color: rgba(51, 51, 51, 0.4);
}

.social-platform.twitter:hover {
	background: rgba(29, 161, 242, 0.2);
	border-color: rgba(29, 161, 242, 0.4);
}

.social-platform.nexus:hover {
	background: rgba(220, 117, 0, 0.2);
	border-color: rgba(220, 117, 0, 0.4);
}

.social-platform.discord:hover {
	background: rgba(88, 101, 242, 0.2);
	border-color: rgba(88, 101, 242, 0.4);
}

.social-platform.tiktok:hover {
	background: rgba(0, 242, 234, 0.2);
	border-color: rgba(0, 242, 234, 0.4);
}

.social-platform.twitch:hover {
	background: rgba(145, 70, 255, 0.2);
	border-color: rgba(145, 70, 255, 0.4);
}

.social-platform.reddit:hover {
	background: rgba(255, 69, 0, 0.2);
	border-color: rgba(255, 69, 0, 0.4);
}

.social-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin: 2rem 0;
}

.social-btn {
	display: inline-flex;
	align-items: center;
	padding: 1rem 2rem;
	font-size: 1rem;
	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: 180px;
	justify-content: center;
}

.social-btn.primary {
	background: white;
	color: #667eea;
	border: 2px solid white;
}

.social-btn.primary:hover {
	background: transparent;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.social-btn.secondary:hover {
	background: white;
	color: #667eea;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

	50% {
		transform: scale(1.1);
	}

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

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

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

	.social-platforms {
		grid-template-columns: repeat(2, 1fr);
		max-width: 550px;
	}
}

@media (max-width: 767px) {
	.social-hero {
		min-height: 450px;
		height: auto;
		padding: 80px 0 40px;
	}

	.social-hero h1 {
		font-size: 2rem;
	}

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

	.social-platforms {
		grid-template-columns: 1fr;
		max-width: 350px;
		gap: 1rem;
	}

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

	.social-btn {
		width: 100%;
		max-width: 250px;
	}

	.social-logo {
		font-size: 2rem;
	}
}

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

	.social-subtitle {
		font-size: 0.9rem;
	}

	.social-platforms {
		gap: 0.75rem;
	}

	.social-platform {
		padding: 1.25rem;
		min-height: 160px;
	}

	.platform-icon {
		font-size: 1.75rem;
	}

	.platform-name {
		font-size: 1rem;
	}

	.social-hero-content {
		padding: 1rem;
	}
}

/* Extra small devices */
@media (max-width: 400px) {
	.social-hero h1 {
		font-size: 1.5rem;
	}

	.social-subtitle {
		font-size: 0.85rem;
	}

	.social-platforms {
		max-width: 300px;
	}

	.social-platform {
		min-height: 150px;
		padding: 1rem;
	}
}