/* ==========================================================
   🌐 ADULTTOPLIST – Unified clean blue-grey theme
   Covers: header, main list, category & site view
   ========================================================== */

/* ----- BASE ----- */
body {
  background: #f8f4f9;
  color: #333333;
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.6;
}
html[data-bs-theme="dark"] body {
  background: #0e1116;
  color: #d9dde2;
}
a {
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover { color: #9c27b0; }

/* ----- HEADER ----- */
header {
  background: #9c27b0;
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header .logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.search-bar {
  flex-grow: 1;
  max-width: 380px;
  /*margin-left: auto;*/
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 0.55rem 1rem;
  border-radius: 30px;
  border: none;
  font-size: 0.95rem;
  outline: none;
  background: #fff;
  color: #333;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.search-bar input::placeholder { color: #7d8693; }

@media (max-width: 768px) {
  .search-bar {
    width: 100%;
    margin: 0.8rem 0 0;
    max-width: none;
  }
}

/* ----- FOOTER ----- */
footer {
  background: #9c27b0;
  color: #d9dde2;
  padding: 2rem 0;
  margin-top: 3rem;
}
footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin: 0 10px;
}
footer a:hover { text-decoration: underline; }
.footer-bottom {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #b6bcc5;
}

/* ----- CATEGORY CARDS (main page) ----- */
.category-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.25s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.category-header {
  background: #e91e63;
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 1rem;
}
.category-title-link {
  text-decoration: none;
  color: #fff;
  font-size:0.8rem;
  text-transform:uppercase;
}
.site-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1rem 1rem;
  font-size: .9rem;
}
.site-item {
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
}
.site-item:last-child { border-bottom: none; }
.site-item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.site-item a:hover { color: #0d6efd; }
.site-rank {
  color: #888;
  margin-right: 0.5rem;
}
.favicon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}
.see-all-wrapper {
  background: linear-gradient(90deg, #fce4ec, #e695f1);
  padding: 0.8rem;
  text-align: center;
}
.see-all-btn {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
}

/* ----- CATEGORY PAGE ----- */
.category-hero {
  background: #2f4c6e;
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}
.category-hero .category-title {
  font-size: 2rem;
  font-weight: 700;
}
.category-hero .category-desc {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 680px;
  margin: 0.5rem auto 0;
}

/* Category site cards */
.site-card {
  background: linear-gradient(90deg, #fce4ec, #f3e5f5);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1.25rem;
  transition: all 0.25s ease;
}
.site-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.1);
}
.site-rank {
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
}
.site-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.site-header .favicon {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  margin-right: 8px;
}
.site-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  text-transform:uppercase;
}
.site-desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}

/* Screenshot overlay */
.screenshot-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.screenshot-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.screenshot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,25,35,0.6);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  gap: 10px;
}
.screenshot-wrapper:hover .screenshot-overlay { opacity: 1; }
.overlay-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  width: 180px;
  text-align: center;
  transition: all 0.25s ease;
}
.btn-review { background: #2f4c6e; }
.btn-review:hover { background: #1f3551; }
.btn-visit { background: #4a6589; }
.btn-visit:hover { background: #3a5577; }

/* ----- SITE VIEW ----- */
.site-view {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  padding: 2.5rem;
  border-top: 5px solid #9c27b0;
}
.site-header h1 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #333333;
  text-transform:uppercase;
}
.site-header .text-muted {
  color: #6b7480 !important;
  font-size: 0.9rem;
}
.site-screenshot-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 3px solid #e8eaef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.site-screenshot-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.site-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,25,35,0.55);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  gap: 10px;
}
.site-screenshot-wrapper:hover .site-overlay { opacity: 1; }
.overlay-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  width: auto;
  max-width:300px;
  text-align: center;
}
.read-review { background: #2f4c6e; }
.open-website { background: #4a6589; }
.read-review:hover { background: #1f3551; }
.open-website:hover { background: #3a5577; }
.site-actions { margin-top: 1.5rem; text-align: center; }
.site-actions .btn-primary {
  background: #2f4c6e;
  border: none;
  color: #fff;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.site-actions .btn-primary:hover {
  background: #24364d;
}
.site-rating { margin-top: 1rem; text-align: center; }
.star {
  color: #f0b90b;
  font-size: 1.2rem;
  margin-right: 2px;
}
.right-panel {
  background: #f8f9fb;
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.03);
}
.pros-cons h5 {
  margin-top: 1.5rem;
  font-weight: 600;
  color: #2f4c6e;
}
.pros-cons ul { list-style: none; padding-left: 0; margin: 0; }
.pros-cons li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 6px;
  color: #333;
}
.pros li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2f4c6e;
  font-weight: bold;
}
.cons li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #888;
}
.btn-outline-secondary {
  color: #333;
  border-color: #333;
}
.btn-outline-secondary:hover {
  background: linear-gradient(90deg, #e91e63, #9c27b0);
  color: #fff;
}
/* ===== CTA BUTTON – Updated orange accent ===== */
.site-actions .btn-primary {
  background: #e67e22; /* narancs */
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(230, 126, 34, 0.4);
  transition: all 0.25s ease;
}
.site-actions .btn-primary:hover {
  background: #cf6d12;
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.6);
  transform: translateY(-2px);
}

/* Overlay gombokhoz is narancsos kiemelés */
.read-review { background: #2f4c6e; }
.read-review:hover {
  background: #1f3551;
  color: #fff;
}
.open-website {
  background: #e67e22;
  color: #fff;
}
.open-website:hover {
  background: #cf6d12;
  color: #fff;
  box-shadow: 0 0 12px rgba(230,126,34,0.4);
}

/* Link hover fix – CTA hover alatt ne legyen kék */
a.btn-primary:hover, 
.site-actions .btn-primary:hover, 
.overlay-btn:hover {
  text-decoration: none !important;
  color: #fff !important;
}
/* ==========================================================
   🧭 SITE VIEW FIXES — CTA below image & responsive screenshot
   ========================================================== */

/* 1️⃣ Screenshot aspect ratio fix */
.site-screenshot-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 3px solid #e8eaef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 16/9; /* fix arány */
  background: #f2f3f5;
}
.site-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover; /* nem nyúlik meg */
  display: block;
  border-radius: 10px;
}

/* 2️⃣ Hover overlay */
.site-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,25,35,0.55);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  gap: 10px;
}
.site-screenshot-wrapper:hover .site-overlay {
  opacity: 1;
}

/* 3️⃣ CTA gomb (kép alatt, mindig látszik) */
.site-actions {
  margin-top: 1.25rem;
  text-align: center;
}
.site-actions .btn-primary {
  background: #e67e22; /* narancs */
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(230,126,34,0.4);
  transition: all 0.25s ease;
}
.site-actions .btn-primary:hover {
  background: #cf6d12;
  box-shadow: 0 6px 16px rgba(230,126,34,0.6);
  transform: translateY(-2px);
}

/* 4️⃣ Hover gombok (overlay) maradnak narancs + kék */
.read-review {
  background: #2f4c6e;
}
.read-review:hover {
  background: #1f3551;
}
.open-website {
  background: #e67e22;
}
.open-website:hover {
  background: #cf6d12;
  box-shadow: 0 0 12px rgba(230,126,34,0.4);
}

/* 5️⃣ Mobil optimalizáció */
@media (max-width: 768px) {
  .site-screenshot-wrapper {
    aspect-ratio: 4/3;
  }
  .site-actions .btn-primary {
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
  }
}
/* ==========================================================
   🧭 SITE VIEW FIX – Always visible CTA under screenshot
   ========================================================== */

/* Screenshot container fix */
.site-screenshot-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 3px solid #e8eaef;
  aspect-ratio: auto;
  background: #f2f3f5;
  z-index: 1;
}
.site-screenshot {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  border-radius: 10px;
}

/* Hover overlay (z-index below CTA) */
.site-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,25,35,0.55);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  gap: 10px;
  z-index: 2;
}
.site-screenshot-wrapper:hover .site-overlay { opacity: 1; }

/* CTA below image – visible & clickable */
.site-actions {
  margin-top: 1.25rem;
  text-align: center;
  position: relative;
  z-index: 3; /* mindig felül legyen */
}

/* Orange CTA styling */
.site-actions .btn-primary {
  background: linear-gradient(90deg, #e91e63, #9c27b0);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(230,126,34,0.4);
  transition: all 0.25s ease;
}
.site-actions .btn-primary:hover {
  background: linear-gradient(90deg, #d81b60, #7b1fa2);
  box-shadow: 0 6px 16px rgba(230,126,34,0.6);
  transform: translateY(-2px);
}

/* Overlay buttons (still visible on hover) */
.read-review {
  background: #2f4c6e;
}
.read-review:hover {
  background: #1f3551;
}
.open-website {
  background: linear-gradient(90deg, #e91e63, #9c27b0);
}
.open-website:hover {
  background: linear-gradient(90deg, #d81b60, #7b1fa2);
  box-shadow: 0 0 12px rgba(230,126,34,0.4);
}

/* Responsive tweak */
@media (max-width: 768px) {
  .site-screenshot-wrapper {
    aspect-ratio: 4/3;
  }
  .site-actions .btn-primary {
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
  }
}
/* ===== Truncated description with fade ===== */
.site-description.truncated {
  max-height: 350px;
  overflow: hidden;
  position: relative;
}

.fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #f8f9fb);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

html[data-bs-theme="dark"] .fade-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0), #151a22);
}

/* Read More button */
.read-more-btn {
  display: inline-block;
  font-weight: 600;
  color: #2f4c6e;
  margin-top: 8px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s ease;
}
.read-more-btn:hover {
  color: #ff9800; /* narancs hover */
}
/* === Truncated description + fade + Read More === */
.site-description.truncated {
  max-height: 350px;               /* csak kb. annyit mutat, mint a screenshot magasság */
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}

.fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #f8f9fb 85%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* dark mode esetén halvány sötét fade */
html[data-bs-theme="dark"] .fade-overlay {
  background: linear-gradient(to bottom, rgba(14,17,22,0), #0e1116 85%);
}

.site-description.expanded {
  max-height: none;
}

.read-more-btn {
  display: inline-block;
  margin-top: 0.5rem;
  color: #2f4c6e;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.read-more-btn:hover {
  color: #f39c12; /* narancs kiemelés */
  text-decoration: underline;
}
/* === Elegant fade-out truncation for site description === */
.site-description.truncated {
  max-height: 350px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* csak akkor kell külön fade-overlay, ha nagyon világos háttér */
.fade-overlay {
  display: none;
}

.site-description.expanded {
  max-height: none;
  mask-image: none;
  -webkit-mask-image: none;
}

/* Read More gomb stílusa */
.read-more-btn {
  display: inline-block;
  margin-top: 0.6rem;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}
.read-more-btn:hover {
  color: #9c27b0;
  text-decoration: underline;
}
.search-page .site-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1rem;
  transition: all 0.25s ease;
}
.search-page .site-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.search-page .favicon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.user-rating .stars i {
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}
.user-rating .stars i.bi-star-fill {
  color: #ff9800;
}
.user-rating .stars i {
  font-size: 1.8rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s ease;
}

.user-rating .stars i.bi-star-fill {
  color: #ffb400; /* sárgás-narancs */
}

.user-rating .vote-message {
  color: #2f4c6e;
}
.category-short-desc {
  min-height: 40px;
  line-height: 1.5;
  color: #6b7280;
  font-size: 0.82rem;
  background: linear-gradient(90deg, #fce4ec, #f3e5f5);
  text-align: center;
}
html[data-bs-theme="dark"] .category-short-desc {
  color: #c5cad0;
}
.category-hero {
  background: linear-gradient(90deg, #fce4ec, #f3e5f5); /* világos pink-bíbor */
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, #e91e63, #9c27b0) 1; /* finom felső díszvonal */
  color: #333;
  text-align: center;
  padding: 10px 0 10px; /* kisebb, arányosabb */
  box-shadow: inset 0 -2px 6px rgba(0,0,0,0.05);
}

.category-title {
  font-weight: 700;
  font-size: 2rem;
  background: linear-gradient(90deg, #e91e63, #9c27b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* gradient szöveg */
}

.category-hero p.lead {
  font-size: 1.1rem;
  color: #555;
}
.site-rank-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px; /* 🔹 kisebb rés, 8 helyett */
  text-align: left;
}

.site-rank-header .site-rank {
  font-weight: 700;
  color: #e91e63;
  margin-right: 3px; /* finom távolság a rank és a favicon között */
}

.site-rank-header .favicon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: cover;
  margin-right: 4px; /* kis hely a név előtt */
  position: relative;
  top: -1px; /* hogy a szöveg baseline-hoz igazodjon */
}

.site-rank-header .site-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.site-desc {
  display: -webkit-box;
  -webkit-line-clamp: 4;     /* 🔹 maximum 4 sor */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  min-height: calc(1.4em * 4); /* hogy a kártyák egységes magasságúak legyenek */
}
.pros-cons {
  margin-top: 2rem;
}

/* 🔹 Címek */
.pros-cons h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ✅ Pros */
.pros-title {
  color: #2e7d32 !important; /* mély zöld */
}

.pros {
  background: #f1f8e9; /* halvány zöld háttér */
  border-radius: 10px;
  padding: 14px 20px; /* 👉 kicsit beljebb az ikonok miatt */
  border: 2px solid #a5d6a7;
  box-shadow:
    0 2px 8px rgba(46, 125, 50, 0.08),
    0 0 10px rgba(233, 30, 99, 0.08),  /* 💗 pink árnyalat */
    0 0 14px rgba(156, 39, 176, 0.06); /* 💜 bíbor árnyalat */
  transition: all 0.3s ease;
}

.pros li::before {
  content: "✅";
  color: #2e7d32;
  font-weight: 600;
  margin-right: 6px;   /* ✅ kicsit beljebb */
  margin-left: 6px;
  display: inline-block;
  transform: translateY(1px);
}

/* ❌ Cons */
.cons-title {
  color: #c62828 !important; /* mély piros */
}

.cons {
  background: #ffebee; /* halvány piros háttér */
  border-radius: 10px;
  padding: 14px 20px;
  border: 2px solid #ef9a9a;
  box-shadow:
    0 2px 8px rgba(198, 40, 40, 0.08),
    0 0 10px rgba(233, 30, 99, 0.08),
    0 0 14px rgba(156, 39, 176, 0.06);
  transition: all 0.3s ease;
}

.cons li::before {
  content: "❌";
  color: #c62828;
  font-weight: 600;
  margin-right: 6px;  /* ❌ kicsit beljebb */
  margin-left: 6px;
  display: inline-block;
  transform: translateY(1px);
}

/* 🔹 Listaelemek */
.pros li, .cons li {
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.45;
}

/* 🔹 Hover finomság */
.pros:hover, .cons:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.08),
    0 0 16px rgba(233, 30, 99, 0.1),
    0 0 22px rgba(156, 39, 176, 0.08);
}

/* 🔹 Mobil nézet */
@media (max-width: 768px) {
  .pros-cons .col-md-6 {
    margin-bottom: 1rem;
  }
}
.category-cta {
  text-align: right;
}

/* 🔹 Alap CTA */
.big-cta-btn {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* 🔸 Másodlagos (világosabb) verzió */
.big-cta-btn.secondary {
  background: linear-gradient(90deg, #fce4ec, #f3e5f5); /* halvány pink-bíbor */
  color: #7b1fa2;
  border: 2px solid rgba(233, 30, 99, 0.2);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.1);
  text-align: center;
}

.big-cta-btn.secondary:hover {
  background: linear-gradient(90deg, #f8bbd0, #e1bee7);
  box-shadow: 0 6px 18px rgba(233, 30, 99, 0.2);
  transform: translateY(-2px);
  color: #6a1b9a;
}

/* 📱 Mobilon középre */
@media (max-width: 768px) {
  .category-cta {
    text-align: center;
  }
  .big-cta-btn {
    font-size: 1.05rem;
    padding: 14px 24px;
  }
}
.site-header {
  background: linear-gradient(135deg, #f8faff, #f3e5f5); /* 💎 halvány kék-lila háttér */
  border: 1.5px solid rgba(147, 197, 253, 0.5); /* finom világoskék keret */
  border-radius: 50px; /* 🔹 gomb-szerű lekerekítés */
  padding: 12px 20px;
  box-shadow: 0 3px 10px rgba(156, 39, 176, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s ease-in-out;
}

.site-header:hover {
  box-shadow: 0 5px 14px rgba(156, 39, 176, 0.1);
  transform: translateY(-2px);
}

.site-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(90deg, #e91e63, #9c27b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-header .text-muted {
  color: #5c5c5c !important;
  font-size: 0.9rem;
}

.site-header img {
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  background: #fff;
  padding: 3px;
}
/* 💎 Külső kártya */
.pros-cons-wrapper {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #faf6ff); /* halvány kék-lila */
  border: 1.5px solid rgba(156, 39, 176, 0.15);
  border-radius: 16px;
  padding: 4px 28px 22px 28px;
  box-shadow:
    0 3px 10px rgba(156, 39, 176, 0.05),
    0 0 10px rgba(233, 30, 99, 0.04);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.pros-cons-wrapper:hover {
  box-shadow:
    0 6px 18px rgba(156, 39, 176, 0.08),
    0 0 14px rgba(233, 30, 99, 0.07);
  transform: translateY(-2px);
}

/* 🔹 Felső gradiens sáv */
.card-top-gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #e91e63, #9c27b0, #7e57c2);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

/* ✅ Pros & ❌ Cons tartalom */
.pros-cons h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pros li::before {
  content: "✅";
  color: #2e7d32;
  font-weight: 600;
  margin-right: 6px;
}

.cons li::before {
  content: "❌";
  color: #c62828;
  font-weight: 600;
  margin-right: 6px;
}

.pros li, .cons li {
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

/* 📱 Mobilbarát elrendezés */
@media (max-width: 768px) {
  .pros-cons .col-md-6 {
    margin-bottom: 1rem;
  }
}
/* 🎨 Logó stílus – FamousPornSites */
.logo span {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  text-transform: none;
  display: inline-block;
  background: linear-gradient(90deg, #ff80ab 0%, #fce4ec 35%, #82b1ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(255, 64, 129, 0.25);
  transition: all 0.3s ease;
}

.logo span:hover {
  transform: scale(1.04);
  text-shadow: 0 0 22px rgba(255, 105, 180, 0.4);
}

/* 🔹 Emoji és spacing finomhangolás */
.logo span::first-letter {
  letter-spacing: 1px;
}

/* 🧭 Mobilra kicsit kisebb méret */
@media (max-width: 768px) {
  .logo span {
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 64, 129, 0.2);
  }
}
body {
  background: linear-gradient(
    to bottom,
    #f9f5fb 0%,
    #f4e8f8 50%,
    #e9dcf4 100%
  );
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: #212529;
  font-family: 'Inter', sans-serif;
  margin: 0;
}
/* 💋 Szétszórt mintázat csak a header alatti felső részben */
body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 180px;
  right: 0;
  height: 600px;
  background:
    linear-gradient(to bottom, rgba(255,230,242,0) 80%, #ffe6f2 100%),
    url("../bg/bg-kiss.png") repeat-x top center;
  background-size: auto; /* 💋 nagyobb méret */
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}
.category-title-link {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s ease;
}

.category-title-link:hover {
  color: #f8bbd0 !important; /* világos aranysárga */
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.category-title-link span {
  transition: inherit;
}
.lead.text-muted p {
  margin-bottom: 0.8rem;
}

.lead.text-muted ul {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}

.lead.text-muted strong {
  color: #222;
}
.favicon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  background-size: auto;
}
.site-header .favicon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0px!important; /* 🔹 szorosabb távolság */
  position: relative;
  top: -1px; /* 🔹 finom optikai igazítás */
}

.site-header .site-name {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin: 0;
}
/* 🔹 Breadcrumb szebb megjelenítés */
.custom-breadcrumb {
  background: transparent;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.custom-breadcrumb .breadcrumb-item {
  margin-right: 6px;
  margin-top: 6px;
}

.custom-breadcrumb .breadcrumb-item a {
  display: inline-block;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
  color: #b6005c;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.custom-breadcrumb .breadcrumb-item a:hover {
  background: linear-gradient(135deg, #f8bbd0 0%, #f48fb1 100%);
  color: #fff;
  transform: translateY(-1px);
}

.custom-breadcrumb .breadcrumb-item.active {
  background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
  color: #fff;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* Ikon finom igazítás */
.custom-breadcrumb i {
  margin-right: 4px;
  vertical-align: -2px;
}
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: rgba(0, 0, 0, 0.35);
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  top: 9px; /* 🔹 lejjebb tolja a perjelet */
  display: inline-block;
  line-height: 1;
}
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: none !important;
}
.related-categories h2 {
  background: linear-gradient(90deg,#e91e63,#9c27b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
}

.related-cat-badge {
  background: linear-gradient(135deg, #fce4ec, #f3e5f5);
  color: #9c27b0;
  border: 1px solid rgba(156,39,176,0.2);
  padding: 8px 14px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.related-cat-badge:hover {
  background: linear-gradient(135deg,#e91e63,#9c27b0);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(156,39,176,0.25);
}
.homepage-content {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--bs-body-color);
}

.homepage-content h2,
.homepage-content h3 {
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.homepage-content h2 {
  font-size: 1.75rem;
  border-left: 5px solid var(--bs-primary);
  padding-left: 10px;
}

.homepage-content h3 {
  font-size: 1.35rem;
  color: var(--bs-primary);
}

.homepage-content p {
  margin-bottom: 1.2rem;
  text-align: justify;
}

.homepage-content a {
  color: var(--bs-primary);
  text-decoration: underline;
  transition: color 0.3s;
}
.homepage-content a:hover {
  color: var(--bs-link-hover-color, #0d6efd);
  text-decoration: none;
}

.homepage-content ul, 
.homepage-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.homepage-content li {
  margin-bottom: 0.4rem;
}

.homepage-content blockquote {
  border-left: 4px solid var(--bs-primary);
  padding-left: 1rem;
  font-style: italic;
  opacity: 0.9;
}

.homepage-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}
/* 🌸 Elegant content styling for FamousPornSites site description sections */
.site-description {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  color: #4a3f53;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(156, 39, 176, 0.15);
  border-radius: 14px;
  padding: 2rem 2.2rem;
  line-height: 1.7;
  box-shadow: 0 4px 15px rgba(156, 39, 176, 0.08);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.site-description:hover {
  box-shadow: 0 6px 18px rgba(156, 39, 176, 0.15);
}

/* Főcímek (H2) */
.site-description h2 {
  font-weight: 700;
  font-size: 1.75rem;
  color: #7a1fa2;
  border-left: 5px solid #9c27b0;
  padding-left: 12px;
  margin-bottom: 1rem;
}

/* Alcímek (H3) */
.site-description h3 {
  font-weight: 600;
  font-size: 1.35rem;
  color: #9c27b0;
  margin-top: 1.8rem;
  margin-bottom: 0.75rem;
}

/* Bekezdések */
.site-description p {
  margin-bottom: 1.2rem;
  text-align: justify;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.4);
}

/* Linkek */
.site-description a {
  color: #9c27b0;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.site-description a:hover {
  color: #7a1fa2;
  text-decoration: none;
}

/* Finom tagolás és responsive beállítások */
@media (max-width: 768px) {
  .site-description {
    padding: 1.5rem;
    font-size: 0.98rem;
  }
  .site-description h2 {
    font-size: 1.5rem;
  }
  .site-description h3 {
    font-size: 1.2rem;
  }
}
/* Ne legyen fix alap háttér, ezt hagyd így vagy töröld a background-ot */
.category-header {
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 1rem;
}

/* --- SZÍNEK A BOOTSTRAP OSZLOPOK SORRENDJE ALAPJÁN --- */
/* A .row közvetlen gyerekeit célozzuk, amelyek col-* oszlopok */
:root {
  --color-1: #e91e63; /* pink */
  --color-2: #9c27b0; /* lila */
  --color-3: #8e24aa; /* ibolya */
  --color-4: #6a1b9a; /* mély lila */
  --color-5: #3f51b5; /* indigó */
  --color-6: #00bcd4; /* türkiz */
  --color-7: #ff7043; /* narancs */
  --color-8: #ffca28; /* arany */
  --color-9: #d32f2f; /* vörös */
  --color-10: #f06292; /* világos pink */
  --color-11: #512da8; /* sötét indigó */
  --color-12: #607d8b; /* kékesszürke */
}

/* 🔁 Automatikusan ismétlődő 12 szín */
.row > [class^="col-"]:nth-child(12n+1)  .category-header { background-color: var(--color-1); }
.row > [class^="col-"]:nth-child(12n+2)  .category-header { background-color: var(--color-2); }
.row > [class^="col-"]:nth-child(12n+3)  .category-header { background-color: var(--color-3); }
.row > [class^="col-"]:nth-child(12n+4)  .category-header { background-color: var(--color-4); }
.row > [class^="col-"]:nth-child(12n+5)  .category-header { background-color: var(--color-5); }
.row > [class^="col-"]:nth-child(12n+6)  .category-header { background-color: var(--color-6); }
.row > [class^="col-"]:nth-child(12n+7)  .category-header { background-color: var(--color-7); }
.row > [class^="col-"]:nth-child(12n+8)  .category-header { background-color: var(--color-8); color:#222 !important; }
.row > [class^="col-"]:nth-child(12n+9)  .category-header { background-color: var(--color-9); }
.row > [class^="col-"]:nth-child(12n+10) .category-header { background-color: var(--color-10); }
.row > [class^="col-"]:nth-child(12n+11) .category-header { background-color: var(--color-11); }
.row > [class^="col-"]:nth-child(12n+12) .category-header { background-color: var(--color-12); }

/* 🌟 Featured jelölés badge */
.badge.bg-gradient-pink {
  background: linear-gradient(135deg, #e91e63, #0d6efd);

  font-size: 0.75rem;
  padding: 0.35em 0.6em;
  border-radius: 6px;
  font-weight: 600;
}

/* 💎 Kiemelt sor */
.site-item.featured {
  background: rgba(255, 192, 203, 0.12);
  border-left: 3px solid #e91e63;
  border-radius: 4px;
  padding-left: 6px;
  transition: all 0.25s ease;
}

.site-item.featured:hover {
  background: rgba(255, 192, 203, 0.22);
}
/* ====== ALAP STÍLUSOK ====== */
.homepage-content {
  font-family: "Poppins","Segoe UI",sans-serif;
  color: #2c1a36;
  line-height: 1.7;
  /* ha meg akarod tartani a bootstrap bg-light-ot, ezt hagyd ki */
  background: #faf7fc; /* felülírja a bg-light-ot */
  max-width: auto;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}
/* ====== H2 CÍM ====== */
.homepage-content h2 {
  font-size: 1.9rem;
  margin: 2rem 0 1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #9c27b0, #6a1b9a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
  position: relative;
}

.homepage-content h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #9c27b0, #6a1b9a);
  margin-top: 8px;
  border-radius: 4px;
}

/* ====== H3 ALCÍM ====== */
.homepage-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #6a1b9a;
  margin: 1.8rem 0 0.8rem;
  position: relative;
}

.homepage-content h3::before {
  content: "◆";
  color: #9c27b0;
  margin-right: 6px;
  font-size: 0.9rem;
}

/* ====== BEKEZDÉSEK ====== */
.homepage-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #3e244d;
}

.homepage-content p strong {
  color: #6a1b9a;
}

/* ====== LISTÁK ====== */
.homepage-content ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}

.homepage-content ul li {
  background: rgba(156, 39, 176, 0.08);
  border-left: 4px solid #9c27b0;
  padding: 1rem 1rem 1rem 1.2rem;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.homepage-content ul li:hover {
  background: rgba(156, 39, 176, 0.15);
  transform: translateX(4px);
}

/* ====== LINK STÍLUS ====== */
.homepage-content a {
  color: #9c27b0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.homepage-content a:hover {
  color: #6a1b9a;
  text-decoration: underline;
}
/* 🟣 Kategória hero blokk – rövid leírással */
.category-hero {
  background: linear-gradient(
    180deg,
    rgba(156, 39, 176, 0.08) 0%,
    rgba(106, 27, 154, 0.06) 100%
  );
  border-top: 3px solid hsl(var(--hue), 70%, 50%);
  border-bottom: 3px solid hsl(var(--hue), 70%, 50%);
  box-shadow: 0 0 20px rgba(106, 27, 154, 0.1);
  backdrop-filter: blur(3px);
}

.category-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #4a0072;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

/* 🔹 Rövid leírás */
.category-hero .category-description {
  font-size: 1.05rem;
  color: #3b0a4b!important;
  text-align: justify;
  line-height: 1.7;
  max-width: 100%;
  margin: 0.5rem auto 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: rgba(250, 245, 250, 0.85);
  box-shadow: 0 2px 8px rgba(156, 39, 176, 0.08);
  transition: all 0.3s ease;
}

.category-hero .category-description:hover {
  background: rgba(253, 250, 254, 0.95);
  box-shadow: 0 4px 12px rgba(106, 27, 154, 0.15);
  transform: translateY(-2px);
}

/* 🟣 Hosszú leírás blokk (HTML formázott) */
.category-description {
  background: rgba(250, 245, 250, 0.85);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 100%;
  line-height: 1.75;
  color: #2d0639;
  box-shadow: 0 4px 18px rgba(156, 39, 176, 0.08);
  transition: all 0.3s ease;
}

.category-description:hover {
  background: rgba(253, 250, 254, 0.95);
  box-shadow: 0 6px 24px rgba(156, 39, 176, 0.15);
}

/* H2 */
.category-description h2 {
  color: #6a1b9a;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 5px solid #9c27b0;
  padding-left: 0.6rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* H3 */
.category-description h3 {
  color: #7b1fa2;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* Bekezdések */
.category-description p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #3b0a4b;
  text-align: justify;
}

/* Felsorolások */
.category-description ul {
  list-style: none;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.category-description ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.4rem;
  color: #4a0072;
  font-size: 1rem;
}

.category-description ul li::before {
  content: "💜";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  line-height: 1.2;
}
/* 💎 Privacy Policy – Bíbor-lila, áttetsző, elegáns stílus */
.page-content {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4a3f53; /* finom sötétlila-szürke szöveg */
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(156, 39, 176, 0.15);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(156, 39, 176, 0.08);
  backdrop-filter: blur(4px);
  padding: 2rem 2.5rem;
}

/* 🔹 Főcím (h1.page-content) */
h1.page-content {
  font-weight: 800;
  font-size: 2.2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #e91e63, #9c27b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

/* 🔸 Alcímek */
.page-content h2 {
  font-weight: 700;
  font-size: 1.6rem;
  color: #7a1fa2;
  border-left: 5px solid #9c27b0;
  padding-left: 12px;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.page-content h3 {
  font-weight: 600;
  font-size: 1.3rem;
  color: #9c27b0;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* 📝 Bekezdések */
.page-content p {
  margin-bottom: 1.2rem;
  text-align: justify;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.4);
}

.page-content p strong {
  color: #7a1fa2;
  font-weight: 600;
}

/* 🔗 Linkek */
.page-content a {
  color: #9c27b0;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.page-content a:hover {
  color: #e91e63;
  text-decoration: none;
}

/* 📋 Listák */
.page-content ul, 
.page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.page-content li {
  margin-bottom: 0.4rem;
  color: #5a4b63;
  line-height: 1.6;
}

.page-content li::marker {
  color: #9c27b0;
}

/* ✨ Finom animáció megjelenéskor */
.page-content {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 🌸 Harmonizált tipográfia a lilás-bíbor témához */
.homepage-content {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4a3f53; /* finom sötétlila-szürke szöveg */
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(156, 39, 176, 0.15);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(156, 39, 176, 0.08);
  backdrop-filter: blur(4px);
}

/* 🔹 Főcímek */
.homepage-content h2 {
  font-weight: 700;
  font-size: 1.8rem;
  color: #7a1fa2; /* kicsit sötétebb a headernél */
  border-left: 5px solid #9c27b0;
  padding-left: 12px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* 🔸 Alcímek */
.homepage-content h3 {
  font-weight: 600;
  font-size: 1.35rem;
  color: #9c27b0;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* 🔤 Bekezdések */
.homepage-content p {
  margin-bottom: 1.2rem;
  text-align: justify;
  text-shadow: 0 0 1px rgba(255,255,255,0.4);
}

/* 🔗 Linkek */
.homepage-content a {
  color: #9c27b0;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.homepage-content a:hover {
  color: #7a1fa2;
  text-decoration: none;
}

/* 📋 Listák */
.homepage-content ul, 
.homepage-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.homepage-content li::marker {
  color: #9c27b0;
}

/* 💬 Idézetek */
.homepage-content blockquote {
  border-left: 4px solid #c45ce2;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #6a5779;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
}

/* 🖼️ Képek */
.homepage-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1rem 0;
  box-shadow: 0 3px 10px rgba(156, 39, 176, 0.2);
}

/* ✨ Táblázatok (ha használsz) */
.homepage-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.homepage-content th,
.homepage-content td {
  border: 1px solid rgba(156, 39, 176, 0.2);
  padding: 0.6rem 0.8rem;
}
.homepage-content th {
  background: rgba(156, 39, 176, 0.1);
  color: #7a1fa2;
  font-weight: 600;
}
/* 💚 Pulzáló (lélegző) pont a LIVE SEX CAMS link elé */
.navbar-nav .nav-link.live-cam::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 50%;
  background-color: #62e25b;
  box-shadow: 0 0 6px rgba(98,226,91,.8);
  animation: pulse 1.8s ease-in-out infinite;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* 🌟 Finom pulzáló animáció */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 6px rgba(98,226,91,.8);
  }
  50% {
    transform: scale(1.5);
    opacity: 0.4;
    box-shadow: 0 0 14px rgba(98,226,91,.4);
  }
}
/* A teljes menü szélességét kitöltő elrendezés */
.navbar-nav {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr; /* minden oszlop egyenlő széles */
  width: 100%;
  text-align: center; /* szöveg középre */
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

/* minden menüpont egyforma széles */
.navbar-nav > li {
  list-style: none;
  width: 100%; /* 1fr miatt amúgy is egyenlő lesz, de ez biztosítja */
}

/* a linkek töltsék ki az egész cellát */
.navbar-nav > li > a {
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  text-decoration: none;
}

/* opcionális: hover-effekt */
.navbar-nav > li > a:hover {
  background: rgba(255,255,255,0.1);
}
/* === 🌐 Desktop nézet (nagy kijelzők) === */
@media (min-width: 992px) {
  .navbar-nav {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    width: 100%;
    text-align: center;
  }

  .navbar-nav > li {
    list-style: none;
  }

  .navbar-nav > li > a {
    display: block;
    width: 100%;
    padding: 0.75rem 0.5rem;
  }
}

/* === 📱 Mobil nézet (hamburger menü nyitva) === */
@media (max-width: 991px) {
  .navbar-nav {
    display: block;
    width: 100%;
    text-align: left;
  }

  .navbar-nav > li {
    list-style: none;
    width: 100%;
  }

  .navbar-nav > li > a {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* opcionális: az utolsó link aljáról levesszük a vonalat */
  .navbar-nav > li:last-child > a {
    border-bottom: none;
  }
}
/* 🌸 Halvány elválasztóvonal a menüpontok között (csak desktopon) */
@media (min-width: 992px) {
  .navbar-nav > li {
    position: relative;
  }

  .navbar-nav > li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.35); /* halvány fehér/szürkés vonal */
    font-weight: 300;
    font-size: 0.9rem;
    pointer-events: none;
  }

  /* kis távolság a linkek között, hogy ne tapadjon a vonalhoz */
  .navbar-nav > li > a {
    padding: 0.75rem 0.75rem;
  }
}
