


:root {
	--color-bg: #0a0a0a;
	--color-accent: #00ff88;
	--color-accent-dark: #006633;
	--color-purple: #8a2be2;
	--color-blue: #1e90ff;
	--color-text: #ffffff;
	--color-text-dim: #b0b0b0;
	--shadow-glow: rgba(0, 255, 136, 0.3);
	--shadow-glow-purple: rgba(138, 43, 226, 0.3);
	--shadow-glow-blue: rgba(30, 144, 255, 0.3);
	--shadow-dark: rgba(0, 0, 0, 0.6);
	--transition: 0.3s ease;
	--radius: 16px;
}


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


.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
	backdrop-filter: blur(15px);
	border-bottom: 2px solid rgba(0, 255, 136, 0.2);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	z-index: 10000;
	padding: 0.75rem 0;
	animation: slideDown 0.5s ease-out;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: clamp(1rem, 3vw, 2.5rem);
	margin: 0;
	padding: 0;
	justify-content: center;
}

.nav-item {
	margin: 0;
}

.nav-link {
	color: var(--color-text);
	text-decoration: none;
	font-size: clamp(0.85rem, 1.8vw, 1rem);
	font-weight: 500;
	padding: 0.5rem 0.75rem;
	border-radius: 6px;
	transition: all var(--transition);
	position: relative;
	display: block;
}

.nav-link::after {
	display: none;
}

.nav-link:hover {
	color: var(--color-accent);
	background: rgba(0, 255, 136, 0.1);
	transform: translateY(-2px);
}

.nav-link:active {
	transform: translateY(0);
}


.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 25px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 10001;
}

.mobile-menu-toggle span {
	width: 100%;
	height: 3px;
	background: var(--color-accent);
	border-radius: 2px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}


body {
	padding-top: 60px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 70px; 
}

body {
	background: #0a0a0a;
	color: var(--color-text);
	font-family: 'Segoe UI', Arial, sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
	min-height: 100vh;
}


body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(138, 43, 226, 0.15) 0%,    
		rgba(0, 255, 136, 0.15) 25%,    
		rgba(30, 144, 255, 0.15) 50%,   
		rgba(138, 43, 226, 0.15) 75%,   
		rgba(0, 255, 136, 0.15) 100%    
	);
	background-size: 400% 400%;
	pointer-events: none;
	z-index: 0;
	animation: gradientShift 15s ease infinite;
}


body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(30, 144, 255, 0.06) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
	animation: glowPulse 10s ease-in-out infinite;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

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


h1 {
	font-size: clamp(1.25rem, 3.5vw, 1.8rem);
	font-weight: 700;
	color: var(--color-text);
	text-align: center;
	margin: 1.5rem 0 1rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	animation: slideDown 0.6s ease-out;
	position: relative;
}

h1::after {
	content: '';
	display: block;
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
	margin: 1rem auto 0;
	border-radius: 2px;
	animation: expandWidth 1s ease-out 0.3s both;
}

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

@keyframes expandWidth {
	from { width: 0; }
	to { width: 100px; }
}

h2 {
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	font-weight: 600;
	color: var(--color-accent);
	text-align: center;
	margin: 1.5rem 0 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	animation: fadeInUp 0.6s ease-out;
}

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

p {
	font-size: clamp(0.9rem, 1.8vw, 1.05rem);
	color: var(--color-text-dim);
	line-height: 1.6;
	margin: 0.75rem 0;
	text-align: justify;
	animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

a {
	color: var(--color-accent);
	text-decoration: none;
	font-weight: 500;
	transition: all var(--transition);
	position: relative;
}

a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-accent);
	transition: width 0.4s ease;
}

a:hover {
	color: #00ffaa;
	text-shadow: 0 0 10px var(--shadow-glow);
}

a:hover::after {
	width: 100%;
}


.music-emoji-link {
	font-size: inherit;
	text-decoration: none;
	display: inline;
	transition: transform 0.2s ease;
	vertical-align: baseline;
}

.music-emoji-link:hover {
	transform: scale(1.1);
}

.music-emoji-link::after {
	display: none !important;
}

img {
	width: 100%;
	height: auto;
	max-width: 100%;
}


.content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 1rem 0.75rem;
	animation: fadeIn 0.8s ease-out;
}

.center {
	display: block;
	margin: 1rem auto;
	max-width: min(280px, 65vw);
	height: auto;
	filter: drop-shadow(0 8px 30px var(--shadow-glow));
	animation: logoFloat 3s ease-in-out infinite, fadeIn 1s ease-out;
}

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


table {
	width: 100%;
	max-width: 750px;
	margin: 1.5rem auto;
	border-collapse: separate;
	border-spacing: 0.75rem;
	animation: fadeIn 1s ease-out 0.3s both;
}

td {
	text-align: center;
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: var(--color-text);
	padding: 1rem;
	vertical-align: top;
}


.team-member {
	background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(30, 30, 30, 0.6) 100%);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 1.5rem 1.2rem;
	border: 2px solid rgba(0, 255, 136, 0.2);
	box-shadow: 
		0 10px 40px rgba(0, 0, 0, 0.6),
		0 0 20px rgba(0, 255, 136, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: fadeInScale 0.6s ease-out backwards;
}

.team-member:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 255, 136, 0.4);
	box-shadow: 
		0 15px 50px rgba(0, 0, 0, 0.7),
		0 0 30px rgba(0, 255, 136, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.team-member img {
	width: 100%;
	max-width: 280px;
	height: auto;
	border-radius: 16px;
	box-shadow: 
		0 8px 25px rgba(0, 0, 0, 0.5),
		0 0 15px rgba(0, 255, 136, 0.2);
	transition: all 0.4s ease;
	margin-bottom: 1rem;
}

.team-member:hover img {
	transform: scale(1.05);
	box-shadow: 
		0 12px 35px rgba(0, 0, 0, 0.6),
		0 0 25px rgba(0, 255, 136, 0.3);
}

@keyframes fadeInScale {
	from { opacity: 0; transform: scale(0.9); }
	to { opacity: 1; transform: scale(1); }
}

.team-member b {
	display: block;
	margin-top: 0.75rem;
	font-size: clamp(1rem, 2.2vw, 1.25rem);
	color: var(--color-accent);
	font-weight: 700;
}

.team-member i {
	display: block;
	margin-top: 0.4rem;
	font-size: clamp(0.9rem, 1.9vw, 1rem);
	color: var(--color-text-dim);
	font-style: italic;
}

.splitter {
	width: 5%;
}


iframe[src*=youtube] {
	display: block;
	margin: 1.5rem auto;
	width: 100% !important;
	max-width: 500px !important;
	height: 530px !important;
	min-height: 530px !important;
	max-height: 530px !important;
	border-radius: var(--radius);
	box-shadow: 0 15px 50px var(--shadow-dark);
	border: 2px solid rgba(0, 255, 136, 0.15);
	transition: all 0.4s ease;
	animation: fadeIn 0.8s ease-out;
	box-sizing: border-box;
}

iframe[src*=youtube]:hover {
	transform: scale(1.02);
	box-shadow: 0 25px 80px var(--shadow-dark);
	border-color: var(--color-accent);
}


#fb_emb,
#ig_emb,
#tt_emb {
	width: 100% !important;
	max-width: 500px !important;
	height: auto !important;
	min-height: 500px !important;
	max-height: 700px !important;
	margin: 1.25rem auto;
	padding: 0 !important;
	background: transparent !important;
	border-radius: var(--radius);
	border: none !important;
	overflow: hidden;
	animation: fadeIn 0.8s ease-out;
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-direction: column;
}

#fb_emb {
	height: fit-content !important;
	max-height: 530px !important;
	padding-bottom: 0 !important;
	margin-bottom: 1.25rem !important;
	overflow: hidden !important;
}

#fb_emb > * {
	margin-bottom: 0 !important;
}

#tt_emb {
	height: fit-content !important;
	max-height: 530px !important;
	padding-bottom: 0 !important;
	margin-bottom: 1.25rem !important;
	overflow: hidden !important;
}

#tt_emb > * {
	margin-bottom: 0 !important;
}

#ig_emb {
	height: fit-content !important;
	max-height: 500px !important;
	padding-bottom: 0 !important;
	margin-bottom: 1.25rem !important;
	overflow: hidden !important;
}

#ig_emb > * {
	margin-bottom: 0 !important;
}

.fb-page,
.fb-page iframe {
	width: 100% !important;
	max-width: 500px !important;
	height: auto !important;
	min-height: 500px !important;
	max-height: 700px !important;
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
	border-radius: var(--radius) !important;
	overflow: hidden !important;
}

.elfsight-app-e869ce04-c22a-4bb7-bcf0-2e284310fb7d,
.elfsight-app-e869ce04-c22a-4bb7-bcf0-2e284310fb7d iframe {
	width: 100% !important;
	max-width: 500px !important;
	height: 700px !important;
	min-height: 700px !important;
	max-height: 700px !important;
	border-radius: var(--radius) !important;
	overflow: hidden !important;
}

.tiktok-embed,
.tiktok-embed iframe,
.tiktok-embed blockquote {
	width: 100% !important;
	max-width: 500px !important;
	height: 700px !important;
	min-height: 700px !important;
	max-height: 700px !important;
	border-radius: var(--radius) !important;
	overflow: hidden !important;
}


#ig_emb iframe {
	width: 100% !important;
	max-width: 500px !important;
	height: 700px !important;
	min-height: 700px !important;
	max-height: 700px !important;
	border-radius: var(--radius) !important;
	overflow: hidden !important;
}

#fb_lnk,
#ig_lnk,
#tt_lnk {
	text-align: center;
	padding: 1rem;
	background: rgba(0, 255, 136, 0.05);
	border-radius: var(--radius);
	border: 2px dashed rgba(0, 255, 136, 0.2);
	margin: 1.25rem auto;
	max-width: 500px;
}


.instagram-fallback {
	margin: 2rem 0;
}

.instagram-fallback a:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 25px rgba(188, 24, 136, 0.6) !important;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
	backdrop-filter: blur(10px);
	color: var(--color-text);
	padding: 0.6rem 0.75rem;
	display: none; 
	flex-direction: column;
	gap: 0.5rem;
	z-index: 99999;
	border-top: 2px solid rgba(0, 255, 136, 0.2);
	box-shadow: 0 -10px 40px var(--shadow-dark);
	animation: slideUp 0.5s ease-out;
}

#cookie-banner.show {
	display: flex; 
}

@keyframes slideUp {
	from { transform: translateY(100%); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

#cookie-banner p {
	margin: 0;
	font-size: clamp(0.7rem, 1.5vw, 0.85rem);
	line-height: 1.4;
	color: var(--color-text-dim);
}

.cookie-buttons {
	display: flex;
	gap: 0.65rem;
	justify-content: center;
	flex-wrap: wrap;
}

.cookie-buttons button {
	padding: 0.55rem 1.25rem;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: clamp(0.75rem, 1.5vw, 0.85rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	flex: 1;
	min-width: 100px;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.cookie-buttons button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.cookie-buttons button:hover::before {
	width: 300px;
	height: 300px;
}

.accept-btn {
	background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
	color: #000;
	box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.accept-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(0, 255, 136, 0.6);
}

.reject-btn {
	background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

.reject-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(255, 68, 68, 0.6);
}

#cookie_banner_spacing {
	height: 80px;
}




@media screen and (max-width: 480px) {
	.navbar {
		padding: 0.65rem 0;
	}

	.nav-container {
		padding: 0 1rem;
		position: relative;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 60px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 60px);
		background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
		backdrop-filter: blur(15px);
		flex-direction: column;
		gap: 0;
		padding: 2rem 0;
		transition: left 0.3s ease;
		overflow-y: auto;
		border-right: 2px solid rgba(0, 255, 136, 0.2);
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-item {
		width: 100%;
		text-align: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.nav-link {
		font-size: 1rem;
		padding: 1rem 1.5rem;
		width: 100%;
		border-radius: 0;
	}

	.nav-link:hover {
		background: rgba(0, 255, 136, 0.15);
		transform: translateX(5px);
	}

	body {
		padding-top: 60px;
	}

	.content {
		padding: 0.5rem 0.4rem;
	}
	
	.center {
		max-width: 55vw;
		margin: 0.75rem auto;
	}
	
	h1 {
		margin: 1rem 0 0.75rem;
	}
	
	h2 {
		margin: 1rem 0 0.5rem;
	}
	
	
	.team-table {
		display: block !important;
		border-spacing: 0 !important;
		margin: 1rem auto;
		max-width: 100%;
	}
	
	.team-table tbody {
		display: block !important;
	}
	
	.team-row {
		display: block !important;
		margin-bottom: 0 !important;
	}
	
	.team-member {
		padding: 1rem 0.5rem !important;
		display: block !important;
		width: 100% !important;
		margin-bottom: 2.5rem !important;
		text-align: center !important;
		float: none !important;
		box-sizing: border-box !important;
	}
	
	
	.team-row:last-child .team-member:last-child {
		margin-bottom: 0 !important;
	}
	
	.team-member img {
		max-width: 250px !important;
		margin: 0 auto 1rem auto !important;
		display: block !important;
	}
	
	.team-member b {
		display: block !important;
		margin-top: 0.75rem !important;
	}
	
	.team-member i {
		display: block !important;
		margin-top: 0.3rem !important;
	}
	
	.splitter {
		width: 0 !important;
		height: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
		display: none !important;
	}
	
	#cookie-banner {
		padding: 0.5rem 0.6rem;
	}
	
	#cookie-banner p {
		font-size: 0.65rem;
		line-height: 1.3;
	}
	
	.cookie-buttons {
		gap: 0.5rem;
	}
	
	.cookie-buttons button {
		min-width: 90px;
		padding: 0.5rem 0.85rem;
		font-size: 0.7rem;
	}
	
	iframe[src*=youtube] {
		margin: 1rem auto;
		height: auto !important;
		min-height: 250px !important;
		max-height: 400px !important;
	}
	
	.content {
		padding: 0.5rem 0.5rem !important;
	}
	
	#fb_emb,
	#ig_emb,
	#tt_emb {
		margin: 0.875rem auto;
		padding: 0 !important;
		min-height: auto !important;
		max-height: 420px !important;
		width: 100% !important;
		max-width: 100% !important;
		overflow: hidden !important;
	}
	
	#fb_emb {
		max-height: 380px !important;
	}
	
	#ig_emb {
		max-height: 400px !important;
	}
	
	#tt_emb {
		max-height: 380px !important;
	}
	
	
	.fb-page,
	.fb-page *,
	.fb-page iframe,
	.elfsight-app-e869ce04-c22a-4bb7-bcf0-2e284310fb7d,
	.elfsight-app-e869ce04-c22a-4bb7-bcf0-2e284310fb7d *,
	.tiktok-embed,
	.tiktok-embed *,
	.tiktok-embed iframe,
	#ig_emb iframe,
	#ig_emb * {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}
	
	#cookie_banner_spacing {
		height: 70px;
	}
}


@media screen and (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 60px;
		left: -100%;
		width: 70%;
		max-width: 350px;
		height: calc(100vh - 60px);
		background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
		backdrop-filter: blur(15px);
		flex-direction: column;
		gap: 0;
		padding: 2rem 0;
		transition: left 0.3s ease;
		overflow-y: auto;
		border-right: 2px solid rgba(0, 255, 136, 0.2);
		box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-item {
		width: 100%;
		text-align: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.nav-link {
		font-size: 1rem;
		padding: 1rem 1.5rem;
		width: 100%;
		border-radius: 0;
	}

	.nav-link:hover {
		background: rgba(0, 255, 136, 0.15);
		transform: translateX(5px);
	}

	
	.team-table {
		display: block !important;
		border-spacing: 0 !important;
	}
	
	.team-table tbody {
		display: block !important;
	}
	
	.team-row {
		display: block !important;
	}
	
	.team-member {
		display: block !important;
		width: 100% !important;
		margin-bottom: 2.5rem !important;
		text-align: center !important;
		padding: 1rem 0.5rem !important;
	}
	
	.splitter {
		display: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	
	.team-member img {
		max-width: 260px !important;
		margin: 0 auto 1rem auto !important;
		display: block !important;
	}

	.content {
		padding: 0.875rem 0.65rem;
	}
	
	.center {
		max-width: 260px;
		margin: 0.875rem auto;
	}
	
	h1 {
		margin: 1.25rem 0 0.875rem;
	}
	
	table {
		max-width: 550px;
		margin: 1.25rem auto;
		border-spacing: 0.6rem;
	}
	
	#cookie-banner {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 0.65rem 1rem;
	}
	
	#cookie-banner p {
		flex: 1;
		margin-right: 0.75rem;
		font-size: 0.75rem;
		line-height: 1.35;
	}
	
	.cookie-buttons {
		flex-wrap: nowrap;
		flex-shrink: 0;
		gap: 0.5rem;
	}
	
	.cookie-buttons button {
		padding: 0.55rem 1rem;
		min-width: 95px;
	}
	
	iframe[src*=youtube] {
		max-width: 550px;
	}
	
	#fb_emb,
	#ig_emb,
	#tt_emb {
		max-width: 450px;
	}
}


@media screen and (min-width: 769px) and (max-width: 1024px) {
	.content {
		max-width: 700px;
		padding: 1.25rem 1rem;
	}
	
	.center {
		max-width: 280px;
	}
	
	table {
		max-width: 650px;
		border-spacing: 0.875rem;
	}
	
	td img {
		max-width: 150px;
	}
	
	iframe[src*=youtube] {
		max-width: 600px;
	}
	
	#cookie-banner {
		max-width: 650px;
		left: 50%;
		transform: translateX(-50%);
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		border-radius: var(--radius) var(--radius) 0 0;
		padding: 0.75rem 1.5rem;
	}
	
	#cookie-banner p {
		flex: 1;
		margin-right: 1rem;
		font-size: 0.8rem;
		line-height: 1.35;
	}
	
	#fb_emb,
	#ig_emb,
	#tt_emb {
		max-width: 480px;
	}
}


@media screen and (min-width: 1025px) and (max-width: 1439px) {
	.content {
		max-width: 800px;
		padding: 1.25rem 1rem;
	}
	
	.center {
		max-width: 300px;
	}
	
	table {
		max-width: 700px;
		border-spacing: 1rem;
	}
	
	td img {
		max-width: 165px;
	}
	
	iframe[src*=youtube] {
		max-width: 650px;
	}
	
	#fb_emb,
	#ig_emb,
	#tt_emb {
		max-width: 520px;
	}
	
	#cookie-banner {
		max-width: 700px;
		left: 50%;
		transform: translateX(-50%);
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 0.75rem 1.75rem;
		border-radius: var(--radius) var(--radius) 0 0;
	}
	
	#cookie-banner p {
		flex: 1;
		margin-right: 1.25rem;
		font-size: 0.85rem;
	}
	
	.cookie-buttons button:hover {
		transform: translateY(-3px) scale(1.03);
	}
}


@media screen and (min-width: 1440px) and (max-width: 1919px) {
	.content {
		max-width: 850px;
		padding: 1.5rem 1.25rem;
	}
	
	.center {
		max-width: 320px;
	}
	
	h1 {
		font-size: 2rem;
		margin: 1.75rem 0 1.25rem;
	}
	
	h2 {
		font-size: 1.6rem;
	}
	
	p {
		font-size: 1.05rem;
	}
	
	table {
		max-width: 750px;
		border-spacing: 1.1rem;
	}
	
	td img {
		max-width: 175px;
	}
	
	iframe[src*=youtube] {
		max-width: 700px;
	}
	
	#fb_emb,
	#ig_emb,
	#tt_emb {
		max-width: 550px;
	}
	
	#cookie-banner {
		max-width: 750px;
		left: 50%;
		transform: translateX(-50%);
		padding: 0.85rem 2rem;
		border-radius: var(--radius) var(--radius) 0 0;
	}
	
	#cookie-banner p {
		font-size: 0.9rem;
	}
}


@media screen and (min-width: 1920px) {
	.content {
		max-width: 950px;
		padding: 1.75rem 1.5rem;
	}
	
	.center {
		max-width: 350px;
	}
	
	h1 {
		font-size: 2.25rem;
		margin: 2rem 0 1.5rem;
		letter-spacing: 2px;
	}
	
	h1::after {
		width: 110px;
		height: 4px;
	}
	
	h2 {
		font-size: 1.75rem;
		margin: 1.75rem 0 1rem;
	}
	
	p {
		font-size: 1.1rem;
		line-height: 1.7;
	}
	
	table {
		max-width: 850px;
		border-spacing: 1.25rem;
	}
	
	td img {
		max-width: 190px;
	}
	
	td b {
		font-size: 1.2rem;
	}
	
	td i {
		font-size: 1.05rem;
	}
	
	iframe[src*=youtube] {
		max-width: 750px;
	}
	
	#fb_emb,
	#ig_emb,
	#tt_emb {
		max-width: 600px;
		padding: 1rem;
	}
	
	#cookie-banner {
		max-width: 800px;
		left: 50%;
		transform: translateX(-50%);
		padding: 1rem 2.5rem;
		border-radius: var(--radius) var(--radius) 0 0;
	}
	
	#cookie-banner p {
		font-size: 0.95rem;
	}
	
	.cookie-buttons button {
		padding: 0.7rem 1.75rem;
		font-size: 0.9rem;
	}
}


@media screen and (min-width: 2560px) {
	.content {
		max-width: 1100px;
	}
	
	.center {
		max-width: 400px;
	}
	
	h1 {
		font-size: 2.5rem;
	}
	
	h2 {
		font-size: 2rem;
	}
	
	table {
		max-width: 950px;
	}
	
	td img {
		max-width: 210px;
	}
	
	iframe[src*=youtube] {
		max-width: 850px;
	}
	
	#fb_emb,
	#ig_emb,
	#tt_emb {
		max-width: 700px;
	}
}
