/* Remove Google Fonts import */
/* @import url('https://fonts.googleapis.com/css2?family=Germania+One&display=swap'); */

/* Add local font declaration */
@font-face {
  font-family: 'Germania One';
  src: url('../assets/fonts/GermaniaOne-Regular.woff2') format('woff2'),
       url('../assets/fonts/GermaniaOne-Regular.woff') format('woff');
  font-display: swap;
}

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

/* ========== BASIS-STYLES ========== */
body {
  font-family: "Germania One", Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== HEADER & LOGO ========== */
header {
  width: 100%;
  background: #000;
  text-align: center;
  font-family: "Germania One", Arial, sans-serif;
  color: #ff0000;
}

.logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.welcome-text {
  height: 30px; /* Passen Sie die Größe nach Bedarf an */
  width: auto;
}

.header-logo-top {
  position: absolute;
  top: 10px;
  left: 40%;
  transform: translateX(-50%);
  max-width: 100px;
  z-index: 2;
}

.header-logo-bottom {
  position: absolute;
  bottom: 20px;
  right: 38%;
  transform: translateX(50%);
  max-width: 100px;
  z-index: 2;
}

.header-logo {
  max-width: 300px;
  z-index: 1;
}

.interactive-logo {
  position: absolute;
  bottom: 25px;
  right: 540px;
  width: 85px;
  height: auto;
  z-index: 2;
}

/* ========== MENÜ-TRENNER ========== */
.menu-divider {
  border: none;
  border-top: 1px solid #fff;
  margin: 0;
}

/* ========== NAVIGATIONSMENÜ ========== */
.navbar {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position: relative;
}

.nav-center {
  text-align: center;
}

.menu-center {
  list-style: none;
  display: inline-flex;
  gap: 20px;
  margin: 0;
  padding: 20px 0;
}

.menu-center li a {
  font-size: 1.3em;
  text-decoration: none;
  color: #ff0000;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s;
  font-family: "Germania One", Arial, sans-serif;
}

.menu-center li a:hover,
.menu-center li a.active {
  color: #fff;
}

.nav-right {
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right a {
  font-size: 1.3em;
  text-decoration: none;
  color: #ff0000;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s;
  font-family: "Germania One", Arial, sans-serif;
}

.nav-right a:hover,
.nav-right a.active {
  color: #fff;
}

/* Sign Up Button, 20px Abstand zum Seitenrand */
.nav-right .signup-btn {
  background-color: #fff;
  color: #000 !important;  /* Erzwingt schwarze Textfarbe */
  padding: 0 15px;
  border-radius: 2px;
  line-height: 1.8;
  transition: background-color 0.2s;
  margin-right: 1px;
}

.nav-right .signup-btn:hover {
  background-color: #e6e6e6;
  color: #000 !important;  /* Schwarze Textfarbe beim Hover beibehalten */
}

/* ========== LOGIN MODAL (POPUP) ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #1a1a1a;
  margin: 15% auto;
  padding: 2rem;
  border: 1px solid #333;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  color: white;
  position: relative;
  z-index: 100000;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.login-header h2 {
  font-size: 1.8rem;
  margin: 0;
}

.login-form .form-group {
  margin-bottom: 1.5rem;
}

.login-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #333;
  background-color: #2a2a2a;
  color: white;
  border-radius: 5px;
  font-size: 1rem;
}

.login-form input:focus {
  outline: none;
  border-color: #666;
}

.login-button {
  width: 100%;
  padding: 1rem;
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.login-button:hover {
  background: #cc0000;
}

.form-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.forgot-password {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-password:hover {
  color: #ff0000;
}

.signup-text {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #999;
}

.signup-text a {
  color: #ff4444;
  text-decoration: none;
}

.signup-text a:hover {
  text-decoration: underline;
}

.close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
}

.close:hover {
  color: #fff;
}

/* ========== HERO-BEREICH MIT VIDEO-HINTERGRUND ========== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Neue Trennlinie unter dem Hero-Bereich */
.section-divider {
  width: 40%;
  margin: 20px auto;
  border: none;
  border-top: 2px solid #fff;
  opacity: 0.8;
}

/* ========== FILM-SLIDER-BEREICH ========== */
.featured-films {
  position: relative;
  margin-top: 0;
  padding: 4rem 2rem 2rem;
  background: #000;
  text-align: center;
}

/* Feste Höhe für den Slider-Container */
.film-slider-wrapper {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  height: 570px;
  padding-top: 120px;
}

/* Slider als Flex-Container mit Gap und vertikaler Zentrierung */
.film-slider {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* Neue Styles für den verbesserten Slider */
.film-slider {
  transition-property: transform;
  transition-timing-function: ease;
}

.film-slider.no-transition {
  transition: none;
}

/* Jede Slide: 3 Slides sichtbar */
.film-slider .slide {
  flex: 0 0 calc((100% - 40px) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform-origin: center center;
}

/* Bilder: 360px hoch (20% größer) */
.film-slider .slide img {
  height: 360px;
  width: auto;
  border: 2px solid #fff;
  border-radius: 8px;
  object-fit: cover;
}

/* Das mittlere (aktive) Slide wird 1.5x vergrößert - ohne Animation */
.film-slider .slide.active-slide {
  transform: scale(1.5);
  z-index: 2;
  transition: none;
}

/* Vor-/Zurück-Buttons */
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5rem;
  transition: background-color 0.2s, border-color 0.2s;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: #ff69b4;
  border-color: #ff69b4;
}

/* Button unter dem Slider */
.films-btn-container {
  margin-top: 80px;
  margin-bottom: 40px;
}
.films-btn {
  padding: 1.2rem 2.4rem;
  font-size: 1.44rem;
  background-color: #fff;
  border: none;
  color: #000;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: "Germania One", Arial, sans-serif;
  text-transform: uppercase;
}
.films-btn:hover {
  background-color: #e6e6e6;
}

/* ========== SPLIT SECTION (MISSION) ========== */
.mission {
  padding: 0;
  background: #000;
}

.mission-split {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding: 20px 40px;
  text-align: center;
}

.mission-left,
.mission-right {
  flex: 0 1 45%;
}

.mission-left h2,
.mission-right h2 {
  color: #ff0000;  /* Gleiche Farbe wie Header */
  margin-bottom: 1rem;
  font-size: 2rem;
}

.mission-left p,
.mission-right p {
  font-size: 1.1rem;
}

/* Vertikale Trennlinie zwischen den Spalten */
.mission-split {
  position: relative;
}

.mission-split::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 80%;
  width: 1px;
  background-color: #fff;
}

/* ========== UPDATES/NEWSLETTER ========== */
.updates {
  padding: 4rem 2rem 2rem;
  text-align: center;
  background: #000;
  border-top: 1px solid #fff;
}

.updates h2 {
  color: #ff0000;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.newsletter-container {
  margin-top: 0;
  margin-bottom: 0;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.newsletter-form input[type="email"] {
  padding: 10px;
  width: 300px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 4px;
}

.newsletter-form button {
  padding: 10px 20px;
  background: #fff;
  border: none;
  color: #000;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: "Germania One", Arial, sans-serif;
}

.newsletter-form button:hover {
  background: #e6e6e6;
}

.newsletter-message {
    margin-top: 1rem;
    text-align: center;
    color: #4CAF50;
    font-weight: bold;
}

.newsletter-message.success {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== FOLLOW US SECTION ========== */
.follow-us {
  padding: 0 2rem;
  text-align: center;
  background: #000;
  margin-top: 20px;
  margin-bottom: 0px;
}

.follow-us h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.social-btn {
  text-decoration: none;
  color: #fff;
}

.social-placeholder {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-placeholder:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.2);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.social-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.social-btn:hover .social-logo {
  filter: brightness(0) invert(0.8);
}

/* ========== FOOTER ========== */
footer {
  background: #000;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff69b4;
}

/* ========== ANIMATION FÜR HERO-TEXT (falls benötigt) ========== */
@keyframes floating {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* ========== AS FEATURED IN SECTION ========== */
.featured-in {
  padding: 4rem 2rem;
  background: #000;
  text-align: center;
}

.featured-in h2 {
  color: #fff;
  margin-bottom: 3rem;
  font-size: 2rem;
  font-family: "Germania One", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.featured-in h2::before,
.featured-in h2::after {
  content: '';
  height: 1px;
  background: #fff;
  flex: 1;
}

.featured-logos {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  row-gap: 3rem;
}

.logo-placeholder {
  background: rgba(255, 255, 255, 0.1);
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo-placeholder:hover {
  transform: scale(1.05);
}

.films-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 300px));
  gap: 2rem;
  justify-content: center;
}

.film-card {
  width: 300px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.film-card:hover {
  transform: translateY(-5px);
}

.film-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.film-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.film-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.film-card:hover .film-overlay {
  opacity: 1;
}

.play-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-btn:hover {
  background: #fff;
}

.film-card h3 {
  padding: 1rem;
  margin: 0;
}

.film-description {
  padding: 0 1rem 1rem;
  color: #888;
  font-size: 0.9rem;
}

.film-info {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem 1rem;
  color: #888;
  font-size: 0.9rem;
}

.duration {
  color: #ff0000;
}

.price {
  font-weight: bold;
  color: #fff;
}

.filter-container {
  padding: 2rem 2rem 0;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 2px solid #333;
  background: transparent;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #333;
}

.filter-btn.active {
  background: #333;
  border-color: #fff;
}

.search-container {
  margin-bottom: 2rem;
}

#searchInput {
  width: 100%;
  max-width: 400px;
  padding: 0.8rem 1.2rem;
  border: 2px solid #333;
  border-radius: 25px;
  background: transparent;
  color: #fff;
}

#searchInput::placeholder {
  color: #888;
}

/* Fügen Sie diese Klasse hinzu für versteckte Filme */
.film-card.hidden {
  display: none;
}

.models-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.model-card {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
}

.model-info h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
}

.model-info p {
  margin: 0.5rem 0 0;
  color: #888;
}

.models-title {
  text-align: center;
  font-size: 3rem;
  margin: 2rem 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.signup-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 2rem;
}

.signup-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 3rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.signup-container h1 {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5em;
  font-family: "Germania One", Arial, sans-serif;
}

.signup-subtitle {
  color: #b3b3b3;
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.password-hint {
  display: block;
  color: #888;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.signup-button {
  width: 100%;
  padding: 14px;
  background: #4a90e2;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.signup-button:hover {
  background: #357abd;
}

.terms {
  margin-top: 1.5rem;
  text-align: center;
  color: #888;
  font-size: 0.8rem;
}

.terms a {
  color: #4a90e2;
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

.login-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.box-style {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.input-group input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.input-group input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.forgot-password {
  color: #007bff;
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-password:hover {
  text-decoration: underline;
}

.btn-primary {
  width: 100%;
  padding: 0.8rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* ========== INTERACTIVE VIDEO PLAYER ========== */
.video-player-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-player-container.hidden {
  display: none;
}

.video-player-container video {
  max-width: 90%;
  max-height: 80vh;
}

.close-player {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
}

.decision-overlay {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.decision-overlay.hidden {
  display: none;
}

.decision-options {
  display: flex;
  gap: 20px;
}

.decision-btn {
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Germania One", Arial, sans-serif;
  font-size: 1.1rem;
  transition: transform 0.3s, background-color 0.3s;
}

.decision-btn:hover {
  transform: scale(1.05);
  background: #fff;
}

.film-card.interactive::before {
  content: "Interaktiv";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff0000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.8rem;
  z-index: 2;
}

.film-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.film-title-link:hover {
  color: #ff0000;
}

.interactive-title {
  text-align: center;
  font-size: 3rem;
  margin: 2rem 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.model-card a {
  text-decoration: none;
  color: white;
  display: block;
  width: 100%;
  height: 100%;
}

.model-card:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.model-profile {
  padding: 40px;
  color: white;
}

.model-content {
  display: flex;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.model-left {
  flex: 2;
}

.model-right {
  flex: 1;
}

.model-full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  position: sticky;
  top: 20px;
}

.model-header {
  position: relative;
  z-index: 1;
}

.info-wrapper {
  position: relative;
  display: block; /* Änderung von flex zu block */
  z-index: 2;
}

.text-info {
  position: relative;
  z-index: 3;
  margin-bottom: 20px; /* Abstand zum Spotify Player */
}

.title-row {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.model-portrait {
  width: 100px; /* von 150px reduziert */
  height: 100px; /* von 150px reduziert */
  object-fit: cover;
  border-radius: 8px;
}

.model-basic-info {
  flex: 1;
}

.model-basic-info h1 {
  margin: 0;
  font-size: 2.5em;
}

.model-category {
  color: #888;
  margin-top: 5px;
}

.model-description {
  margin-bottom: 40px;
  line-height: 1.6;
}

.model-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.model-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.info-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.text-info {
  min-width: 200px;
}

.spotify-embed {
  position: relative;
  z-index: 1; /* Niedrigerer z-index als text-info */
  margin-top: 20px;
}

.model-kinks {
  color: #888;
  margin-top: 5px;
  font-style: italic;
}

.as-seen-in {
  margin-top: 40px;
  margin-right: 40px;  /* Abstand zum Ganzkörperbild */
}

.as-seen-in h3 {
  margin-bottom: 20px;
  font-size: 2.5em;  /* Größere Überschrift */
  text-align: center;  /* Zentrierte Überschrift */
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));  /* Größere Kacheln */
  gap: 25px;  /* Mehr Abstand zwischen den Kacheln */
  max-width: 900px;  /* Maximale Breite des Grids */
  margin: 0 auto;  /* Zentriert das Grid */
}

.content-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: white;
}

.content-tile:hover {
  transform: scale(1.05);
}

.content-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;  /* Mehr Padding für den Titel */
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  font-size: 1.1em;  /* Größere Schrift für den Titel */
}

.sketchfab-embed-wrapper {
  position: sticky;
  top: 20px;  /* Abstand zum oberen Rand beim Scrollen */
  height: 100%;
  width: 100%;
}

.sketchfab-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;  /* Minimale Höhe für das iframe */
  border-radius: 8px;
}

.model-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.filter-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.filter-item .model-button {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.filter-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.filter-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filter-item input[type="radio"]:checked + .model-button img {
  border-color: #ff0000;
  transform: scale(0.95);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.filter-item:hover img {
  border-color: rgba(255, 0, 0, 0.5);
  transform: scale(1.05);
}

.model-button {
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.model-button img {
  width: 75px;
  height: auto;
}

.model-button:hover {
  transform: scale(1.2);
  z-index: 1;
}

input[type="radio"]:checked + .model-button {
  transform: scale(1.2);
  z-index: 1;
}

.model-button .model-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px;
  font-size: 12px;
  text-align: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.contact {
  padding: 2rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3.5rem;
  letter-spacing: 2px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
}

.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.info-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-form {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: white;
}

.form-group textarea {
  width: 100%;
  min-height: 200px; /* Größeres Textfeld */
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: white;
  font-size: 1.1rem; /* Größere Schrift */
  line-height: 1.5;
  resize: vertical;
}

.form-group textarea::placeholder {
  font-size: 1.1rem; /* Auch Placeholder-Text größer */
  color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: var(--accent-color);
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: var(--accent-color-hover);
  transform: scale(1.02);
}

.social-contact {
  margin-top: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.social-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.social-btn:hover .social-logo {
  filter: brightness(0) invert(0.8);
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-center {
    width: 100%;
  }
  
  .menu-center {
    flex-direction: column;
    gap: 10px;
  }

  /* Header */
  .logo-container {
    flex-direction: column;
  }

  .header-logo {
    max-width: 200px;
  }

  /* Content Layouts */
  .mission-split,
  .contact-container,
  .values-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Film Slider */
  .film-slider .slide {
    flex: 0 0 100%;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  /* Noch kleinere Screens */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-right {
    position: static;
    justify-content: center;
    margin-top: 10px;
  }
}

.form-group select {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5rem;
}

.form-group select::-ms-expand {
  display: none;
}

.form-group select option {
  background: #1a1a1a;
  color: white;
  padding: 1rem;
  font-size: 1rem;
}

.form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.form-group select:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Für Firefox */
.form-group select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 white;
}

/* Für Chrome/Safari */
.form-group select option:hover,
.form-group select option:focus,
.form-group select option:active {
  background: linear-gradient(0deg, #2a2a2a 0%, #2a2a2a 100%);
}

.success-message {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 5px;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
}

.hidden {
  display: none;
}

.contact-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.contact-gif {
  width: 100%;
  height: calc(100% - 80px); /* Angepasst an das größere Textfeld */
  object-fit: cover;
  border-radius: 10px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    height: 200px;
    overflow-y: auto;
    padding: 20px;
    background: #000;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item summary {
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    color: #fff;
    font-family: "Germania One", Arial, sans-serif;
    text-align: center;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 15px 20px;
    color: #ccc;
    margin: 0;
    text-align: center;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.03);
}

/* Custom Scrollbar */
.faq-container::-webkit-scrollbar {
    width: 8px;
}

.faq-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.faq-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.faq-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Überschrift über dem FAQ Container */
.more-questions {
    text-align: center;
    color: #fff;
    font-family: "Germania One", Arial, sans-serif;
    padding: 20px 0;
    margin: 0;
    background: #000;
}

/* Values Page Styles */
.values-intro {
    text-align: center;
    padding: 40px 20px;
    background: #000;
}

.values-intro h1 {
    color: #fff;
    font-family: "Germania One", Arial, sans-serif;
    font-size: 3em;
    margin-bottom: 20px;
}

.values-description {
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-content {
    background: #000;
    padding: 40px 20px;
}

.values-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.values-left, .values-right {
    flex: 1;
    text-align: center;
}

.values-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 8px;
}

.values-left p, .values-right p {
    color: #fff;
    line-height: 1.8;
    margin: 0;
    padding: 0 20px;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .values-split {
        flex-direction: column;
    }
    
    .values-left, .values-right {
        margin-bottom: 40px;
    }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid white; /* Weißer Rahmen um die gesamte Kachel */
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
  width: 100%;
  gap: 0;
}

.preview-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.preview-grid img:hover {
  transform: scale(1.1);
  z-index: 2;
}

/* Für bessere Responsive-Darstellung */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 1001;
}

.bundle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  z-index: 3;
  transition: all 0.3s ease;
  border: 1px solid white;
  opacity: 0;
}

.gallery-item:hover .bundle-button {
  opacity: 1;
}

.bundle-button:hover {
  background: rgba(255, 255, 255, 0.9);
  color: black;
}

.terms-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: white;
}

.terms-section {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.terms-section h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
}

.terms-block {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.terms-block h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.5em;
}

.terms-block p {
  line-height: 1.6;
  color: #eee;
}

.signup-main {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  background-color: #000;
}

.signup-container {
  background-color: rgba(30, 30, 30, 0.9);
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.signup-container h1 {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5em;
  font-family: "Germania One", Arial, sans-serif;
}

.signup-form .form-group {
  position: relative;
  margin-bottom: 25px;
}

.signup-form input:not([type="checkbox"]) {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #444;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s;
}

.signup-form input:focus {
  outline: none;
  border-bottom-color: #fff;
}

.signup-form label {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  transition: 0.3s;
  pointer-events: none;
}

.signup-form input:focus + label,
.signup-form input:valid + label {
  top: -10px;
  font-size: 12px;
  color: #fff;
}

.checkbox-group {
  margin: 20px 0;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-group label {
  position: static;
  transform: none;
  color: #fff;
  cursor: pointer;
}

.signup-submit-btn {
  width: 100%;
  padding: 15px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: bold;
}

.signup-submit-btn:disabled {
  background-color: #444;
  color: #666;
  cursor: not-allowed;
}

.signup-submit-btn:not(:disabled):hover {
  background-color: #333;
  color: #fff;
}

.birth-date {
  margin-bottom: 25px;
}

.birth-date label {
  color: #666;
  display: block;
  margin-bottom: 8px;
  position: static;
  transform: none;
}

.date-select {
  display: flex;
  gap: 10px;
}

.date-select select, 
#userType {
  background-color: transparent;
  color: #fff;
  border: 2px solid #444;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  flex: 1;
}

.date-select select:focus,
#userType:focus {
  border-color: #fff;
  outline: none;
}

.date-select select option,
#userType option {
  background-color: #1e1e1e;
  color: #fff;
}

#userType {
  width: 100%;
  margin-top: 8px;
}

.form-group label[for="userType"] {
  color: #666;
  position: static;
  transform: none;
}

.captcha-container {
  width: 100%;
  max-width: 400px;
  margin: 30px auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.captcha-question {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Germania One", Arial, sans-serif;
  width: 100%;
}

.captcha-grid {
  display: grid;
  grid-template-columns: repeat(4, 80px);
  gap: 20px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.captcha-label {
  display: block;
  cursor: pointer;
  width: 80px;
  height: 80px;
}

.captcha-label input[type="radio"] {
  display: none;
}

.captcha-box {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: "Germania One", Arial, sans-serif;
  color: #000;
  transition: all 0.3s ease;
}

/* Hover Effekt */
.captcha-label:hover .captcha-box {
  border-color: rgba(255, 0, 0, 0.5);
  background-color: #f0f0f0;
}

/* Ausgewählter Zustand */
.captcha-label input[type="radio"]:checked + .captcha-box {
  border-color: #ff0000;
  background-color: #ff0000;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.error-message {
  color: #ff0000;
  text-align: center;
  margin-top: 10px;
  font-family: "Germania One", Arial, sans-serif;
  width: 100%;
}

.captcha-buttons {
  display: flex;
  gap: 15px;
  margin: 15px 0;
  justify-content: center;
}

.captcha-btn {
  padding: 15px 25px;
  font-size: 24px;
  cursor: pointer;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  min-width: 60px;
  min-height: 60px;
}

.captcha-btn.clicked {
  background-color: #666;
  pointer-events: none;
}

.captcha-sequence {
  margin: 10px 0;
  font-size: 14px;
}

.captcha-container {
  margin-bottom: 15px; /* Reduzierter Abstand zum Submit-Button */
}

.signup-submit-btn {
  margin-top: 10px; /* Reduzierter oberer Abstand */
}

.terms-text {
  color: #666;
  margin: 15px 0;
  text-align: center;
  font-size: 0.9em;
}

.terms-text a {
  color: #fff;
  text-decoration: none;
}

.terms-text a:hover {
  text-decoration: underline;
}

/* ========== SOCIAL MEDIA STYLES ========== */
.social-media-container {
    margin: 4rem auto;
    text-align: center;
    width: 100%;
    padding: 0 2rem;
}

.social-media-container h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    font-family: "Germania One", Arial, sans-serif;
    color: #ff0000;
}

.social-media-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.social-link {
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.social-placeholder {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-placeholder span {
    font-size: 0.8rem;
    color: #000;
    font-family: "Germania One", Arial, sans-serif;
    text-align: center;
}

.social-link:hover .social-placeholder {
    transform: translateY(-5px);
    background-color: #f8f8f8;
}

/* Spezifische Farben für die Icons */
.instagram i { color: #E1306C; }
.x-twitter i { color: #000000; }
.threads i { color: #000000; }
.youtube i { color: #FF0000; }

.social-media-section {
    padding: 4rem 0;
    text-align: center;
    background: #000;
}

.social-media-section h2 {
    color: #ff0000;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: "Germania One", Arial, sans-serif;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
}

.social-button {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-button span {
    color: #000;
    font-family: "Germania One", Arial, sans-serif;
    font-size: 1rem;
}

.social-button:hover {
    transform: translateY(-5px);
}

/* Füge diese neue Regel hinzu */
#loginModal {
  z-index: 999999; /* Spezifischer Selektor mit höchstem z-index */
}

.age-verify-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-verify-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
}

.age-verify-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-verify-buttons button {
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.age-verify-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.age-verify-wrapper {
    text-align: center;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.age-verify-logo {
    width: 400px;
    margin-bottom: 2rem;
}

.age-verify-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.age-verify-content h1 {
    color: #ff0000;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: "Germania One", Arial, sans-serif;
    text-align: center;
}

.age-verify-content p {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.age-verify-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.verify-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Germania One", Arial, sans-serif;
}

.verify-yes {
    background: #ff0000;
    color: #fff;
}

.verify-yes:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.verify-no {
    background: #333;
    color: #fff;
}

.verify-no:hover {
    background: #444;
    transform: translateY(-2px);
}

/* Styles für eingeloggte User */
.user-email {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s;
}

.user-email:hover {
    color: #ff0000 !important;
}

/* Logout Button im gleichen Style wie "Join the Cult" */
#logoutBtn.signup-btn {
    background-color: #fff;
    color: #000 !important;
    padding: 0 15px;
    border-radius: 2px;
    line-height: 1.8;
    transition: background-color 0.2s;
    margin-right: 1px;
}

#logoutBtn.signup-btn:hover {
    background-color: #e6e6e6;
    color: #000 !important;
}

/* Dashboard Styles */
.dashboard-main {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-header h1 {
    font-size: 3rem;
    color: #ff0000;
    font-family: "Germania One", Arial, sans-serif;
}

.dashboard-section {
    margin-bottom: 4rem;
}

.dashboard-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #333;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.dashboard-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
    transition: transform 0.3s ease;
}

.dashboard-item:hover {
    transform: translateY(-5px);
}

.dashboard-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.dashboard-item:hover .item-overlay {
    transform: translateY(0);
}

.item-overlay h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.watch-btn, .view-btn {
    width: 100%;
    padding: 0.8rem;
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.watch-btn:hover, .view-btn:hover {
    background-color: #cc0000;
}

/* Creator Dashboard spezifische Styles */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.analytics-number {
    font-size: 2.5rem;
    color: #ff0000;
    margin-top: 1rem;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #fff;
}

.edit-btn {
    width: 100%;
    padding: 0.8rem;
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.edit-btn:hover {
    background-color: #357abd;
}

.upload-section {
    text-align: center;
    margin-top: 3rem;
}

.upload-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

/* Application Form Styles */
.application-main {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.application-header {
    text-align: center;
    margin-bottom: 3rem;
}

.application-header h1 {
    font-size: 18px; /* von 3rem auf 18px geändert */
    color: #ff0000;
    margin-bottom: 1rem;
    font-family: "Germania One", Arial, sans-serif;
}

.application-header p {
    color: #fff;
    font-size: 14px; /* Optional: auch die Subline anpassen */
}

.application-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.form-section {
    margin-bottom: 3rem;
}

.form-section h2 {
    color: #ff0000;
    font-size: 18px; /* von 1.8rem auf 18px geändert */
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
    font-family: "Germania One", Arial, sans-serif; /* Optional: für Konsistenz */
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-group label {
    display: inline;
    margin-left: 0.5rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Zusätzliche Styles für Textareas und Submit Button */
.form-group textarea {
    width: 100%;
    min-height: 100px;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    resize: vertical;
}

.form-group select {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
}

.submit-btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

/* Mehr Abstand zwischen Social Media Inputs */
.social-media input {
    margin-bottom: 1rem;
}

.social-media input:last-child {
    margin-bottom: 0;
}

/* Radio Button Fix */
.radio-group {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
    font-size: 16px; /* Schriftgröße erhöht */
}

.radio-group input[type="radio"] {
    margin: 0;
    width: auto;
    cursor: pointer;
}

/* Checkbox Fix - gleiche Formatierung */
.checkbox-group label {
    display: inline-flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
    font-size: 16px; /* Schriftgröße erhöht */
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    width: auto;
    cursor: pointer;
}

/* Gemeinsame Styles für Radio und Checkbox */
input[type="radio"],
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border: 1px solid #ff0000;
    border-radius: 50%;
    margin-right: 6px;
    position: relative;
    background: transparent;
}

input[type="checkbox"] {
    border-radius: 3px;
}

/* Styles für markierte Buttons */
input[type="radio"]:checked,
input[type="checkbox"]:checked {
    background: #ff0000; /* Hintergrund für markierte Buttons */
}

input[type="radio"]:checked::after,
input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
}

input[type="checkbox"]:checked::after {
    width: 6px;
    height: 6px;
    border-radius: 2px;
}

/* Internet Speed Inputs nebeneinander */
.speed-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.speed-input {
    position: relative;
}

.speed-input input {
    width: 100%;
    padding-right: 60px; /* Platz für die Einheit */
}

.speed-input .unit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.speed-check {
    color: #ff0000;
    text-decoration: none;
    font-size: 14px;
    margin-left: 5px;
}

.speed-check:hover {
    text-decoration: underline;
}

/* Follow Button Styles */
.follow-stats {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1000;
}

.follow-btn {
    position: relative;
    z-index: 5; /* Höchster z-index */
    padding: 8px 16px;
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.follow-btn:hover {
    background: #cc0000;
}

.follow-btn .following-text {
    display: none;
}

.follow-btn.following {
    background: #000;
    color: #fff;
}

.follow-btn.following .follow-text {
    display: none;
}

.follow-btn.following .following-text {
    display: inline;
}

.follow-btn:hover {
    transform: translateY(-2px);
}

.follower-count {
    color: #666;
    font-size: 0.9rem;
}

/* Dashboard Follower Card */
.analytics-card.followers {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
}

.model-basic-info {
    position: relative;
    z-index: 1;
}

.info-wrapper {
    position: relative;
    display: block; /* Änderung von flex zu block */
    z-index: 2;
}

.text-info {
    position: relative;
    z-index: 3;
    margin-bottom: 20px; /* Abstand zum Spotify Player */
}

.title-row {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spotify-embed {
    position: relative;
    z-index: 1; /* Niedrigerer z-index als text-info */
    margin-top: 20px;
}

.button-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
}

.follow-btn {
  position: relative;
  padding: 8px 16px;
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}

.title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1000;
}

.spotify-embed {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.spotify-embed iframe {
  pointer-events: auto;
}

.portrait-container {
  position: relative;
  width: 100px; /* von 150px reduziert */
  height: 100px; /* von 150px reduziert */
  cursor: pointer;
}

.model-portrait {
  width: 100px; /* von 150px reduziert */
  height: 100px; /* von 150px reduziert */
  object-fit: cover;
  border-radius: 8px;
}

.portrait-follow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(255, 0, 0, 0.9);
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.portrait-container:hover .portrait-follow {
  opacity: 1;
}

.info-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.text-info {
  min-width: 200px;
}

.spotify-embed {
  flex: 1;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.follower-count {
  color: #666;
  font-size: 0.9rem;
}

.follow-section {
  margin: 20px 0 0 0; /* Reduzierter Abstand oben */
  text-align: left; /* Links ausrichten wie die anderen Elemente */
}

.follow-btn {
  background: #ff0000;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.follow-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

.follow-btn .following-text {
  display: none;
}

.follow-btn.following {
  background: #000;
}

.follow-btn.following .follow-text {
  display: none;
}

.follow-btn.following .following-text {
  display: inline;
}

.follower-count {
  font-size: 1.1rem;
  color: #888;
}

.follow-section {
  text-align: center;
  margin: 40px 0;
}

.simple-follow-btn {
  background: #ff0000;
  color: white;
  border: none;
  padding: 12px 30px; /* Etwas kleinere Padding-Werte */
  font-size: 16px; /* Kleinere Schriftgröße */
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 5px; /* Kleinerer Abstand zum Follower Count */
}

.simple-follow-btn:hover {
  background: #cc0000;
}

.simple-follow-btn.following {
  background: #000;
}

.follower-count {
  display: block;
  color: #888;
  font-size: 16px;
}

.model-header {
  display: flex;
  align-items: flex-start;
  gap: 15px; /* Reduzierter Abstand zwischen Bild und Text */
}

/* Falls der portrait-container noch existiert */
.portrait-container {
  width: 100px; /* von 150px reduziert */
  height: 100px; /* von 150px reduziert */
}

/* Follow Button Styles */
.follow-button {
  background-color: #c8312b;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: "Germania One", Arial, sans-serif;
  font-size: 1.1em;
}

.follow-button.following {
  background-color: #333;
}

.follow-button:hover {
  background-color: #a52925;
}

.follower-count {
  margin-left: 10px;
  font-size: 0.9em;
  color: #aaa;
}

.follow-section {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
