/* === Global Styles === */
body {
  background-color: #2e3440;
  font-family: 'Inter', sans-serif;
  color: #d8dee9;
  margin: 0;
  padding: 0;
}

a {
  color: #8fbcbb;
  text-decoration: underline;
  transition: color 0.3s ease;
}

a:hover {
  color: #88c0d0;
}

/* === Section Wrapper === */
.section {
  padding: 4rem 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === App Card === */
.app-card {
  background-color: #3b4252;
  border: 1px solid #4c566a;
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 800px;
  margin: 1.5rem auto;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.app-card h2 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #81a1c1;
}

.version {
  font-size: 0.85rem;
  color: #e5e9f0;
  margin-bottom: 0.75rem;
}

.description {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* === Action Buttons === */
.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  background-color: #88c0d0;
  color: #2e3440;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #81a1c1;
}

.download {
  background-color: #a3be8c;
}

.download:hover {
  background-color: #8fbcbb;
}

/* === Documentation Layout === */
.doc-section {
  padding: 4rem 2rem;
  background-color: #2e3440;
  color: #d8dee9;
  display: flex;
  justify-content: center;
}

.doc-container {
  max-width: 800px;
  width: 100%;
  line-height: 1.8;
  font-size: 1rem;
}

/* === Documentation Headings === */
.doc-container h1,
.doc-container h2 {
  font-family: 'JetBrains Mono', monospace;
  color: #88c0d0;
  margin-bottom: 0.5rem;
}

/* === Inline Tags and Highlighting === */
.tag {
  font-weight: bold;
  color: #81a1c1;
}

/* === Inline Code === */
code {
  font-family: 'JetBrains Mono', monospace;
  background-color: #3b4252;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  color: #eceff4;
}

/* === Code Blocks === */
pre {
  background-color: #3b4252;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin-top: 1rem;
  color: #eceff4;
}
