/* GLOBAL */
body {
  font-family: 'Poppins', sans-serif;
  background: #0b0e14;
  color: #fff;
}

/* NAVBAR */
.glass-nav {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

/* HERO */
.hero {
  height: 100vh;
  background: url("../img/background.png") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* SECTIONS */
.section-dark {
  padding: 100px 0;
}

/* GLASS CARD */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  max-width: 900px;
  margin: auto;
}

/* FOOTER */
.footer {
  background: #05070c;
  padding: 40px 0;
}

.footer-link {
  margin: 0 10px;
  color: #aaa;
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
}

/* PROJECT CARDS */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.info-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.tech-badge {
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tech-badge img {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.2));
}

.tech-badge span {
  font-weight: 500;
}

.tech-badge:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.small-hero {
  height: 60vh;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.status {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-inline.dev {
  background: #ff9800;
  color: #000;
}

.status-inline.prototype {
  background: #03a9f4;
  color: #000;
}

.status-inline.released {
  background: #4caf50;
  color: #000;
}

.game-section {
  max-width: 1000px;
  margin: auto;
}

.tech-grid.small {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  margin-top: 20px;
}

.game-section h2 {
  display: flex;
  align-items: center;
  gap: 15px;
}
.game-section {
  max-width: 1000px;
  margin: auto;
}

.tech-grid.small {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  margin-top: 20px;
}

.game-section h2 {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* INLINE STATUS (für Titel) */
.status-inline {
  position: relative;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

