* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right top, #0f2027, #203a43, #2c5364);
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
}
.navbar nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.navbar a:hover {
  color: #f90;
}
.cta-btn {
  background-color: #f90;
  color: #232f3e;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
.cta-btn:hover {
  background-color: #ffaa00;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
}
.hero-button {
  background-color: #f90;
  color: #232f3e;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.hero-button:hover {
  background-color: #ffaa00;
}

/* Sections */
.section {
  max-width: 850px;
  margin: 60px auto;
  padding: 40px 30px;
  text-align: center;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.section p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Create Account Form */
.create-account form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}
.create-account input {
  width: 300px;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}
.create-account button {
  background-color: #f90;
  color: #232f3e;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.create-account button:hover {
  background-color: #ffaa00;
}

/* Confirmation Message */
.success {
  text-align: center;
  margin-top: 30px;
}
.success h2 {
  color: #00ffae;
  margin-bottom: 15px;
}
.hidden {
  display: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.05);
}
