/* ================================
   Modern Immersive Layout - No Header/Footer
=================================== */
:root {
  /* Modern Dark Theme */
  --bg-primary: #0a0a0b;
  --bg-secondary: #141416;
  --bg-tertiary: #1e1e21;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #6a6a6a;
  --accent: #1db954;
  --accent-secondary: #fccc0a;
  
  /* MTA Colors */
  --mta-red: #EE352E;
  --mta-green: #00933C;
  --mta-purple: #B933AD;
  --mta-blue: #0039A6;
  --mta-orange: #FF6319;
  --mta-yellow: #FCCC0A;
  --mta-brown: #996633;
  --mta-lime: #6CBE45;
  --mta-gray: #A7A9AC;
  --mta-dark-gray: #808183;

  /* Modern Effects */
  --blur: blur(20px);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --glow: 0 0 20px rgba(29, 185, 84, 0.3);
  
  /* Typography */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "SF Mono", Monaco, "Cascadia Code", monospace;
  
  /* Mobile-specific variables */
  --vh: 1vh; /* Will be set by JavaScript for mobile browsers */
  --mobile-safe-area-top: env(safe-area-inset-top, 0px);
  --mobile-safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --mobile-safe-area-left: env(safe-area-inset-left, 0px);
  --mobile-safe-area-right: env(safe-area-inset-right, 0px);
  
  /* Responsive spacing */
  --spacing-xs: clamp(4px, 1vw, 8px);
  --spacing-sm: clamp(8px, 2vw, 16px);
  --spacing-md: clamp(16px, 4vw, 24px);
  --spacing-lg: clamp(24px, 6vw, 40px);
  --spacing-xl: clamp(40px, 8vw, 80px);
  
  /* Responsive typography */
  --text-xs: clamp(10px, 2.5vw, 12px);
  --text-sm: clamp(12px, 3vw, 14px);
  --text-base: clamp(14px, 3.5vw, 16px);
  --text-lg: clamp(16px, 4vw, 18px);
  --text-xl: clamp(18px, 4.5vw, 24px);
  --text-2xl: clamp(24px, 6vw, 32px);
  --text-3xl: clamp(32px, 8vw, 48px);
}

/* Light Mode */
body.light-mode {
  --bg-primary: #fafafa;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f5f5f5;
  --text-primary: #191414;
  --text-secondary: #535353;
  --text-muted: #8e8e8e;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --glow: 0 0 20px rgba(29, 185, 84, 0.2);
}

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100); /* Mobile viewport fix */
  overflow-x: hidden;
  transition: all var(--transition);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; /* Prevent text scaling on iOS */
  -ms-text-size-adjust: 100%;
  
  /* Mobile-specific optimizations */
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
  -webkit-touch-callout: none; /* Disable callout on long press */
  -webkit-user-select: none; /* Disable text selection */
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Re-enable text selection for content areas */
.step-content,
.preview-content,
.modal-content {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Remove all borders and outlines */
button, input, select, textarea {
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

/* Subtle accessibility without breaking immersion */
*:focus-visible {
  box-shadow: 0 0 0 2px var(--accent);
  border-radius: 8px;
}

/* ====================
   App Layout - Full Screen
======================= */
.app {
  min-height: 100vh;
  display: flex;
  position: relative;
}

/* Enhanced Navigation Panel */
.nav-panel {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 8px;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
}

.nav-item.active {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* Navigation Divider */
.nav-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 8px;
}

/* Updated Theme Toggle - Match Navigation Style */
.theme-toggle {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 16px; /* Match nav-item border radius */
  background: rgba(0, 0, 0, 0.9); /* Match nav-panel background */
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1); /* Match nav-panel border */
  color: rgba(255, 255, 255, 0.7); /* Match nav-item color */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px; /* Match nav-item font size */
  transition: all 0.3s ease; /* Match nav-item transition */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); /* Match nav-panel shadow */
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1); /* Match nav-item hover */
  color: white;
  transform: translateY(-2px); /* Match nav-item hover transform */
}

/* Light mode theme toggle */
.light-mode .theme-toggle {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7);
}

.light-mode .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
  color: black;
}

/* Mobile adjustments for theme toggle */
@media (max-width: 1200px) {
  .theme-toggle {
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  
  .main-content {
    padding: 16px; /* Even padding on mobile */
    padding-bottom: 120px; /* Space for bottom navigation */
  }
}

/* ====================
   Main Content Area - FIXED CENTERING
======================= */
.main-content {
  flex: 1;
  padding: 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically */
  max-width: 1200px; /* Max width for better readability */
  margin: 0 auto; /* Center the container */
  width: 100%;
}

/* Hero Section with Split Layout */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

/* Left Side: Preview Mockup */
.hero-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-mockup {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.preview-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-sign {
  background: #000000;
  color: white;
  border-radius: 12px;
  padding: 24px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid #333;
  max-width: 400px;
  width: 100%;
}

.mockup-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #ffffff;
}

.mockup-station-name {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.mockup-lines {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.mockup-line {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 24px;
}

.mockup-line.red { background: var(--mta-red); }
.mockup-line.yellow { background: var(--mta-yellow); color: #000; }
.mockup-line.blue { background: var(--mta-blue); }
.mockup-line.orange { background: var(--mta-orange); }

.mockup-content {
  margin-bottom: 20px;
}

.mockup-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ffffff;
}

.mockup-tracks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-track {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.mockup-info {
  flex: 1;
}

.mockup-track-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.mockup-artist {
  font-size: 12px;
  opacity: 0.8;
}

.mockup-footer {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.mockup-cta {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
}

/* Right Side: Hero Content */
.hero-content {
  text-align: left;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-cta {
  background: var(--accent);
  color: white;
  padding: 18px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  border: none;
}

.hero-cta:hover {
  transform: translateY(-3px);
  background: #1ed760;
  box-shadow: 0 12px 40px rgba(29, 185, 84, 0.4);
}

.hero-cta i {
  transition: transform 0.3s ease;
}

.hero-cta:hover i {
  transform: translateY(2px);
}

/* Steps Section */
.steps-section {
  padding: 60px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Step Cards */
.step-card {
  background: rgba(30, 30, 33, 0.6);
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all var(--transition);
  overflow: visible; /* Dropdown soll sichtbar sein */
  animation: fadeIn 0.5s ease;
}

.step-card[data-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

.step-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(29, 185, 84, 0.2);
}

body.light-mode .step-card {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.1);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .step-header {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: all var(--transition);
}

.step-card.active .step-number {
  background: var(--accent);
  color: white;
}

.step-info {
  flex: 1;
}

.step-info h3 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-info p {
  color: var(--text-secondary);
  font-size: 14px;
}

.step-status {
  display: flex;
  align-items: center;
}

.step-status i {
  font-size: 12px;
  color: var(--text-muted);
  transition: all var(--transition);
}

.step-status.connected i {
  color: var(--accent);
  animation: checkmark 0.5s ease;
}

@keyframes checkmark {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.step-content {
  padding: 24px;
  overflow: visible; /* Dropdown soll über Container hinausragen können */
  position: relative; /* Für korrekte Positionierung des Dropdowns */
}

/* Options Grid */
.options-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Live Preview Panel */
.preview-panel {
  display: none !important;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: none;
  box-shadow: none;
}

.preview-content {
  padding: 20px 0;
  background: none;
  max-height: none;
  overflow: visible;
}

.preview-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 14px;
}

.preview-btn:hover:not(:disabled) {
  background: var(--accent);
  color: white;
}

.preview-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.preview-placeholder {
  text-align: center;
  color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .preview-panel {
    position: static;
    transform: none;
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0;
    max-height: none;
  }
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.step-card {
  animation: fadeIn 0.5s ease;
}

.selector-dropdown.active {
  animation: slideDown 0.3s ease;
}

/* Update existing styles to work with new layout */
.main-content {
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically */
  max-width: 1200px; /* Max width for better readability */
  margin: 0 auto; /* Center the container */
  width: 100%;
  padding: 24px; /* Even padding on all sides */
}

/* Hide old sign container */
.sign-container {
  display: none;
}

/* Update station selector for step layout */
.step-card .station-selector {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Update options styling for step layout */
.step-card .option-group {
  margin-bottom: 20px;
}

.step-card .option-group:last-child {
  margin-bottom: 0;
}

/* Ensure tooltips work */
[title] {
  position: relative;
}

/* Update navigation for new layout */
@media (max-width: 1200px) {
  .main-content {
    padding-right: 24px;
    padding-bottom: 100px;
  }
  
  /* Navigation adjustments */
  .nav-panel {
    bottom: 16px;
    left: 16px;
    right: 16px;
    transform: none;
    width: calc(100% - 32px);
  }
  
  .nav-items {
    justify-content: space-around;
  }
  
  .nav-item {
    flex: 1;
    max-width: 56px;
  }
  
  .nav-divider {
    display: none;
  }
}

/* ====================
   Loading States
======================= */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: var(--blur);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

.loading-content {
  text-align: center;
  color: var(--text-primary);
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 24px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  font-size: 18px;
  margin-bottom: 8px;
}

.loading-subtext {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ====================
   Smooth Scrolling
======================= */
html {
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

body.light-mode ::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}

body.light-mode ::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* Add modal styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: var(--blur);
}

.modal {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 24px;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.modal-header h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.modal-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Add preview message styling */
.preview-message {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-secondary);
}

.preview-message i {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.preview-message p {
  font-size: 1.1rem;
}

/* Add connected state for Spotify button */
.spotify-connect.connected {
  background: #1ed760;
  color: white;
}

.spotify-connect.connected:hover {
  background: #1db954;
}

/* Add animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* No results message */
.no-results {
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
}

/* Add these missing MTA sign styles */

.station-info {
  margin-bottom: 30px;
}

.transfers-section {
  margin-bottom: 20px;
}

.transfers-label {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 10px;
}

.mta-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #ffffff;
}

.service-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #ffffff;
  opacity: 0.8;
  justify-content: center;
}

.service-notice i {
  color: var(--accent);
  font-size: 18px;
}

/* Fix station header layout */
.station-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #ffffff;
  text-align: center;
}

.station-name {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
}

.station-lines {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.line-circle {
  width: 48px;
  height: 48px;
  font-size: 36px; /* Verhältnis wie im Mockup: 0.75 von 48px */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  /* Schriftgröße an Kreisgröße angepasst */
}

/* Debug styles - temporary */
.sign-container.debug {
  border: 2px solid red;
  min-height: 300px;
}

.mta-station-sign.debug {
  border: 2px solid blue;
}

/* MTA Sign Styles - spezifischer machen */
.mta-station-sign .station-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #ffffff;
  text-align: center;
}

.mta-station-sign .station-name {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
}

.mta-station-sign .station-lines {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.mta-station-sign .line-circle {
  width: 48px;
  height: 48px;
  font-size: 36px; /* Verhältnis wie im Mockup: 0.75 von 48px */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  /* Schriftgröße an Kreisgröße angepasst */
}

/* Marketing Elements - subtil und authentisch */

/* Watermark - dezent in der Ecke */
.soundline-watermark {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  letter-spacing: 0.5px;
  z-index: 10;
}

/* Call-to-Action Section */
.cta-section {
  margin: 30px 0 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

.cta-text i {
  color: var(--accent);
  font-size: 16px;
}

.cta-text strong {
  color: var(--accent);
  font-weight: 600;
}

.cta-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* Updated Footer */
.mta-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.service-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}

.service-notice i {
  color: var(--accent);
  font-size: 16px;
}

.powered-by {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Mobile Anpassungen für Marketing Elements */
@media (max-width: 1200px) {
  .soundline-watermark {
    font-size: 10px;
    top: 10px;
    right: 12px;
  }
  
  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .cta-text {
    font-size: 13px;
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .service-notice {
    justify-content: center;
    font-size: 13px;
  }
}

/* Hover effects für bessere Interaktion */
.cta-section:hover {
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease;
}

.cta-text strong:hover {
  color: #1ed760;
  transition: color 0.2s ease;
}

/* Options Panel Styling */
.options-panel {
  width: 100%;
  max-width: 500px;
  margin: 32px 0;
  background: rgba(30, 30, 33, 0.6);
  backdrop-filter: var(--blur);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}

body.light-mode .options-panel {
  background: rgba(255, 255, 255, 0.6);
}

.options-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: all var(--transition);
}

.options-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

body.light-mode .options-header:hover {
  background: rgba(0, 0, 0, 0.05);
}

.options-header h3 {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.options-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all var(--transition);
}

.options-toggle:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.options-toggle.active {
  transform: rotate(180deg);
}

.options-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.options-content.active {
  max-height: 500px;
  padding: 0 24px 24px;
}

.option-group {
  margin-bottom: 24px;
}

.option-group:last-child {
  margin-bottom: 0;
}

.option-label {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

.option-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.option-btn {
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border: 2px solid transparent;
  border-radius: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
}

.option-btn:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.option-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.option-btn i {
  font-size: 16px;
}

/* Slider Styling */
.option-slider {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-tertiary);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 12px;
}

#amount-value {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

/* Mobile Anpassungen */
@media (max-width: 1200px) {
  .options-panel {
    margin: 24px 0;
  }
  
  .options-header {
    padding: 16px 20px;
  }
  
  .options-content.active {
    padding: 0 20px 20px;
  }
  
  .option-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  
  .option-btn {
    padding: 10px 12px;
    font-size: 11px;
  }
  
  .option-btn i {
    font-size: 14px;
  }
}

/* Fix CSS selector errors (lines 704 and 712) */
.track-item:hover .spotify-icon {
  opacity: 1;
}

.clickable-track {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.clickable-track:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Verbesserte Darstellung für nicht verfügbare Stats */
.track-info .artist-name[data-unavailable="true"] {
  color: #888;
  font-style: italic;
  font-size: 13px;
}

.track-circle[data-unavailable="true"] {
  opacity: 0.6;
  border: 1px dashed rgba(255, 255, 255, 0.3);
}

/* Neue CSS für Share Modal */
.share-modal-content {
  text-align: center;
}

.share-preview {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  margin: 16px 0;
  font-style: italic;
  color: #ccc;
}

.share-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.share-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
}

.share-option:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.share-option i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.share-option span {
  flex: 1;
  font-weight: 500;
}

/* Mobile optimiert */
@media (max-width: 1200px) {
  .share-options {
    gap: 12px;
  }
  
  .share-option {
    padding: 16px;
    font-size: 16px;
  }
}

/* Update share button styling */
.share-btn.share {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.share-btn.share:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
}

/* Remove old Twitter styling if it exists */
.share-btn.twitter {
  display: none;
}

/* Remove old share panel styles completely */
.share-panel,
.share-buttons,
.share-btn {
  display: none !important;
}

/* Station Selector Styles for Step Layout */
.step-card .station-selector {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  z-index: 10; /* Basis z-index für Selector */
}

.selector-button {
  width: 100%;
  padding: 20px 24px;
  background: rgba(30, 30, 33, 0.6);
  backdrop-filter: var(--blur);
  border-radius: 16px;
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  border: none;
}

body.light-mode .selector-button {
  background: rgba(255, 255, 255, 0.6);
}

.selector-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  background: rgba(30, 30, 33, 0.8);
}

body.light-mode .selector-button:hover {
  background: rgba(255, 255, 255, 0.8);
}

.selector-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  z-index: 1000; /* Erhöhter z-index für bessere Sichtbarkeit */
  max-height: 300px;
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1); /* Bessere Abgrenzung */
}

body.light-mode .selector-dropdown {
  border: 1px solid rgba(0, 0, 0, 0.1); /* Bessere Sichtbarkeit im Light Mode */
}

.selector-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-search {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: none;
  border-radius: 8px;
  margin: 12px;
  width: calc(100% - 24px);
  font-size: 14px;
}

.dropdown-search::placeholder {
  color: var(--text-muted);
}

.dropdown-list {
  max-height: 240px;
  overflow-y: auto;
  padding: 0 12px 12px;
}

.dropdown-item {
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: all var(--transition);
}

.dropdown-item:hover {
  background: var(--bg-tertiary);
}

/* Dropdown-specific styles - higher specificity */
.selector-dropdown .station-option {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.selector-dropdown .station-name {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 14px !important; /* Override MTA sign styles */
  line-height: 1.3 !important;
  text-transform: none !important; /* No uppercase */
  letter-spacing: normal !important;
}

.selector-dropdown .station-lines {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  justify-content: flex-start !important; /* Left align instead of centered */
}

.selector-dropdown .line-circle {
  width: 18px !important; /* Override MTA sign styles */
  height: 18px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 9px !important; /* Override MTA sign styles */
  font-weight: bold;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  flex-shrink: 0;
  text-transform: none !important; /* No uppercase */
  letter-spacing: normal !important;
}

/* Spotify Connect Button Styles for Step Layout */
.step-card .spotify-connect {
  background: var(--accent);
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  border: none;
  width: 100%;
  justify-content: center;
}

.step-card .spotify-connect:hover {
  transform: translateY(-3px);
  background: #1ed760;
  box-shadow: 0 12px 40px rgba(29, 185, 84, 0.4);
}

.step-card .spotify-connect:active {
  transform: translateY(-1px);
}

.step-card .spotify-connect.loading {
  pointer-events: none;
  opacity: 0.7;
}

.step-card .spotify-connect.connected {
  background: #1ed760;
  color: white;
}

.step-card .spotify-connect.connected:hover {
  background: #1db954;
}

/* No results message */
.no-results {
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
}

/* MTA Sign Display in Preview Panel - 9:16 Format */
.preview-content .mta-station-sign {
  width: 100%;
  aspect-ratio: 9/16; /* Festes 9:16 Verhältnis */
  background: #000000;
  color: white;
  border-radius: 12px;
  padding: 16px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 2px solid #333;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.preview-content .station-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ffffff;
  text-align: center;
  flex-shrink: 0;
}

.preview-content .station-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.preview-content .station-lines {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.preview-content .line-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Station Info Section - Flexibel für Inhalt */
.preview-content .station-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.preview-content .transfers-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.preview-content .transfers-label {
  display: none; /* Versteckt die Überschrift und den Divider */
}

.preview-content .track-list {
  display: grid;
  gap: 6px;
  flex: 1;
  align-content: start;
  overflow: hidden;
  max-height: 100%; /* Stellt sicher, dass der Container nicht überläuft */
}

/* Smart Grid Layout - 2 Spalten bei mehr Inhalt */
.preview-content .track-list[data-count="1"],
.preview-content .track-list[data-count="2"],
.preview-content .track-list[data-count="3"],
.preview-content .track-list[data-count="4"] {
  grid-template-columns: 1fr; /* Einzelne Spalte für wenige Items */
}

.preview-content .track-list[data-count="5"],
.preview-content .track-list[data-count="6"],
.preview-content .track-list[data-count="7"],
.preview-content .track-list[data-count="8"],
.preview-content .track-list[data-count="9"],
.preview-content .track-list[data-count="10"] {
  grid-template-columns: 1fr 1fr; /* Zwei Spalten für mehr Items */
  grid-auto-rows: min-content; /* Verhindert Overflow */
}

.preview-content .track-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  min-height: 0; /* Verhindert Overflow */
  max-height: 32px; /* Begrenzt die Höhe für bessere Passform */
  overflow: hidden; /* Verhindert Überlauf */
}

.preview-content .track-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px; /* 0.75 off the circle size */
  flex-shrink: 0;
}

.preview-content .track-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.preview-content .track-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
  line-height: 1.2;
}

.preview-content .artist-name {
  font-size: 10px;
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
  line-height: 1.2;
}

.preview-content .mta-footer {
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.preview-content .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  font-size: 8px;
}

.preview-content .service-notice {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #ffffff;
  opacity: 0.7;
  font-size: 7px;
}

.preview-content .service-notice i {
  color: var(--accent);
  font-size: 8px;
}

.preview-content .powered-by {
  color: #ffffff; /* Macht soundline.app weiß */
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Mobile responsive updates */
@media (max-width: 1200px) {
  .selector-dropdown .station-name {
    font-size: 13px !important;
  }
  
  .selector-dropdown .line-circle {
    width: 16px !important;
    height: 16px !important;
    font-size: 18px; /* 0.75 von 16px */
  }
  
  /* Mobile preview adjustments */
  .preview-content .mta-station-sign {
    aspect-ratio: 9/16; /* Behält 9:16 Format bei */
    max-width: 280px; /* Begrenzt Breite auf mobilen Geräten */
    margin: 0 auto; /* Zentriert das Sign */
  }
  
  .preview-content .station-name {
    font-size: 16px;
  }
  
  .preview-content .line-circle {
    width: 24px;
    height: 24px;
    font-size: 18px; /* 0.75 von 24px */
  }
  
  /* Force single column on mobile */
  .preview-content .track-list[data-count="5"],
  .preview-content .track-list[data-count="6"],
  .preview-content .track-list[data-count="7"],
  .preview-content .track-list[data-count="8"],
  .preview-content .track-list[data-count="9"],
  .preview-content .track-list[data-count="10"] {
    grid-template-columns: 1fr !important; /* Erzwingt eine Spalte auf mobilen Geräten */
  }
  
  .preview-content .track-name {
    font-size: 12px;
  }
  
  .preview-content .artist-name {
    font-size: 10px;
  }
  
  .preview-content .track-item {
    max-height: 36px; /* Etwas größer auf mobilen Geräten */
    padding: 6px;
  }
  
  .preview-content .track-circle {
    width: 24px;
    height: 24px;
    font-size: 18px; /* 0.75 von 24px */
  }
}

/* ====================
   Enhanced Mobile Responsive Design
======================= */

/* Mobile-first approach - Base styles for mobile */
@media (max-width: 1200px) {
  /* Hero Section - Stack vertically on mobile */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 16px;
  }
  
  .hero-preview {
    order: 2; /* Move preview below content on mobile */
  }
  
  .hero-content {
    order: 1;
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 32px;
  }
  
  .hero-cta {
    padding: 16px 28px;
    font-size: 16px;
    width: 100%;
    max-width: 280px;
  }
  
  /* Preview Mockup - Smaller on mobile */
  .mockup-sign {
    max-width: 320px;
    padding: 20px;
    margin: 0 auto;
  }
  
  .mockup-station-name {
    font-size: 20px;
  }
  
  .mockup-line {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  /* Main Content - Even padding, no right space */
  .main-content {
    padding: 16px;
    padding-bottom: 120px; /* Space for bottom navigation */
  }
  
  /* Steps Section */
  .steps-section {
    padding: 40px 16px;
  }
  
  /* Step Cards - Better mobile layout */
  .step-card {
    margin-bottom: 20px;
    border-radius: 12px;
  }
  
  .step-header {
    padding: 20px 16px;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .step-info h3 {
    font-size: 18px;
  }
  
  .step-info p {
    font-size: 13px;
  }
  
  .step-content {
    padding: 20px 16px;
  }
  
  /* Spotify Connect Button - Full width on mobile */
  .step-card .spotify-connect {
    padding: 18px 24px;
    font-size: 16px;
    width: 100%;
    border-radius: 12px;
  }
  
  /* Station Selector - Better mobile UX */
  .selector-button {
    padding: 18px 20px;
    font-size: 16px;
    border-radius: 12px;
  }
  
  .selector-dropdown {
    border-radius: 12px;
    max-height: 60vh; /* Limit height on mobile */
  }
  
  .dropdown-search {
    padding: 14px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 8px;
  }
  
  .dropdown-item {
    padding: 16px;
    border-radius: 8px;
  }
  
  .selector-dropdown .station-name {
    font-size: 15px !important;
    line-height: 1.3 !important;
  }
  
  .selector-dropdown .line-circle {
    width: 20px !important;
    height: 20px !important;
    font-size: 18px; /* 0.75 von 20px */
  }
  
  /* Options Grid - Stack vertically on mobile */
  .option-buttons {
    grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
    gap: 12px;
  }
  
  .option-btn {
    padding: 16px 12px;
    font-size: 13px;
    border-radius: 10px;
    min-height: 60px; /* Better touch target */
  }
  
  .option-btn i {
    font-size: 18px;
  }
  
  /* Slider - Better mobile interaction */
  .slider {
    height: 8px;
    border-radius: 4px;
  }
  
  .slider::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
  }
  
  .slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
  }
  
  /* Preview Panel - Mobile optimization */
  .preview-panel {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    margin: 24px 0 0 0;
    max-height: none;
    border-radius: 16px 16px 0 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 999;
    max-height: 70vh;
    overflow: hidden;
  }
  
  .preview-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background: inherit;
    z-index: 1;
  }
  
  .preview-content {
    padding: 16px 20px;
    max-height: calc(70vh - 60px);
    overflow-y: auto;
  }
  
  /* MTA Sign in Preview - Mobile optimized */
  .preview-content .mta-station-sign {
    aspect-ratio: 9/16;
    max-width: 280px;
    margin: 0 auto;
    padding: 12px;
    border-radius: 8px;
  }
  
  .preview-content .station-name {
    font-size: 16px;
  }
  
  .preview-content .line-circle {
    width: 24px;
    height: 24px;
    font-size: 18px; /* 0.75 von 24px */
  }
  
  .preview-content .track-item {
    max-height: 36px;
    padding: 6px;
    gap: 8px;
  }
  
  .preview-content .track-circle {
    width: 24px;
    height: 24px;
    font-size: 18px; /* 0.75 von 24px */
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Increase touch targets */
  .nav-item,
  .theme-toggle,
  .option-btn,
  .preview-btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Remove hover effects on touch devices */
  .nav-item:hover,
  .theme-toggle:hover,
  .option-btn:hover,
  .step-card:hover {
    transform: none;
  }
  
  /* Add active states for touch feedback */
  .nav-item:active,
  .theme-toggle:active,
  .option-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
  }
}

.line-circle,
.mta-station-sign .line-circle,
.station-lines .line-circle,
.preview-content .line-circle {
  width: 36px;
  height: 36px;
  font-size: 24px; /* Verhältnis wie im Mockup: 0.75 von 48px */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  /* Schriftgröße an Kreisgröße angepasst */
}

.station-symbols {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 8px 0 0 0;
  /* Symbolreihe unter den Linien, mittig */
}
.station-symbols i {
  font-size: 18px;
  color: var(--text-primary);
  opacity: 0.7;
  transition: color 0.2s;
}
body.light-mode .station-symbols i {
  color: white; /* Dunkle Farbe für Sichtbarkeit in Light Mode */
  opacity: 1;
}
@media (max-width: 1200px) {
  .line-circle,
  .mta-station-sign .line-circle,
  .station-lines .line-circle,
  .preview-content .line-circle {
    width: 24px;
    height: 24px;
    font-size: 18px; /* 0.75 von 24px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
  }
  .station-symbols i { font-size: 16px; }
  .station-symbols { gap: 8px; }
}
