/* GENERAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0b1a2f; /* Dark blue background */
  color: #f0f0f0; /* Light text */
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: #132f5b; /* Darker navbar */
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar .nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar .nav-links a:hover {
  color: #00d4ff; /* Accent cyan */
}

/* SECTION STYLING */
.section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* SHOWCASE */
.showcase {
  text-align: center;
}

.showcase h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.showcase p {
  font-size: 1.25rem;
  color: #cfd8e5;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  color: #0b1a2f;
  background-color: #00d4ff; /* Accent button */
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #0096b8;
}

/* FEATURES */
.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #132f5b; /* Slightly lighter than body */
  padding: 2rem;
  border-radius: 1rem;
  width: 280px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,212,255,0.3);
}

.card h3 {
  margin-bottom: 1rem;
  color: #00d4ff;
}

.card p {
  color: #cfd8e5;
}

/* PATCH NOTES */
.patches h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.patch-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.patch-card {
  background: #132f5b;
  border-radius: 1rem;
  padding: 2rem;
  width: 350px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.patch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,212,255,0.3);
}

.patch-card h3 {
  margin-bottom: 1rem;
  color: #00d4ff;
}

.patch-card ul {
  list-style: disc inside;
  color: #cfd8e5;
}

/* FOOTER */
.footer {
  background: #132f5b;
  padding: 2rem;
  text-align: center;
  color: #a0b4cc;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cards, .patch-cards {
    flex-direction: column;
    align-items: center;
  }

  .navbar .nav-links {
    gap: 1rem;
  }
}