:root {
	--ss-red: #c71f3c;
	--ss-red-dark: #9c1830;
}

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

body {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	color: #ffffff;
	background: linear-gradient(135deg, var(--ss-red) 0%, var(--ss-red-dark) 100%);
	background-attachment: fixed;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 1.5rem;
	overflow-x: hidden;
	position: relative;
}

/* Animated overlay to give the flat gradient some life */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	background:
		radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.16), transparent 40%),
		radial-gradient(circle at 85% 85%, rgba(80, 0, 20, 0.35), transparent 45%);
	animation: shimmer 16s ease-in-out infinite alternate;
	pointer-events: none;
	z-index: 0;
}

@keyframes shimmer {
	from { opacity: 0.7; transform: scale(1); }
	to   { opacity: 1; transform: scale(1.1); }
}

/* Subtle grid texture */
body::after {
	content: "";
	position: fixed;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: radial-gradient(circle at center, black, transparent 75%);
	-webkit-mask-image: radial-gradient(circle at center, black, transparent 75%);
	pointer-events: none;
	z-index: 0;
}

/* Language switcher */
.lang-switch {
	position: fixed;
	top: 1.1rem;
	right: 1.1rem;
	z-index: 5;
	display: flex;
	gap: 0.25rem;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	padding: 0.25rem;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.lang-switch button {
	font-family: inherit;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: rgba(255, 255, 255, 0.85);
	background: transparent;
	border: none;
	border-radius: 999px;
	padding: 0.35rem 0.7rem;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.lang-switch button:hover { background: rgba(255, 255, 255, 0.15); }

.lang-switch button.active {
	background: #ffffff;
	color: var(--ss-red);
}

.card {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 600px;
	margin: auto 0;
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 26px;
	padding: 3.5rem 2.75rem;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 24px 60px rgba(60, 0, 15, 0.4);
	animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.logo-plate {
	background: #ffffff;
	border-radius: 18px;
	padding: 2rem 2.25rem;
	margin: 0 auto 2rem;
	max-width: 320px;
	box-shadow: 0 12px 30px rgba(60, 0, 15, 0.28);
}

.logo { width: 100%; height: auto; display: block; }

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.78rem;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.32);
	padding: 0.45rem 1rem;
	border-radius: 999px;
	margin-bottom: 1.75rem;
}

.pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ffffff;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
	70%  { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

h1 {
	font-weight: 800;
	letter-spacing: -0.02em;
	font-size: clamp(1.7rem, 4.5vw, 2.4rem);
	line-height: 1.15;
	color: #ffffff;
	margin-bottom: 1.1rem;
}

.lead {
	font-size: 1.1rem;
	line-height: 1.65;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	max-width: 48ch;
	margin: 0 auto;
}

.divider {
	height: 1px;
	width: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	margin: 2.25rem 0 1.5rem;
}

.follow {
	font-size: 0.95rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1.1rem;
}

.social {
	display: flex;
	justify-content: center;
	gap: 0.8rem;
}

.social a {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.social a:hover {
	transform: translateY(-3px);
	background: #ffffff;
	color: var(--ss-red);
	border-color: transparent;
}

.social svg { width: 21px; height: 21px; fill: currentColor; }

footer {
	position: relative;
	z-index: 1;
	margin-top: 2rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
}

@media (max-width: 480px) {
	.card { padding: 2.5rem 1.5rem; }
	.lang-switch { top: 0.75rem; right: 0.75rem; }
}
