/* Backdraft.gg Styles - Forked from Legacy Labs */

/* CSS Variables */
:root {
	--bd-bg-primary: #000000;
	--bd-bg-secondary: #0a0a0a;
	--bd-text-primary: #f6f4fa;
	--bd-text-secondary: rgba(255, 255, 255, 0.7);
	--bd-accent-primary: #00cacb;
	--bd-accent-secondary: #6422f1;
	--bd-font-heading: 'Bebas Neue', sans-serif;
	--bd-font-body: 'Open Sans', sans-serif;
}

/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bd-bg-primary);
	font-family: var(--bd-font-body);
	color: var(--bd-text-primary);
	font-size: 16px;
	line-height: 1.5;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Hide scrollbar */
::-webkit-scrollbar {
	display: none;
	width: 0px;
}

* {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

/* Typography */
h1, h2, h3, h4 {
	font-family: var(--bd-font-heading);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}

h1 {
	font-size: 72px;
	line-height: 1.1;
}

h2 {
	font-size: 48px;
	line-height: 1.2;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 200ms ease;
}

/* Navbar */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
}

.navbar-wrapper {
	max-width: 1280px;
	margin: 0 auto;
	padding: 15px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-logo-link {
	display: flex;
	align-items: center;
}

.navbar-logo-img {
	height: 50px;
	width: auto;
}

.navbar-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* Store Button */
.store-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	border-radius: 8px;
	font-family: var(--bd-font-body);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 200ms ease;
}

.store-button.epic {
	background-color: #fff;
	color: #000;
}

.store-button.epic:hover {
	background-color: var(--bd-accent-primary);
	transform: translateY(-2px);
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('/images/hero-background.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

.hero-background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	z-index: 1;
	margin-top: -10vh;
}

.hero-logo {
	max-width: 600px;
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.hero-tagline {
	font-size: 24px;
	color: var(--bd-text-secondary);
	margin-bottom: 40px;
	letter-spacing: 2px;
}

.hero-content .social-links {
	margin-top: 50px;
	justify-content: center;
}

/* CTA Button */
.cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 48px;
	background-color: var(--bd-accent-primary);
	color: #000;
	font-family: var(--bd-font-body);
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all 200ms ease;
	box-shadow: 0 0 30px rgba(0, 202, 203, 0.3);
}

.cta-button:hover {
	background-color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 0 40px rgba(0, 202, 203, 0.5);
}

.cta-button.disabled {
	background-color: rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.7);
	cursor: default;
	box-shadow: none;
}

.cta-button.disabled:hover {
	background-color: rgba(255, 255, 255, 0.15);
	transform: none;
	box-shadow: none;
}

/* Social Section */
.social-section {
	padding: 80px 40px;
	background-color: var(--bd-bg-secondary);
	text-align: center;
}

.social-heading {
	margin-bottom: 40px;
	color: var(--bd-text-primary);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	max-width: 800px;
	margin: 0 auto;
}

.social-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 150px;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	transition: all 200ms ease;
}

.social-card:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: var(--bd-accent-primary);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 202, 203, 0.2);
}

.social-card::before {
	content: '';
	width: 48px;
	height: 48px;
	margin-bottom: 12px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: brightness(0) invert(1);
	opacity: 0.8;
}

.social-card:hover::before {
	opacity: 1;
}

.social-card.discord::before {
	background-image: url('/images/icons/discord.svg');
}

.social-card.reddit::before {
	background-image: url('/images/icons/reddit.svg');
}

.social-card.tiktok::before {
	background-image: url('/images/icons/tiktok.svg');
}

.social-card.instagram::before {
	background-image: url('/images/icons/instagram.svg');
}

.social-card-name {
	font-family: var(--bd-font-heading);
	font-size: 18px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Footer */
.footer {
	margin-top: auto;
	background-color: var(--bd-bg-primary);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-wrapper {
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px;
}

.footer-internal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-social-links {
	display: flex;
	gap: 20px;
}

.footer-social-link {
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.7;
	transition: opacity 200ms ease;
}

.footer-social-link:hover {
	opacity: 1;
}

.footer-social-link.discord {
	background-image: url('/images/icons/discord.svg');
}

.footer-social-link.reddit {
	background-image: url('/images/icons/reddit.svg');
}

.footer-social-link.tiktok {
	background-image: url('/images/icons/tiktok.svg');
}

.footer-social-link.instagram {
	background-image: url('/images/icons/instagram.svg');
}

.footer-right-wrap {
	text-align: right;
}

.footer-copyright {
	color: var(--bd-text-secondary);
	font-size: 14px;
}

.footer-divider {
	margin: 0 8px;
	opacity: 0.5;
}

.footer-privacy-link {
	color: var(--bd-text-secondary);
}

.footer-privacy-link:hover {
	color: var(--bd-accent-primary);
}

/* Privacy Page */
.privacy-page {
	padding: 120px 40px 80px;
	max-width: 800px;
	margin: 0 auto;
}

.privacy-page h1 {
	margin-bottom: 40px;
}

.privacy-page h2 {
	font-size: 32px;
	margin-top: 40px;
	margin-bottom: 20px;
}

.privacy-page p {
	margin-bottom: 16px;
	color: var(--bd-text-secondary);
}

.privacy-page ul {
	margin-bottom: 16px;
	padding-left: 24px;
}

.privacy-page li {
	margin-bottom: 8px;
	color: var(--bd-text-secondary);
}

/* Responsive */
@media screen and (max-width: 768px) {
	.navbar-wrapper {
		padding: 12px 20px;
	}

	.navbar-logo-img {
		height: 40px;
	}

	.hero {
		padding: 100px 20px 60px;
	}

	.hero-logo {
		max-width: 300px;
	}

	.hero-tagline {
		font-size: 18px;
	}

	.cta-button {
		padding: 16px 32px;
		font-size: 16px;
	}

	.social-section {
		padding: 60px 20px;
	}

	.social-links {
		gap: 16px;
	}

	.social-card {
		width: 120px;
		height: 120px;
	}

	.social-card::before {
		width: 36px;
		height: 36px;
	}

	.footer-wrapper {
		padding: 30px 20px;
	}

	.footer-internal {
		flex-direction: column;
		text-align: center;
	}

	.footer-right-wrap {
		text-align: center;
	}

	h1 {
		font-size: 48px;
	}

	h2 {
		font-size: 36px;
	}
}

@media screen and (max-width: 480px) {
	.social-card {
		width: 100px;
		height: 100px;
	}

	.social-card::before {
		width: 28px;
		height: 28px;
		margin-bottom: 8px;
	}

	.social-card-name {
		font-size: 14px;
	}

	.store-button {
		padding: 10px 20px;
		font-size: 12px;
	}
}
