/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  padding: 20px;
}

/* Navigation */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #1e1e2f;
  border-radius: 12px;
  margin-bottom: 30px;
}

.logo {
  height: 40px;
}

.hamburger {
  font-size: 26px;
  background: none;
  border: none;
  color: #e0e0e0;
  cursor: pointer;
  display: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 18px;
}

.nav-menu li a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #7db9ff;
}

.nav-menu.active {
  display: block;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    margin-top: 15px;
  }
}

/* Page Content */
.content-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Back Button */
.back-button {
  display: inline-block;
  margin-bottom: 25px;
  text-decoration: none;
  color: #7db9ff;
  font-size: 16px;
  transition: color 0.3s;
}

.back-button:hover {
  color: #ffa6c9;
}

/* Software Hero Section */
.software-hero {
  text-align: center;
  margin-bottom: 40px;
}

.software-logo {
  width: 100px;
  height: 100px;
  border-radius: 18px;
  margin-bottom: 15px;
}

.software-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.software-hero h1 a {
  color: #e0e0e0;
  text-decoration: none;
}

.software-hero h1 a:hover {
  color: #7db9ff;
}

.software-hero p {
  font-size: 18px;
  color: #b0b0b0;
}

/* Software Sections */
.software-section {
  margin-bottom: 40px;
}

.software-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ffa6c9;
}

.software-section ul {
  list-style: none;
  padding-left: 0;
}

.software-section ul li {
  margin-bottom: 10px;
  font-size: 18px;
}

.software-section a {
  color: #7db9ff;
  text-decoration: underline;
}

.software-section pre {
  background-color: #1e1e2f;
  padding: 14px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 15px 0;
  font-size: 16px;
  color: #e0e0e0;
}

/* Copy Button */
#copy-btn {
  background-color: #7db9ff;
  color: #121212;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

#copy-btn:hover {
  background-color: #ffa6c9;
}
