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

:root {
  --color-bg: #0d0d0d;
  --color-bg-card: #1a1a2e;
  --color-bg-card-hover: #222244;
  --color-text: #e0e0e0;
  --color-text-muted: #999;
  --color-accent: #e63946;
  --color-accent-secondary: #9b59b6;
  --color-accent-gradient: linear-gradient(135deg, #e63946, #9b59b6);
  --color-border: #2a2a3e;
  --font-main: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --container-max: 1200px;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-accent-secondary);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  line-height: 1.3;
}

h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.accent {
  background: var(--color-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.site-header {
  background: rgba(13, 13, 13, 0.95);
  border-bottom: 1px solid var(--color-border);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
}

.logo-icon {
  font-size: 1.6rem;
}

.logo-text {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.logo .accent {
  -webkit-text-fill-color: transparent;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 5px;
}

.nav-list a {
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-list a:hover {
  background: var(--color-bg-card);
  color: #fff;
}

.nav-highlight {
  color: var(--color-accent) !important;
  font-weight: 700;
}

.lang-selector select {
  background: transparent;
  color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.9rem;
  cursor: pointer;
}

.lang-selector select option {
  background: var(--color-bg);
}

/* Footer */
.site-footer {
  background: #0a0a15;
  border-top: 1px solid var(--color-border);
  padding: 50px 0 30px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-col p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-col ul a:hover {
  color: var(--color-accent);
}

.footer-phone {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-accent) !important;
  margin-bottom: 5px;
}

.footer-price {
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.footer-legal {
  font-size: 0.75rem !important;
  color: #666 !important;
}

/* Breadcrumb */
.breadcrumb {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb-sep {
  margin: 0 8px;
  color: var(--color-border);
}

.breadcrumb span:last-child {
  color: var(--color-text);
}

/* Phone CTA Banner */
.phone-cta {
  background: var(--color-accent-gradient);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  margin: 40px 0;
}

.phone-cta h2 {
  color: #fff;
  margin-bottom: 10px;
}

.phone-cta .phone-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin: 10px 0;
  letter-spacing: 2px;
}

.phone-cta .phone-price {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Profile Cards */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.profile-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.15);
  border-color: var(--color-accent);
}

.profile-card-avatar {
  width: 100%;
  height: 200px;
  background: var(--color-accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.profile-card-body {
  padding: 20px;
}

.profile-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.profile-card-meta {
  color: var(--color-accent);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.profile-card-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.profile-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

.profile-card-status .dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* FAQ Section */
.faq-section {
  margin: 50px 0;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 22px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-accent);
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 22px 18px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Page Hero */
.page-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(230, 57, 70, 0.08), transparent);
}

.page-hero h1 {
  font-size: 2.5rem;
  background: var(--color-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.page-hero .subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Content Sections */
.content-section {
  padding: 40px 0;
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

/* Category Grid on Homepage */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.category-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.category-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.1);
}

.category-card .cat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.category-card h3 {
  color: #fff;
  margin-bottom: 8px;
}

.category-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Internal Links Section */
.internal-links {
  margin: 40px 0;
  padding: 30px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.internal-links h2 {
  margin-bottom: 15px;
}

.internal-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.internal-links-list a {
  padding: 8px 18px;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 25px;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: all 0.2s;
}

.internal-links-list a:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* Topliste CTA */
.topliste-cta {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.topliste-cta h2 {
  margin-bottom: 10px;
}

.topliste-cta p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.btn-topliste {
  display: inline-block;
  background: var(--color-accent-gradient);
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s;
  text-decoration: none;
}

.btn-topliste:hover {
  opacity: 0.85;
}

/* Topliste Grid */
.topliste-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.topliste-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  gap: 15px;
  padding: 20px;
  transition: all 0.3s;
}

.topliste-card.is-online {
  border-color: rgba(46, 204, 113, 0.3);
}

.topliste-card.is-online:hover {
  border-color: #2ecc71;
  box-shadow: 0 5px 20px rgba(46, 204, 113, 0.1);
}

.topliste-card.is-soon {
  opacity: 0.7;
}

.topliste-avatar {
  font-size: 2.5rem;
  min-width: 50px;
  text-align: center;
}

.topliste-body {
  flex: 1;
}

.topliste-name {
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.topliste-meta {
  color: var(--color-accent);
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.topliste-desc {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.topliste-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 20px;
}

.topliste-status.online {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

.topliste-status.soon {
  background: rgba(241, 196, 15, 0.15);
  color: #f1c40f;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}

/* Legal / Impressum */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.legal-content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    padding: 15px 20px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list a {
    padding: 12px 14px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  h1 {
    font-size: 1.7rem;
  }

  .phone-cta .phone-number {
    font-size: 1.5rem;
  }

  .profiles-grid {
    grid-template-columns: 1fr;
  }
}

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

  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SUGAR BABY DIRECTORY STYLES
   ============================================ */

.txy-verzeichnis {
  padding: 2rem 0 4rem;
}

.txy-kopf {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.txy-kopf h1 {
  margin-bottom: 0.75rem;
}

.txy-untertitel {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Age gate */
[data-gate="pending"] {
  text-align: center;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-card);
}

[data-gate="pending"] button {
  padding: 0.9rem 2rem;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

[data-gate="pending"] button:hover {
  background: var(--color-accent-secondary);
}

/* Hidden content (shown after age gate) */
.txy-verborgen {
  display: none;
}

/* Content sections - style by tag type since classes are hashed */
.txy-verzeichnis dl {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.txy-verzeichnis dt {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.txy-verzeichnis dt:first-child {
  margin-top: 0;
}

.txy-verzeichnis dd {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 0;
}

.txy-verzeichnis section {
  margin: 2rem 0;
}

.txy-verzeichnis section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.txy-verzeichnis section p,
.txy-verzeichnis article p,
.txy-verzeichnis details p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.txy-verzeichnis details {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.txy-verzeichnis summary {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  cursor: pointer;
  padding-bottom: 0.75rem;
}

.txy-verzeichnis article {
  margin: 2rem 0;
}

.txy-verzeichnis article header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

/* Meter elements */
.txy-verzeichnis meter {
  width: 100%;
  height: 1.2rem;
  margin: 0.5rem 0 1rem;
  border-radius: 4px;
}

/* Related cities */
.txy-verwandte {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.txy-verwandte-titel {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.txy-staedte-liste {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.txy-staedte-liste li a {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.txy-staedte-liste li a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
