@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* Grundlayout */
body {
  margin: 0;
  font-family: 'Press Start 2P', monospace;
  background-color: #000;
  color: #fff;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1rem;
  color: #aaa;
}

/* Link-Segmente */
.link-segment {
  border: 1px solid #333;
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.link-segment img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.link-segment h2 {
  margin: 0.5rem 0;
  font-size: 1.3rem;
}

.link-segment p {
  color: #ccc;
  margin-bottom: 1rem;
}

.link-segment a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.link-segment a:hover {
  background-color: #ccc;
}

/* Text-Segmente */
.text-block {
  border-top: 1px solid #222;
  padding-top: 1rem;
}

.text-block h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.text-block p {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.5;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin-top: 1rem;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Responsivität */
@media (max-width: 600px) {
  .container {
    padding: 0.8rem;
  }

  .link-segment h2,
  .text-block h2 {
    font-size: 1.1rem;
  }

  .link-segment a {
    font-size: 0.95rem;
  }
}