:root {
	--primary: #fff;
	--bg-dark: #121418;
	--bg-card: #1C1F26;
	--accent-green: #39FF14;
	--accent-red: #cd302b;
	--text-muted: #898f99;
	--tape-color: rgba(244, 234, 213, 0.25);
	--dashed-border-style: 2px dashed rgba(255, 255, 255, 0.1);
	--heading-font:"Luckiest Guy",'Courier New';
	--primary-font:"Itim", 'Courier New', Courier, monospace, sans-serif;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}
.news-article .news-description a,.news-article .news-description a:visited {
	color:var(--accent-red);
}
.animate-on-scroll {
	opacity: 0;
	transition: all 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-left {
	transform: translateX(-60px);
}
.slide-right {
	transform: translateX(60px);
}
.slide-up {
	transform: translateY(50px);
}
.animate-on-scroll.active {
	opacity: 1;
	transform: translateX(0) translateY(0);
}
.has-border-bottom {
	border-bottom:var(--dashed-border-style);
}
.has-border-top {
	border-top:var(--dashed-border-style);
}
body {
	font-family: var(--primary-font);
	font-weight: 400;
	font-style: normal;
	background-color: var(--bg-dark);
	background-image: 
	radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0),	radial-gradient(rgba(255, 255, 255, 0.03) 1px, var(--bg-dark) 1px);
	background-size: 20px 20px;
	color: var(--primary);
	overflow-x: hidden;
	line-height: 1.6;
	font-size:20px;
}
nav {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(18, 20, 24, 0.95);
	backdrop-filter: blur(8px);
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: var(--dashed-border-style);
}
section {
	padding: 5rem 2rem;
	max-width: 1100px;
	margin: 0 auto;
}

.wavy {
	display: inline-block;
	animation: wavy 1.5s ease infinite;
	transform: translateY(-4px);
}
@keyframes wavy {
	0% {
		transform: translateY(-4px);
	}
	50% {
		transform: translateY(4px);
	}
	100% {
		transform: translateY(-4px); 
	}
}

.logo {
	font-size: 1.4rem;
	color: var(--primary);
	text-transform: uppercase;
	font-family: var(--heading-font);
	text-decoration: none;
	display:flex;
	align-items:center;
}
.nav-links {
	display: flex;
	gap: 2rem;
	font-family: var(--primary-font);
	list-style: none;
}
.nav-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.2s ease;
}
.nav-links a:hover {
	color: var(--primary);
}
.nav-btn {
	background: var(--primary);
	color: var(--bg-dark);
	padding: 0.6rem 1.2rem;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 1px;
	transition: all 0.2s ease;
}
.nav-btn:hover {
	transform: translate(-2px, -2px);
	box-shadow: 5px 5px 0px var(--accent-red);
}

/* stay connected section */
#stay-connected .nav-btn {
	display:flex;
	align-items:center;
	justify-content:center;
}
#stay-connected .card:nth-of-type(1) .nav-btn:hover {
	box-shadow: 5px 5px 0px var(--accent-green);
}
#stay-connected .card:nth-of-type(2) .nav-btn:hover {
	box-shadow: 5px 5px 0px #5865f2;
}
#stay-connected .card:nth-of-type(3) .nav-btn:hover {
	box-shadow: 5px 5px 0px var(--accent-red);
}
.grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.card {
	background: var(--bg-card);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	padding: 2rem;
	position: relative;
	box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.card::before {
	content: '';
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%) rotate(-1deg);
	width: 90px;
	height: 25px;
	background: var(--tape-color);
	border: 1px solid rgba(255,255,255,0.1);
	backdrop-filter: blur(2px);
}

.card-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: block;
}

.card h3 {
	font-family: var(--heading-font);
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 0.8rem;
	font-weight:normal;
}

.card p {
	color: var(--text-muted);
}



/* feature */
header {
	min-height: 95vh;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 4rem 1.5rem;
	overflow: hidden;
	border-bottom: var(--dashed-border-style);
}

.feature-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 1;
	transform: translate(-50%, -50%);
	object-fit: cover;
	filter: brightness(0.6) contrast(1.1);
}
.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(18, 20, 24, 0.4) 0%, rgba(18, 20, 24, 0.85) 100%);
	z-index: 2;
}

.feature-content {
	position: relative;
	z-index: 3;
	max-width: 750px;
	align-items:center;
	display:flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
}
.feature-content .upper-content .dg-icon img {
	max-width:150px;
}
.feature-content .upper-content .dg-logo {
	max-width:450px;
}

.feature-title {
	font-size: clamp(2.6rem, 8vw, 5.5rem);
	text-transform: uppercase;
	color: var(--primary);
	font-weight:normal;
	line-height: 1;
	margin-bottom: 1.5rem;
	font-family: var(--heading-font);
	text-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

.feature-subtitle {
	font-size: 1.55rem;
	color: var(--primary);
	margin-bottom: 2.5rem;
	text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.feature-button {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}
.feature-button iframe {
	width:100%;
	height:45vh;
	min-height:150px;
}

.trailer-btn {
	background: rgba(28, 31, 38, 0.8);
	color: var(--primary);
	border: 2px solid var(--primary);
	border:1px solid rgba(255, 255, 255, 0.08);
	font-size: 1rem;
	font-weight: 900;
	padding: 1rem 2rem;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	backdrop-filter: blur(4px);
	transition: all 0.2s;
}

.trailer-btn:hover {
	background: var(--primary);
	color: var(--bg-dark);
}


.section-title {
	font-family: var(--heading-font);
	text-align: center;
	font-size: clamp(2.6rem, 8vw, 3.5rem);
	font-weight: normal;
	color: var(--primary);
	margin-bottom: 3.5rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
}
.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--accent-red);
	margin: 0.8rem auto 0;
}

footer {
	text-align: center;
	padding: 3rem 1rem;
	border-top: var(--dashed-border-style);
	color: var(--text-muted);
	font-size: 0.85rem;
	background-color: var(--bg-dark);
}



.split-layout {
	width: 100%;
	overflow: hidden;
	background-color: var(--bg-dark);
	padding:0;
	/* border-bottom: var(--dashed-border-style); */
}

.split-row {
	display: flex;
	min-height: 480px;
	align-items: center;
	position: relative;
}

.split-media, .split-content {
	flex: 1;
	width: 50%;
}

.split-media {
	position: relative;
	height: 100%;
	min-height: 480px;
	overflow: hidden;
	flex:2;
}

.split-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.clip-right {
	clip-path: polygon(0 0, 93% 0, 85% 100%, 0 100%);
}

.clip-left {
	clip-path: polygon(15% 0, 100% 0, 100% 100%, 7% 100%);
}

.split-content {
	padding: 60px 80px;
	box-sizing: border-box;
}

.split-content h2 {
	font-family: var(--heading-font);
	font-size: 52px;
	line-height: 0.95;
	letter-spacing: 1px;
	margin: 0 0 20px 0;
	text-transform: uppercase;
	color: var(--primary);
}

.split-content h2 .highlight {
	color: var(--accent-red);
}

.split-content p {
	line-height: 1.6;
	color: var(--text-muted);
	max-width: 480px;
	margin: 0;
}

/* cookie warning */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--bg-card);
	color: var(--primary);
	padding: 10px 16px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	font-size: 11px;
	line-height: 1.4;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
	z-index: 999999;
}

.cookie-text {
	margin: 0;
	flex: 1;
}

.cookie-link {
	color: #ffffff;
	text-decoration: underline;
}

.cookie-actions {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.cookie-btn {
	font-size: 11px;
	padding: 5px 10px;
	border-radius: 3px;
	cursor: pointer;
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
	border: none;
}

.cookie-btn-sec {
	background-color: transparent;
	color: #cccccc;
	border: 1px solid #555555;
}

.cookie-btn-sec:hover {
	background-color: #333333;
	color: #ffffff;
}

.cookie-btn-pri {
	background-color: var(--accent-red);
	color: #ffffff;
}

.cookie-btn-pri:hover {
	background-color: var(--accent-red);
}


/* logo boxes */
.platform-logos,.social-logos {
	display:flex;
	align-items:center;
	gap:1em;
	align-items:center;
	justify-content:center;
	max-width:500px;
	margin-top:3em;
	flex-wrap:wrap;
	justify-self:center;

}


.social-logos {
	max-width:100%;
	margin-top: 5em;
}

.platform-logos a,.social-logos a,.news-link {
	text-decoration: none;
	display: flex;
	background: rgba(28, 31, 38, 0.8);
	height:45px;
	padding:0.5em 0.75em;
	box-sizing:border-box;
	color:#f4ead5;
	font-size:22px;
	border-radius:5px;
	border:1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	text-decoration: none;
	
}
.platform-logos a:hover,.social-logos a:hover,.news-link:hover {
	background: rgb(41, 46, 56);
}
.platform-logos a img {
	max-width:150px;
	object-fit:contain;
	transition:all 0.2s ease;
}
.platform-logos a:hover img {
	scale:1.025;
}

/* news */
.news {
	display: flex;
	flex-direction: row;
	gap: 24px;
	padding: 16px;
	align-items: flex-start;
	justify-self: center;
}
.news-media {
	flex-shrink: 0;
	width: 220px;
	height: 220px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-sizing: border-box;
	overflow: hidden;
}
.news-media img,.news-article img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.news-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

/* .news-article .section-title {
	font-size:3em;
} */
.news-article .news-date {
	text-align:center;
}
.news-article .news-media-article {
	margin-bottom: 2em;
}
.news-article .news-description {
	margin-bottom: 1em;
}

.news-title {
	font-size: 1.7rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin: 0;
	color: var(--primary);
}

.news-description {
	line-height: 1.5;
	margin: 0;
}

.news .nav-btn {
	width:125px;
}

.news-link {
	color: #a53228;
	font-size: 1em;
	align-self: flex-start;
	transition: all 0.2s ease;
	height:auto;
	padding:0.25em 0.5em;
}

.news-link:hover {
	color: #d94336;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 28px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

.menu-toggle span {
	height: 3px;
	width: 100%;
	background-color: #ffffff;
	border-radius: 2px;
}
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(4px);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}
.modal-content {
	background-color: var(--bg-card);
	color: #e6edf3;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	width: 90%;
	max-width: 400px;
	padding: 24px;
	position: relative;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.modal-content .platform-logos {
	margin-top: 1em;
}
.modal-close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: transparent;
	border: none;
	color: #a0aab4;
	font-size: 1.5rem;
	cursor: pointer;
	line-height: 1;
}
.modal-close:hover {
	color: #ffffff;
}
.modal-overlay.is-active {
	display: flex;
}
.separator {
	border-bottom:1px solid white;
	margin:2em 0;
	width:100%;
	line-height:0;
}

/* responsive */
@media (max-width: 1023px) {
	.menu-toggle {
		display: flex;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: rgba(18, 20, 24, 0.95);
		padding: 16px 0;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
		gap:0;
	}

	.nav-links li {
		text-align: center;
	}
	.nav-links li a {
		padding: 10px 0;
		display: block;
	}

	.nav-links.is-active {
		display: flex;
	}

	.menu-toggle.is-active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.menu-toggle.is-active span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.is-active span:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
	}
	.news {
		flex-direction:column;
	}
	.news-media {
		width:100%;
	}
}
@media (max-width: 900px) {
	.split-row, .split-row.reverse {
		flex-direction: column;
	}
	.split-row.reverse .split-content {
		order:2;
	}
	.split-media, .split-content {
		width: 100%;
		min-height: auto;
	}
	.split-media {
		height: 300px;
	}
	.clip-right, .clip-left {
		clip-path: none;
	}
	.split-content {
		padding: 40px 24px;
		flex:none;
	}
	.split-content h2 {
		font-size: 36px;
	}
	.feature-content .upper-content .dg-icon img {
		max-width:35vw;
	}
	.feature-content .upper-content .dg-logo {
		max-width:80vw;
	}
	.grid-3 {
		overflow:hidden;
	}
	.feature-button iframe {
		height:30vh;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
}

@media (max-width: 600px) {
	.cookie-banner {
		flex-direction: column;
		align-items: flex-start;
	}
	.cookie-actions {
		width: 100%;
		justify-content: flex-end;
	}
}