:root {
	--bg-color: #0b0e14;
	--surface-color: #161b22;
	--primary-color: #7289da;
	--accent-color: #00f2ff;
	--text-main: #ffffff;
	--text-muted: #a3a3a3;
	--gradient: linear-gradient(135deg, #7289da 0%, #00f2ff 100%);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
	background-color: var(--bg-color);
	color: var(--text-main);
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
	font-family: 'Orbitron', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.header {
	height: 80px;
	display: flex;
	align-items: center;
	position: fixed;
	width: 100%;
	top: 0;
	background: rgba(11, 14, 20, 0.9);
	backdrop-filter: blur(10px);
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.logo {
	font-weight: bold;
	font-size: 1.5rem;
}

.logo span {
	color: var(--accent-color);
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 30px;
}

.nav-links a {
	text-decoration: none;
	color: var(--text-muted);
	transition: 0.3s;
}

.nav-links a:hover {
	color: var(--accent-color);
}

/* Buttons */
.btn {
	padding: 12px 25px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	transition: 0.3s;
	font-family: 'Orbitron', sans-serif;
	font-size: 0.8rem;
}

.btn-primary {
	background: var(--gradient);
	color: white;
}

.btn-primary:hover {
	box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	border: 1px solid var(--primary-color);
	color: white;
}

/* Hero Section */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	background: url('./slider.png');
	background-color: radial-gradient(circle at top right, #1d263b, var(--bg-color));
	padding-top: 80px;
}

.hero h1 {
	font-size: 4rem;
	margin-bottom: 20px;
}

.text-gradient {
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero p {
	font-size: 1.2rem;
	color: var(--text-muted);
	max-width: 600px;
	margin-bottom: 40px;
}

.hero-btns {
	display: flex;
	gap: 20px;
}

/* Features */
.features {
	padding: 100px 0;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 60px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.feature-card {
	background: var(--surface-color);
	padding: 40px;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: 0.3s;
}

.feature-card:hover {
	border-color: var(--accent-color);
	transform: translateY(-10px);
}

.feature-card .icon {
	font-size: 3rem;
	margin-bottom: 20px;
}

/* Stats */
.stats {
	background: var(--surface-color);
	padding: 80px 0;
}

.stats-flex {
	display: flex;
	justify-content: space-around;
	text-align: center;
}

.stat-item .number {
	font-size: 3rem;
	font-weight: bold;
	color: var(--accent-color);
	font-family: 'Orbitron', sans-serif;
}

/* CTA */
.cta {
	padding: 100px 0;
	text-align: center;
	background:
		linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
		url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1500&q=80');
	background-size: cover;
	background-attachment: fixed;
}

.footer {
	padding: 40px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-muted);
}

/* Animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}
