/* Grundlegende Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0d0d0d;
  color: white;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #8defff;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffffff;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background-color: #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #8defff;
}

nav a {
  margin-left: 2rem;
  font-weight: 500;
}

.btn {
  background: #8defff;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.btn:hover {
  background: #6cc9e7;
}

/* Hero Sektion */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(to right, #101010, #1a1a1a);
  animation: slideUp 1s ease-out;
}

.small-hero {
  padding: 4rem 2rem;
  background: linear-gradient(to right, #111, #1a1a1a);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto;
}

.cta-button {
  margin-top: 2rem;
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #8defff;
  color: #000;
  border-radius: 15px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  transform: scale(1.05);
}

/* Allgemeine Sektionen */
section {
  padding: 5rem 2rem;
  text-align: center;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature.card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(141, 239, 255, 0.1);
  transition: transform 0.3s ease;
  cursor: default;
}

.feature.card:hover {
  transform: translateY(-5px);
}

.feature.card h3 {
  margin-top: 0;
  color: #8defff;
}

.feature.card p {
  margin-top: 0.5rem;
  line-height: 1.4;
  color: #ccc;
}

/* Stats Grid */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-box {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 12px rgba(141, 239, 255, 0.08);
  transition: transform 0.3s ease;
  cursor: default;
}

.stat-box:hover {
  transform: translateY(-4px);
}

.stat-box h3 {
  margin: 0 0 0.5rem 0;
  color: #8defff;
}

.stat-box p {
  margin: 0;
  color: #ccc;
  line-height: 1.3;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #101010;
  font-size: 0.9rem;
  color: #999;
}

footer a {
  color: #666;
  margin: 0 0.5rem;
}

footer a:hover {
  color: #8defff;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide Up Animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Changelog Styles */
.changelog-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: left;
  position: relative;
}

.changelog-entry {
  background: #1a1a1a;
  border-left: 4px solid #8defff;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(141, 239, 255, 0.1);
  animation: slideUp 0.6s ease forwards;
}

.changelog-entry h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #8defff;
}

.changelog-entry small {
  color: #888;
  font-size: 0.9rem;
}

.changelog-entry ul {
  padding-left: 1.2rem;
  margin: 0;
  list-style-type: '📌 ';
  color: #ccc;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 1rem;
  }
  nav a {
    margin-left: 1rem;
    margin-top: 0.5rem;
  }
  .feature-grid, .stats {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .cta-button {
    width: 100%;
    padding: 1rem 0;
  }
}
