@font-face {
  font-family: 'ProximaNova';
  src: url('fonts/proximanova_regular.woff2') format('woff2'),
       url('fonts/proximanova_regular.woff') format('woff'),
       url('fonts/proximanova_regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary-color: #DE004E;
  --primary-color-dark: #b1003e;
}

/* Base Styles */
html, body {
  font-family: 'ProximaNova';
  margin: 0;
  padding: 0;
  background-color: #0e0e0e;
  overflow-x: hidden;
}

/* Background Sections */
.hintergrund div {
  filter: opacity(0.5) saturate(0);
  background-repeat: no-repeat;
  background-position: center; 
  background-size: cover;            
  width: 100%;
  background-blend-mode: multiply;
}

.hg-oben {
  background-image:
    url('content/top.jpg'),
    linear-gradient(to bottom, rgba(0,0,0,0), rgba(14,14,14,1));
  height: 1080px;
}

.hg-mitte {
  background-image:
    linear-gradient(to top, rgba(0,0,0,0), rgba(14,14,14,1)),
    url('content/center.jpg'),
    linear-gradient(to bottom, rgb(0,0,0,0), rgba(14,14,14,1));
  height: 1080px;
  position: relative;
  filter: none;
}

.hg-unten {
  background-image:
    linear-gradient(to top, rgba(0,0,0,0), rgba(14,14,14,1)),
    url('content/bottom.jpg'),
    linear-gradient(to bottom, rgba(0,0,0,0), rgba(14,14,14,1));
  height: 1080px;
  position: relative;
}

.hg-unten::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(14,14,14,0), #0e0e0e);
  z-index: 5;
}

/* Footer Styles */
.site-footer {
  background-color: #0a0a0a; /* Dunkler Hintergrund für den Footer */
  color: #ccc; /* Helle Textfarbe für guten Kontrast */
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #222; /* Dezente Trennlinie zum Hauptinhalt */
  margin-top: 50px; /* Etwas Abstand zum darüberliegenden Inhalt */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center; /* Zentriert die Links im Footer */
  align-items: center;
}

.footer-content a {
  color: #ccc; /* Standardfarbe der Links */
  text-decoration: none;
  margin: 0 15px; /* Abstand zwischen den Links */
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: var(--primary-color); /* Farbänderung beim Hover, nutzt die Primärfarbe der Seite */
  text-decoration: underline; /* Unterstreichung beim Hover zur besseren Erkennbarkeit */
}

/* Header Navigation */
.hauptkopfzeile {
  width: 100%;
  padding: 50px 0;
  background-color: transparent;
  position: absolute;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  position: relative;
}

.logo-watermark {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  position: absolute;
  left: -20%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.logo-text {
  color: white;
  transition: color 0.3s ease;
}

.logo-watermark:hover .logo-text {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  font-family: ProximaNova;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 100%;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* Removed intro-container styles */

/* Carousel Styles */
.karussell-wrapper {
  position: absolute;
  top: calc(1080px + 50%);
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 100;
}

.karussell-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  position: relative;
  z-index: 10;
}

.karussell-slide {
  display: none;
  width: 100%;
}

.karussell-slide.aktiv {
  display: block;
}

.karussell-inhalt {
  display: flex;
  align-items: stretch;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
}

.karussell-text {
  flex: 1;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  margin-right: 40px;
}

.karussell-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.karussell-text p {
  font-size: 16px;
  line-height: 1.6;
}

.karussell-bild {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.karussell-bild img, .karussell-bild video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.karussell-vorschaubilder {
  margin-top: 30px;
}

.vorschaubild-container {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.vorschaubild {
  flex: 0 0 213px;
  height: 120px;
  width: 213px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  /* cursor: pointer; */ /* Remove this line to change cursor from pointer to default */
  transition: transform 0.3s;
}

.vorschaubild:hover {
  transform: translateY(-5px);
}

.vorschaubild img, .vorschaubild video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vorschaubild-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 10px;
  color: white;
  font-weight: 600;
}

.karussell-container,
.karussell-container * {
  filter: none !important;
  opacity: 1 !important;
}

/* Game Start Section */
.spielstart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  color: white;
  position: absolute;
  top: 2160px;
  left: 0;
  right: 0;
  z-index: 10;
}

.spielstart-bereich h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.spielstart-bereich > p {
  font-size: 16px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.7);
}

.schritte-container {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.schritt-karte {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s, border-color 0.3s;
}

.schritt-karte:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.schritt-icon {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schritt-icon img {
  max-width: 100%;
  max-height: 100%;
}

.schritt-inhalt {
  flex-grow: 1;
}

.schritt-inhalt h3 {
  font-size: 18px;
  margin: 0 0 5px 0;
}

.schritt-inhalt p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.schritt-button {
  background-color: #DE004E;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
}

.schritt-button:hover {
  background-color: #b1003e;
}

/* Social Media Section */
.sozial-bereich {
  margin-bottom: 60px;
}

.sozial-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.sozial-icon {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: transform 0.3s, border-color 0.3s, background-color 0.3s;
}

.sozial-icon:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.sozial-icon img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.sozial-icon.discord {
  background-color: rgba(88, 101, 242, 0.2);
}
.sozial-icon.discord:hover {
  background-color: rgba(88, 101, 242, 0.8);
}

.sozial-icon.tiktok {
  background-color: rgba(0, 0, 0, 0.2);
}
.sozial-icon.tiktok:hover {
  background-color: rgba(0, 0, 0, 0.8);
  border-color: rgba(254, 44, 85, 0.8);
}

.sozial-icon.youtube {
  background-color: rgba(255, 0, 0, 0.2);
}
.sozial-icon.youtube:hover {
  background-color: rgba(255, 0, 0, 0.8);
}

.sozial-icon.twitter {
  background-color: rgba(29, 161, 242, 0.2);
}
.sozial-icon.twitter:hover {
  background-color: rgba(29, 161, 242, 0.8);
}

.sozial-icon.instagram {
  background-color: rgba(225, 48, 108, 0.2);
}
.sozial-icon.instagram:hover {
  background-color: rgba(225, 48, 108, 0.8);
}

/* FAQ Section */
.faq-bereich {
  margin-bottom: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.faq-eintrag {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s, border-color 0.3s;
}

.faq-eintrag:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.faq-eintrag h3 {
  font-size: 16px;
  margin: 0 0 10px 0;
  color: rgba(255, 255, 255, 0.9);
}

.faq-eintrag p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

/* Contact Section */
.kontakt-bereich {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 50px;
  margin-bottom: 40px;
}

.kontakt-link {
  color: #DE004E;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.kontakt-link:hover {
  color: #b1003e;
  text-decoration: underline;
}

/* Footer */
.hauptfusszeile {
  position: relative;
  bottom: 0;
  margin-top: 0;
  background-color: #0e0e0e;
  padding: 30px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #ffffff40;
  font-size: 12px;
  font-weight: 600;
  width: calc(100% - 40px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1000;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-link:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -15px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.hauptfusszeile .disclaimer-text-links {
  text-align: left;
  margin: 0;
}

.hauptfusszeile .disclaimer-text-mitte {
  text-align: center;
  margin: 0;
  flex-grow: 1;
}

/* Legal Pages Styles */
.legal-page-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 50px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: rgba(14, 14, 14, 0.95);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  color: white;
  line-height: 1.6;
}

.legal-content h1 {
  color: var(--primary-color);
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 15px;
}

.legal-content h2 {
  color: var(--primary-color);
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content h3 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.legal-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.back-link {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  display: inline-block;
}

.back-link a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Charakter-Auswahl Styles */
.charakter-auswahl-container {
  align-items: center;
  display: flex;
  flex-direction: row;
  height: 600px;
  justify-content: center;
  left: 119px;
  margin: 0 auto;
  max-width: 1681px;
  position: absolute;
  right: 119px;
  top: 156px;
  z-index: 1;
}

.charakter-seite {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.5s ease;
}

.charakter-bild {
  width: 300px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: none; /* Removed the border */
  position: relative;
  transition: all 0.3s ease;
  z-index: 10; /* Added z-index to place it in front of hologram */
}

.charakter-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.charakter-seite:hover .charakter-bild img {
  filter: saturate(1);
  opacity: 1;
  transform: scale(1.05);
}

.hologramm-container {
  position: absolute;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 5; /* Added z-index to ensure it stays behind character */
}

.hologramm-container.links {
  left: -100px; /* Changed from -200px to bring it closer to center */
  top: 50%;
  transform: translateY(-50%);
}

.hologramm-container.rechts {
  right: -100px; /* Changed from -200px to bring it closer to center */
  top: 50%;
  transform: translateY(-50%);
}

.charakter-seite:hover .hologramm-container {
  opacity: 1;
}

.charakter-seite.links:hover .hologramm-container.links {
  left: 50px; /* Changed from 150px to bring it closer to center */
}

.charakter-seite.rechts:hover .hologramm-container.rechts {
  right: 15px; /* Changed from 150px to bring it closer to center */
}

.hologramm {
  width: 384px; /* Increased from 200px */
  height: 384px; /* Increased from 300px */
  position: relative;
  z-index: 3; /* Added z-index to ensure it's above the background hologram */
}

.hologramm img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.5)  drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
  animation: hologramm-flicker 3s infinite;
}

.hologramm.hologramm-hintergrund {
  position: absolute;
  z-index: 2; /* Changed from 1 to 2, but still lower than the main hologram */
  transform: translateX(-10px) translateY(-500px);
  opacity: 1;
}

.charakter-seite.links .hologramm.hologramm-hintergrund {
  left: -50px;
}

.charakter-seite.rechts .hologramm.hologramm-hintergrund {
  right: 50px;
}

.hologramm.hologramm-hintergrund img {
  filter: brightness(1.5)  drop-shadow(0 0 10px rgba(0, 0, 0, 0.8)); /* Same as normal hologram */
  animation: hologramm-flicker 3s infinite; /* Same animation as normal hologram */
}

.charakter-seite.rechts .hologramm.hologramm-hintergrund img {
  filter: brightness(1.5)  drop-shadow(0 0 10px rgba(0, 0, 0, 0.8)); /* Same filter but with different hue for right side */
}

@keyframes hologramm-flicker-background {
  0% { opacity: 0.5; }
  40% { opacity: 0.7; }
  42% { opacity: 0.5; }
  44% { opacity: 0.7; }
  46% { opacity: 0.5; }
  100% { opacity: 0.5; }
}

/* .charakter-seite.rechts .hologramm img {
  filter: brightness(1.5) hue-rotate(330deg) drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
} */

@keyframes hologramm-flicker {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  52% { opacity: 0.8; }
  54% { opacity: 1; }
  100% { opacity: 0.8; }
}

.vs-element {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  margin: 0 40px;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0 0 10px var(--primary-color);
  box-shadow: 0 0 20px rgba(222, 0, 78, 0.3);
}

.charakter-info {
  margin-top: 20px;
  text-align: center;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.charakter-seite:hover .charakter-info {
  opacity: 1;
  transform: translateY(0);
}

.charakter-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.charakter-info p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

/* Team Page Styles */
.team-container {
  position: absolute;
  top: 200px;
  left: 0;
  right: 0;
  z-index: 100;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: white;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header h1 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(222, 0, 78, 0.5);
}

.team-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.team-karte {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.9));
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.team-karte:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  border-color: var(--primary-color);
}

.team-karte-header {
  padding: 20px 20px 0 20px;
  display: flex;
  justify-content: center;
}

.rang-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rang-badge.senior {
  background: linear-gradient(135deg, var(--primary-color), #ff065e);
  color: white;
  box-shadow: 0 0 15px rgba(222, 0, 78, 0.4);
}

.rang-badge.admin {
  background: linear-gradient(135deg, var(--primary-color), #ff4184);
  color: white;
  box-shadow: 0 0 15px rgba(222, 0, 78, 0.4);
}

.rang-badge.junior {
  background: linear-gradient(135deg, var(--primary-color), #ff74a5);
  color: white;
  box-shadow: 0 0 15px rgba(222, 0, 78, 0.4);
}

.team-karte-inhalt {
  padding: 20px;
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #b1003e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(222, 0, 78, 0.3);
}

.avatar-placeholder {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.team-karte h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: white;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.verwaltung-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.verwaltung-tag.teamverwaltung {
  background: rgba(33, 150, 243, 0.2);
  color: #2196F3;
  border: 1px solid #2196F3;
}

.verwaltung-tag.regelwerk {
  background: rgba(255, 152, 0, 0.2);
  color: #FF9800;
  border: 1px solid #FF9800;
}

.verwaltung-tag.roleplay {
  background: rgba(156, 39, 176, 0.2);
  color: #9C27B0;
  border: 1px solid #9C27B0;
}

.verwaltung-tag.entwicklung {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid #4CAF50;
}

.verwaltung-tag.pr {
  background: rgba(244, 67, 54, 0.2);
  color: #F44336;
  border: 1px solid #F44336;
}

.team-karte p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.team-info-bereich {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(20, 20, 20, 0.8));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 100px;
}

.team-info-bereich h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(222, 0, 78, 0.4);
}

.team-info-bereich p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.team-bewerbung-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--primary-color), #b1003e);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(222, 0, 78, 0.3);
}

.team-bewerbung-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(222, 0, 78, 0.5);
  background: linear-gradient(135deg, #b1003e, var(--primary-color));
}

/* Responsive Design für Team-Seite */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .team-header h1 {
    font-size: 36px;
  }
  
  .team-info-bereich {
    padding: 40px 20px;
  }
  
  .team-info-bereich h2 {
    font-size: 24px;
  }
}

/* Roadmap Styles */
.roadmap-container {
  position: absolute;
  top: 200px;
  left: 0;
  right: 0;
  z-index: 100;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: white;
}

.roadmap-header {
  text-align: center;
  margin-bottom: 80px;
}

.roadmap-header h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.roadmap-header p {
  font-size: 18px;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.roadmap-timeline {
  position: relative;
  margin: 60px 0;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), #666);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 40px 0;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  border: 3px solid #0e0e0e;
}

.timeline-item.completed .timeline-marker {
  background: #28a745;
}

.timeline-item.current .timeline-marker {
  background: #ffc107;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  width: 45%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.timeline-date {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-size: 22px;
  margin: 10px 0;
  color: white;
}

.timeline-content p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.timeline-status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.timeline-status.completed {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid #28a745;
}

.timeline-status.current {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid #ffc107;
}

.timeline-status.planned {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
  border: 1px solid #6c757d;
}

.roadmap-features {
  margin: 80px 0;
  text-align: center;
}

.roadmap-features h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.feature-card h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-card p {
  color: #ccc;
  line-height: 1.6;
}

.roadmap-disclaimer {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 20px;
  margin-top: 60px;
  text-align: center;
}

.roadmap-disclaimer p {
  color: #ffc107;
  margin: 0;
  font-size: 14px;
}

/* Responsive Design für Roadmap */
@media (max-width: 768px) {
  .roadmap-timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: row !important;
  }
  
  .timeline-marker {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 60px;
  }
  
  .roadmap-header h1 {
    font-size: 36px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}