* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #2b2b2b;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.container {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background-color: #3a3a3a;
  position: relative;
}

/* Startseite */
.start-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.start-page h1 {
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.btn-primary {
  background-color: #5a8fd4;
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #4a7fc4;
}

.btn-primary:active {
  background-color: #3a6fb4;
}

/* News Header */
.news-header {
  background-color: #2b2b2b;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  font-style: italic;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Georgia', serif;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  border-radius: 2px;
}

/* Sidemenu */
.sidemenu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100vh;
  background-color: #2b2b2b;
  transition: right 0.3s ease;
  z-index: 200;
  padding: 2rem 1.5rem;
}

.sidemenu.open {
  right: 0;
}

.menu-link {
  display: block;
  color: #5a8fd4;
  text-decoration: none;
  font-size: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid #444;
}

/* News Content */
.news-content {
  padding: 1.5rem;
}

.section-title {
  color: #5a8fd4;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.news-card {
  background-color: #4a4a4a;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.news-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 600;
}

.news-card p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.mehr {
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Livestream */
.livestream {
  margin-top: 2rem;
}

.video-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.video-wrapper img {
  width: 100%;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #2b2b2b;
  padding-left: 8px;
}

.livestream-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-indicator {
  color: #5a8fd4;
  font-size: 1.5rem;
}

/* Footer */
.news-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #555;
  text-align: center;
}

.footer-link {
  display: block;
  color: #cccccc;
  text-decoration: none;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.copyright {
  color: #888;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Fragebogen */
.questionnaire-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.questionnaire-container iframe {
  width: 100%;
  flex: 1;
  border: none;
}

.btn-continue {
  background-color: #5a8fd4;
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1.125rem;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}

.btn-continue:hover {
  background-color: #4a7fc4;
}

.btn-continue:active {
  background-color: #3a6fb4;
}

/* Ranking */
.ranking-section {
  margin-bottom: 2rem;
}

.ranking-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Desktop - Mobile Ansicht emulieren */
@media (min-width: 481px) {
  body {
    background-color: #1a1a1a;
  }

  .container {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  }
}
