* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}


body, html {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #0F0F0F;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 50px;
	padding-right: 50px;
	background: transparent;
	position: absolute;
	width: 100%;
	z-index: 10;
}

header .logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: #FFFFFF;
}

nav a {
	margin-left: 25px;
	text-decoration: none;
	color: #FFFFFF;
	font-weight: 500;
	transition: color 0.3s;
}

nav a:hover, nav a.active {
	color: rgba(255, 255, 255, 0.623);
}

.btn-login {
	padding: 8px 16px;
	border: 2px solid #59638b;
	border-radius: 6px;
	background: #59638b;
	color: #fff;
	margin-left: 15px;
	font-weight: 600;
	transition: all 0.3s;
}

.btn-login:hover {
	background: #fff;
	color: #59638b;
}

.hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100vh;
	padding-left: 8%;
	background: #0F0F0F;
	color: #fff;
	position: inherit;
	overflow: hidden;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
	color: #FFFFFF;
}

.hero p {
	font-size: 1.1rem;
	margin-bottom: 30px;
	max-width: 500px;
	color: #D0D0D0;
}

.hero .hero-buttons a {
	text-decoration: none;
	padding: 12px 30px;
	margin-right: 15px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hero .btn-primary {
	background: #FF7A1A;
	color: #FFFFFF;
	border: 1px solid #FF7A1A;
}

.hero .btn-primary:hover {
	background: #E56B17;
}

.hero .btn-secondary {
	background: #1F1F1F;
	color: #D0D0D0;
	border: 1px solid #333333;
}

.hero .btn-secondary:hover {
	background: #2A2A2A;
}

.tos-box {
  background: #151515;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #2A2A2A;
  color: #333;
  max-width: 800px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
}
.tos-box:nth-child(4) { animation-delay: 1.0s; }

.circle {
	position: absolute;
	border-radius: 50%;
	background: #5e5e5e;
	mix-blend-mode: overlay;
	z-index: 0;
}

.circle.one {
	width: 200px;
	height: 200px;
	top: -50px;
	right: 50px;
	background: #5e5e5e;
}

.circle.two {
	width: 300px;
	height: 300px;
	bottom: -100px;
	left: -100px;
	background: #5e5e5e;
}

.circle.three {
	width: 150px;
	height: 150px;
	top: 200px;
	left: 60%;
	background: #5e5e5e;
}

footer {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	color: #D0D0D0;
	font-size: 0.9rem;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

@keyframes fadeUp {
	0% { opacity: 0; transform: translateY(30px); }
	100% { opacity: 1; transform: translateY(0); }
}

.hero h1,
.hero p,
.hero .hero-buttons {
	opacity: 0;
	animation: fadeUp 1s ease-out forwards;
}

.hero h1 { animation-delay: 0.2s; }
.hero p { animation-delay: 0.4s; }
.hero .hero-buttons { animation-delay: 0.6s; }

@media (max-width: 900px) {
	.hero {
		align-items: center;
		text-align: center;
		padding-left: 0;
		padding: 0 20px;
	}
	.hero h1 { font-size: 2.2rem; }
	.hero p { max-width: 100%; }
	header { padding: 15px 20px; }
}

@media (max-width: 500px) {
	.hero h1 { font-size: 1.8rem; }
	.hero .hero-buttons a {
		margin-bottom: 10px;
		display: inline-block;
	}
	.circle { display: none; }
}

@media (max-width: 768px) {
	header {
		padding: 15px 20px;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		position: relative;
	}
	nav a {
		margin-left: 15px;
		font-size: 0.9rem;
	}
	.hero {
		padding: 0 20px;
		text-align: center;
		height: auto;
		padding-top: 120px;
		padding-bottom: 80px;
	}
	.hero h1 { font-size: 2rem; }
	.hero .hero-buttons {
		display: flex;
		flex-direction: column;
		width: 100%;
		align-items: center;
		gap: 12px;
	}
	.hero .hero-buttons a {
		width: 100%;
		max-width: 260px;
		text-align: center;
	}
	footer {
		font-size: 0.8rem;
		width: 100%;
		text-align: center;
		bottom: 10px;
	}
}

@media (max-width: 430px) {
	header .logo { font-size: 1.4rem; }
	nav a {
		margin-left: 10px;
		font-size: 0.8rem;
	}
	.hero h1 {
		font-size: 1.6rem;
		line-height: 1.3;
	}
	.hero p { font-size: 0.95rem; }
	.hero .hero-buttons a {
		padding: 10px 20px;
		font-size: 0.9rem;
	}
	footer { font-size: 0.75rem; }
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 50;
}

.hamburger span {
	width: 30px;
	height: 3px;
	background: white;
	border-radius: 3px;
	transition: 0.4s ease;
}

.hamburger.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.4);
	backdrop-filter: blur(2px);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s ease;
	z-index: 30;
}

.overlay.show {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 768px) {
	.hamburger { display: flex; }
	nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: rgba(20, 25, 40, 0.92);
		backdrop-filter: blur(10px);
		flex-direction: column;
		gap: 18px;
		padding: 0;
		overflow: hidden;
		max-height: 0;
		opacity: 0;
		transition: max-height 0.45s ease, opacity 0.35s ease;
		z-index: 40;
	}
	nav.open {
		padding: 20px 0 30px 0;
		max-height: 400px;
		opacity: 1;
	}
	nav a {
		color: white;
		font-size: 1rem;
		text-align: center;
		padding: 10px 0;
		margin: 0;
		width: 100%;
	}
	.btn-login {
		width: 100%;
		margin: 0;
		border-color: white;
		background: rgba(255,255,255,0.15);
		text-align: center;
	}
	header {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.dropdown-menu {
	display: none;
	flex-direction: column;
	width: 100%;
	background: rgba(0, 0, 0, 0.8);
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease;
}

.dropdown-menu.open {
	display: flex;
	max-height: 500px;
}

.dropdown-menu a {
	display: block;
	width: 100%;
	padding: 12px 20px;
	color: #fff;
	text-decoration: none;
	background: rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu a:hover {
	background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
	#navMenu, header nav {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 0 !important;
		width: 100% !important;
	}
	#navMenu a, header nav a {
		display: block !important;
		width: 100% !important;
		margin-left: 0 !important;
		padding: 14px 20px !important;
		box-sizing: border-box !important;
		text-align: center !important;
		border-bottom: 1px solid rgba(255,255,255,0.06) !important;
		color: #fff !important;
	}
	#navMenu a.btn-login, header nav a.btn-login {
		background: rgba(255,255,255,0.12) !important;
		border-color: rgba(255,255,255,0.18) !important;
		margin-left: 0 !important;
	}
	#navMenu {
		max-height: 0 !important;
		overflow: hidden !important;
		transition: max-height 0.45s ease, opacity 0.35s ease;
	}
	#navMenu.open {
		max-height: 500px !important;
		opacity: 1 !important;
	}
}
