* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0f172a;
  color: #ffffff;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background-color: rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #38bdf8;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #38bdf8;
}

.nav-links .landing {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer
}

.hero {
  min-height: 100vh;
  background: linear-gradient(to right, #0f172a, #1e293b);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 40px;
  padding: 80px 8%;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #38bdf8;
  color: #0f172a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.section {
  padding: 80px 8%;
}

.about-section,
.learn-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.section-text h2,
.features-section h2,
.learn-section h2,
.creator-card h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #38bdf8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background-color: #1e293b;
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  margin: 20px 0 10px;
  color: #38bdf8;
}

.learn-section ul {
  margin-top: 20px;
  padding-left: 20px;
}

.learn-section li {
  margin-bottom: 10px;
}

.creator-section {
  text-align: center;
}

.creator-card {
  background-color: #1e293b;
  padding: 40px;
  border-radius: 16px;
  max-width: 800px;
  margin: auto;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #020617;
}

.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.feature-card,
.section-image,
.hero-image,
.creator-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }
}