/* ========= Base Styles ========= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.about-page {
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at top, #0d0d1a, #000);
  color: #e0e0e0;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========= Top Menu ========= */
.top-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(10, 10, 25, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: #4dd0e1;
}

.menu-links {
  display: flex;
  gap: 1.5rem;
}

.menu-links a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-links a:hover {
  color: #4dd0e1;
}

/* ========= About Container ========= */
.about-container {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;
  background: rgba(20, 20, 40, 0.7);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.about-container h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #4dd0e1;
  text-shadow: 0 0 10px rgba(77, 208, 225, 0.7);
}

.about-container p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #ddd;
}

/* ========= Footer ========= */
.footer {
  text-align: center;
  padding: 1rem;
  margin-top: auto;
  background: rgba(10, 10, 25, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #aaa;
}

.footer p {
  margin: 0;
}

/* ========= Responsive ========= */
@media (max-width: 768px) {
  .top-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-links {
    margin-top: 0.8rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .about-container {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  .about-container h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .logo a {
    font-size: 1.1rem;
  }

  .menu-links a {
    font-size: 0.85rem;
  }

  .about-container {
    padding: 1rem;
  }

  .about-container h1 {
    font-size: 1.6rem;
  }
}
