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

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(to bottom, #0d1624 0%, #2e77ee 100%);
  background-attachment: fixed;
  color: #f1f5f9;
}

* {
  box-sizing: border-box;
}

#tsparticles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  pointer-events: none;
}

nav {
  position: fixed;
  width: 100%;
  background: rgba(18, 26, 48, 0.9);
  backdrop-filter: blur(8px);
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3b82f6;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #60a5fa;
}

section {
  min-height: 100vh;
  padding: 10rem 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 2;
  color: white;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

p, li {
  font-size: 1.8rem;
  line-height: 1.2;
  color: #e2e8f0;
  max-width: 900px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.name {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
}

.name a {
  color: #60a5fa;
  text-decoration: none;
}

.name a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 1rem;
}

.countdown {
  font-size: 1.5rem;
  margin: 2rem 0;
  color: #93c5fd;
}

.email-form {
  margin-top: 1.5rem;
}

.email-form input {
  background: none;
  border: none;
  border-bottom: 2px solid #00112c;
  color: white;
  font-size: 1.2rem;
  padding: 0.5rem;
  text-align: center;
  width: 280px;
}

.email-form input::placeholder {
  color: #f5f6f8;
}

.email-form button {
  background-color: #3b82f6;
  color: white;
  border: none;
  margin-left: 1rem;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
}

footer {
  background: transparent;
  color: #d1d5db;
  font-size: 1rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
