﻿/* Euro-style directory â€” Turkey edition */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #b5121b;
  --red-dark: #8f0e15;
  --red-light: #d41822;
  --black: #0a0a0a;
  --nav-bg: #111111;
  --grey-bg: #ececec;
  --grey-border: #d8d8d8;
  --text: #222;
  --text-muted: #666;
  --sidebar-w: 248px;
}

html { font-size: 13px; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.4;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* â”€â”€ Adblock banner â”€â”€ */
.adblock-banner {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: bold;
}
.adblock-banner a { color: #fff; text-decoration: underline; }

/* â”€â”€ Top utility bar â”€â”€ */
.top-bar {
  background: var(--black);
  color: #ccc;
  font-size: 11px;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}
.top-bar a { color: #ccc; }
.top-bar a:hover { color: #fff; }
.top-login {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-login input {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 4px 8px;
  font-size: 11px;
  width: 110px;
}
.btn-login {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
}
.btn-login:hover { background: var(--red-dark); }
.lang-select {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 3px 8px;
  color: #fff;
  font-size: 11px;
}
.theme-toggle {
  background: #1a1a1a;
  border: 1px solid #444;
  color: #ffd54f;
  font-size: 16px;
  cursor: pointer;
  width: 32px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.theme-toggle:hover {
  background: #333;
  border-color: #666;
  transform: scale(1.05);
}

/* â”€â”€ Header logo + nav â”€â”€ */
.site-header {
  background: var(--black);
  border-bottom: 3px solid var(--red);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.logo-block {
  padding: 10px 20px 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}
.logo-text {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}
.logo-text .line1 { font-size: 22px; }
.logo-text .line2 { font-size: 18px; }
.logo-text .line3 { font-size: 14px; color: #aaa; }
.logo-silhouette {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.logo-silhouette svg { width: 100%; height: 100%; }

.main-nav {
  flex: 1;
  display: flex;
  align-items: stretch;
}
.main-nav a {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-top: 3px solid transparent;
  white-space: nowrap;
}
.main-nav a:hover { background: #1a1a1a; text-decoration: none; }
.main-nav a.active {
  border-top-color: var(--red);
  background: #1a1a1a;
}

/* â”€â”€ Layout â”€â”€ */
.page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  background: #fff;
}

/* â”€â”€ Sidebar â”€â”€ */
.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  border-right: 1px solid var(--grey-border);
  background: #fff;
  position: sticky;
  top: 0;
  max-height: 100vh;
  overflow-y: auto;
}
.sidebar-search {
  background: #2b2b2b;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: #aaa;
  font-size: 12px;
  outline: none;
}
.sidebar-search input::placeholder { color: #777; }
.sidebar-search svg { flex-shrink: 0; }

.region-header {
  background: var(--red);
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 8px 12px;
}

.location-list { list-style: none; }

.province-item { border-bottom: 1px solid #eee; }

.province-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  cursor: pointer;
  user-select: none;
  font-size: 12px;
  color: var(--red);
  font-weight: bold;
}
.province-row:hover { background: #fafafa; }
.province-row.open { background: #fff5f5; }

.toggle-btn {
  width: 14px;
  height: 14px;
  background: var(--red);
  color: #fff;
  border: none;
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  font-weight: bold;
  padding: 0;
}
.toggle-btn-empty {
  background: transparent;
  cursor: default;
  visibility: hidden;
}
.province-row .province-name {
  flex: 1;
  color: inherit;
  text-decoration: none;
}
.province-row .province-name:hover {
  color: var(--red);
  text-decoration: none;
}
.district-row {
  display: block;
  text-decoration: none;
  color: #333;
}

.province-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #ddd;
}

.province-name { flex: 1; min-width: 0; }
.province-count {
  color: #888;
  font-size: 11px;
  font-weight: 600;
  margin-left: auto;
  flex-shrink: 0;
}
.district-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 12px 5px 28px;
  font-size: 11px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
}
.district-row:hover { background: #f8f8f8; color: var(--red); }
.district-name { flex: 1; min-width: 0; }
.district-count { color: #888; flex-shrink: 0; font-weight: 600; }

.district-list {
  display: none;
  list-style: none;
  border-left: 4px solid var(--red);
  margin-left: 0;
  background: #fff;
}
.district-list.open { display: block; }

/* â”€â”€ Main content â”€â”€ */
.main-content {
  flex: 1;
  min-width: 0;
  padding: 16px 18px 30px;
}

.page-title {
  color: var(--red);
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
  text-transform: none;
}

/* â”€â”€ Filtreler (hover acilir â€” referans site) â”€â”€ */
.filters-wrap {
  margin-bottom: 14px;
}

/* Erotik masaj â€” ulke / sehir (buyuk kutular) */
.location-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.filter-drop-lg {
  flex: 0 0 auto;
  min-width: 160px;
  max-width: 220px;
}

.filter-trigger-lg {
  padding: 10px 28px 10px 12px !important;
  font-size: 12px !important;
  min-height: 38px;
}

.filter-panel-cities {
  max-height: 280px;
  min-width: 180px;
}

.filters-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 3px;
  margin-bottom: 8px;
}

.filter-drop {
  position: relative;
  flex: 1;
  min-width: 0;
  z-index: 1;
}
.filter-drop:hover,
.filter-drop:focus-within {
  z-index: 200;
}

.filter-trigger {
  width: 100%;
  background: #fff;
  border: 1px solid #b8b8b8;
  padding: 8px 22px 8px 8px;
  font-size: 11px;
  color: #222;
  cursor: pointer;
  text-align: left;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Arial, Helvetica, sans-serif;
}
.filter-drop.has-selection .filter-trigger {
  background: #fff8f8;
  border-color: var(--red);
  color: var(--red);
  font-weight: bold;
}
.filter-trigger:hover {
  border-color: #888;
  background: #fafafa;
}

.filter-arrow {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 7px;
  color: var(--red);
  line-height: 1;
}

.filter-panel {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 100%;
  width: max-content;
  max-width: 220px;
  background: #fff;
  border: 1px solid #b8b8b8;
  border-top: 2px solid var(--red);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  max-height: 240px;
  overflow-y: auto;
  z-index: 300;
}

.filter-drop:hover .filter-panel,
.filter-drop:focus-within .filter-panel {
  display: block;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  font-size: 11px;
  color: #333;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
}
.filter-option:hover {
  background: #f5f5f5;
  color: var(--red);
}
.filter-option input {
  accent-color: var(--red);
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.filter-panel-actions {
  padding: 6px 10px;
  border-top: 1px solid #eee;
  background: #fafafa;
}
.filter-clear-btn {
  background: none;
  border: none;
  color: var(--red);
  font-size: 10px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

/* Hizli checkbox filtreler â€” kutulu */
.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 6px;
}

.chk-box {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f0f0;
  border: 1px solid #b8b8b8;
  padding: 7px 10px;
  font-size: 10px;
  color: #333;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.chk-box:hover {
  background: #e8e8e8;
  border-color: #999;
}
.chk-box.active {
  background: #fff0f0;
  border-color: var(--red);
}
.chk-box input {
  width: 12px;
  height: 12px;
  accent-color: var(--red);
  flex-shrink: 0;
}
.chk-label {
  font-weight: bold;
  letter-spacing: 0.2px;
}
.chk-count {
  color: #666;
  font-weight: normal;
}

.filter-result-hint {
  font-size: 11px;
  color: var(--red);
  font-weight: bold;
  min-height: 16px;
  margin: 4px 0 8px;
}

@media (max-width: 1100px) {
  .filters-row { flex-wrap: wrap; }
  .filter-drop { flex: 1 1 calc(20% - 3px); min-width: 90px; }
}

/* Profile grid */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

@media (max-width: 1300px) { .profiles-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1100px) { .profiles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .profiles-grid { grid-template-columns: repeat(2, 1fr); } }

.profile-card {
  border: 1px solid #d0d0d0;
  background: #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
}
.profile-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.profile-card .card-name {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  padding: 9px 10px 8px;
  color: #111;
  background: #fff;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Profil fotografi: orijinal 600x888 px, ekranda ~190x281 px (600:888 orani) */
.profile-card .card-img-wrap {
  position: relative;
  aspect-ratio: 600 / 888;
  overflow: hidden;
  background: #ddd;
  flex: 1;
}
.profile-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Domain filigranÄ± â€” foto/video Ã¼zeri */
.img-watermark {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 92%;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.img-watermark-text {
  color: rgba(255, 255, 255, 0.52);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  text-overflow: ellipsis;
}
.img-watermark-mark {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.5;
  background: center / contain no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 4c-1.5 2.5-4.5 4-7 4 0 5 3.5 9 7 11 3.5-2 7-6 7-11-2.5 0-5.5-1.5-7-4z'/%3E%3C/svg%3E");
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.4));
}
.img-watermark-card .img-watermark-text { font-size: 11px; }
.img-watermark-detail .img-watermark-text { font-size: 18px; }
.img-watermark-detail .img-watermark-mark { width: 18px; height: 18px; opacity: 0.55; }
.img-watermark-thumb .img-watermark-text { font-size: 7px; }
.img-watermark-thumb .img-watermark-mark { width: 8px; height: 8px; }
.img-watermark-video .img-watermark-text,
.img-watermark-modal .img-watermark-text { font-size: 15px; }
.profile-thumb { position: relative; overflow: hidden; }
.profile-verify-video-wrap { position: relative; }
.ev-card-media { position: relative; }
.ev-modal-player-wrap { position: relative; }

/* Badges — köşe şeritleri */
.badge-vip {
  position: absolute;
  top: 14px;
  right: -30px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 34px;
  transform: rotate(45deg);
  z-index: 3;
  letter-spacing: 1px;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
}

/* VIP★ — gerçek altın parıltı */
.badge-vip-gold {
  position: absolute;
  top: 14px;
  right: -30px;
  padding: 4px 34px;
  transform: rotate(45deg);
  z-index: 3;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #3d2a00;
  text-shadow:
    0 1px 0 rgba(255, 248, 220, 0.85),
    0 -1px 0 rgba(90, 50, 0, 0.35);
  background:
    linear-gradient(
      115deg,
      #6b4a0a 0%,
      #a67c1a 12%,
      #f5e6a3 28%,
      #d4af37 42%,
      #fff8dc 50%,
      #c9a227 58%,
      #f0d060 72%,
      #8b6914 88%,
      #5c4208 100%
    );
  background-size: 220% 100%;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 0 10px rgba(212, 175, 55, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(80, 50, 0, 0.35);
  border-top: 1px solid rgba(255, 248, 200, 0.65);
  border-bottom: 1px solid rgba(90, 55, 0, 0.4);
  animation: vip-gold-shine 2.8s ease-in-out infinite;
}
@keyframes vip-gold-shine {
  0% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .badge-vip-gold { animation: none; background-position: 40% 50%; }
}

/* TOP — altın şerit */
.badge-top {
  position: absolute;
  top: 14px;
  right: -30px;
  background: linear-gradient(135deg, #8b6914 0%, #f0d060 40%, #d4af37 70%, #a67c1a 100%);
  color: #1a1200;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 34px;
  transform: rotate(45deg);
  z-index: 3;
  letter-spacing: 1px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.3),
    0 0 8px rgba(212, 175, 55, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  text-shadow: 0 1px 0 rgba(255, 248, 220, 0.7);
}
.badge-elite {
  position: absolute;
  top: 14px;
  right: -30px;
  background: linear-gradient(135deg, #5b2c6f 0%, #9b59b6 50%, #6c3483 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 34px;
  transform: rotate(45deg);
  z-index: 3;
  letter-spacing: 1px;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.badge-verified {
  position: absolute;
  bottom: 18px;
  left: -34px;
  background: #1a6fb5;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 4px 36px;
  transform: rotate(45deg);
  z-index: 3;
  letter-spacing: 0.4px;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}

/* Sol üst yuvarlak rozetler */
.badge-side {
  position: absolute;
  left: 7px;
  top: 8px;
  transform: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 3;
}
.side-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.05;
  border: 2px solid rgba(255,255,255,0.65);
  padding: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,.28);
  word-break: break-word;
  hyphens: auto;
}
.side-badge.purple { background: #7b2d8e; }
.side-badge.blue   { background: linear-gradient(160deg, #2b7ec4, #155a9a); }
.side-badge.green  { background: #2d8e4e; }
.side-badge.red    { background: var(--red); }
.side-badge.porn   {
  background: linear-gradient(160deg, #f4c430, #e8a317);
  color: #111;
  font-size: 5.5px;
  border-color: rgba(255,255,255,0.8);
}
.side-badge.hot    { background: #d62828; }
.side-badge.duo    { background: #9b2226; }
.side-badge.couple { background: #ae2012; font-size: 6px; }
.side-badge.gfe    { background: #bc4749; }
.side-badge.milf   { background: #6a4c93; }
.side-badge.bdsm   { background: #222; border-color: #c1121f; }
.side-badge.anal   { background: #5c4d7a; }
.side-badge.massage { background: #2a9d8f; font-size: 6px; }
.side-badge.outcall { background: #264653; font-size: 6px; }
.side-badge.incall { background: #1d3557; font-size: 6px; }
.side-badge.h24    { background: #2d8e4e; }
.side-badge.trans  { background: #5b8def; }
.side-badge.agency { background: #495057; font-size: 6px; }
.side-badge.exclusive { background: #b08900; color: #111; font-size: 5px; }
.profile-card .card-location {
  text-align: center;
  font-size: 12px;
  padding: 8px 10px 9px;
  border-top: 1px solid #eee;
  color: #444;
  background: #fff;
  font-weight: 400;
}
.profile-card .card-location strong {
  color: #111;
  font-weight: 800;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 24px 0 20px;
}
.pagination a,
.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border: 1px solid #c8c8c8;
  font-size: 13px;
  color: #333;
  background: #fff;
  text-decoration: none;
}
.pagination-ellipsis {
  border-color: transparent;
  background: transparent;
  min-width: 20px;
  color: #666;
}
.pagination a.active,
.pagination a.pagination-next,
.pagination a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  text-decoration: none;
}
.pagination a.pagination-next {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

/* Banner placeholders */
.listing-banners {
  text-align: center;
  padding: 8px 0 20px;
}
.banner-placeholder {
  color: var(--red);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.3px;
  margin: 6px 0;
  text-transform: uppercase;
}

/* About */
.about-section {
  background: var(--grey-bg);
  padding: 22px 20px 28px;
  margin: 0 -18px;
  border-top: 1px solid #ddd;
}
.about-title {
  color: var(--red);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.about-body {
  max-width: 100%;
  font-size: 11px;
  color: #333;
  line-height: 1.55;
  text-align: justify;
}
.about-body p {
  margin-bottom: 12px;
}
.about-body a {
  color: var(--red);
  text-decoration: none;
}
.about-body a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  background: #1a1a1a;
  border-top: 3px solid var(--red);
  color: #ccc;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 22px 16px 18px;
}
.footer-logo {
  min-width: 170px;
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid #333;
}
.footer-logo-link {
  text-decoration: none;
  display: inline-block;
}
.footer-logo .logo-text .line1,
.footer-logo .logo-text .line2,
.footer-logo .logo-text .line3 { color: #fff; }
.footer-copy {
  font-size: 10px;
  color: #666;
  margin-top: 10px;
  line-height: 1.4;
}
.footer-cols {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 8px;
  border-left: 1px solid #333;
}
.footer-col:first-child { border-left: none; padding-left: 0; }
.footer-col a {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.35;
}
.footer-col a:hover { color: var(--red-light); }

.footer-legal-bar {
  background: #111;
  border-top: 1px solid #2a2a2a;
  padding: 14px 16px 18px;
}
.footer-legal-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  font-size: 10px;
  color: #777;
  line-height: 1.55;
}
.footer-legal-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: #999;
}
.footer-legal-sep { color: #555; }
.footer-legal-inner p { flex: 1; margin: 0; }
.dmca-badge {
  background: #1a3a5c;
  color: #fff;
  font-size: 9px;
  font-weight: bold;
  padding: 4px 8px;
  white-space: nowrap;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .footer-inner { flex-direction: column; }
  .footer-logo {
    border-right: none;
    border-bottom: 1px solid #333;
    padding-right: 0;
    padding-bottom: 14px;
    width: 100%;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .footer-col { border-left: none; padding-left: 0; }
  .footer-legal-inner { flex-direction: column; gap: 10px; }
  .about-section { margin: 0 -8px; padding: 16px 12px 20px; }
  .listing-banners { padding: 4px 0 12px; }
  .banner-placeholder { font-size: 11px; }
}

/* â”€â”€ Profil detay â€” referans site birebir â”€â”€ */
.profile-detail {
  padding: 8px 0 40px;
}
.profile-back {
  display: inline-block;
  color: var(--red);
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 12px;
  text-decoration: none;
}
.profile-back:hover { text-decoration: underline; }

.profile-main-wrap {
  background: #ececec;
  padding: 14px;
  border: 1px solid #ddd;
}

.profile-top-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 14px;
  align-items: start;
}
@media (max-width: 900px) {
  .profile-top-grid { grid-template-columns: 1fr; }
}

.profile-main-photo {
  position: relative;
  border: 1px solid #ccc;
  background: #ddd;
  aspect-ratio: 600 / 888;
  overflow: hidden;
}
.profile-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-badge-independent {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #7b2d8e;
  color: #fff;
  font-size: 5px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  z-index: 3;
  border: 2px solid rgba(255,255,255,0.4);
}

.badge-verified-lg {
  position: absolute;
  bottom: 36px;
  left: -30px;
  transform: rotate(45deg);
  z-index: 2;
}
.badge-premium-top {
  position: absolute;
  bottom: 48px;
  right: -32px;
  background: linear-gradient(135deg, #c9940e, #f0d060, #d4a017);
  color: #1a1200;
  font-size: 8px;
  font-weight: bold;
  padding: 4px 32px;
  transform: rotate(-45deg);
  z-index: 2;
  letter-spacing: 0.5px;
}

.profile-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 6px;
}
.profile-thumb {
  border: 2px solid #ccc;
  padding: 0;
  cursor: pointer;
  background: #ccc;
  aspect-ratio: 1;
  overflow: hidden;
}
.profile-thumb.active {
  border-color: var(--red);
}
.profile-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-verify-video-wrap {
  margin-top: 10px;
  width: 100%;
}

.profile-verify-video {
  width: 100%;
  max-height: 360px;
  display: block;
  background: #111;
  border: 1px solid #ccc;
}

.profile-last-seen {
  color: #666;
  font-size: 12px;
  margin: 4px 0 10px;
}
.profile-about {
  margin-top: 8px;
  position: relative;
}
.profile-about-text {
  color: #222;
  font-size: 13px;
  line-height: 1.55;
}
.profile-about.is-collapsed .profile-about-text {
  max-height: 7.2em;
  overflow: hidden;
}
.profile-about-toggle {
  display: inline;
  margin-left: 4px;
  padding: 0;
  border: none;
  background: none;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.profile-about-toggle:hover {
  text-decoration: underline;
}
.profile-about.is-collapsed .profile-about-toggle {
  position: absolute;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0), #fff 28%);
  padding-left: 36px;
}

.profile-gallery-col .profile-rates-box {
  margin-top: 12px;
  margin-bottom: 0;
}

.profile-services-box {
  margin-top: 0;
}

.profile-info-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-white-box {
  background: #fff;
  border: 1px solid #ccc;
  padding: 14px 16px;
}

.profile-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.profile-grid-icon {
  color: var(--red);
  font-size: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}
.profile-grid-icon:hover { opacity: 0.75; }
.profile-main-photo { cursor: pointer; }
.btn-profile-next {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
}
.btn-profile-next:hover { background: var(--red-dark); }

.profile-detail-name {
  color: var(--red);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 4px;
  text-transform: uppercase;
  line-height: 1.2;
}
.profile-last-seen {
  font-size: 11px;
  color: #666;
  margin: 0;
}

.profile-details-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 700px) {
  .profile-details-cols { grid-template-columns: 1fr; }
}

.profile-dl {
  margin: 0;
  font-size: 11px;
}
.profile-dl-row {
  display: flex;
  margin-bottom: 3px;
  line-height: 1.45;
}
.profile-dl dt {
  color: var(--red);
  font-weight: bold;
  min-width: 118px;
  flex-shrink: 0;
  margin: 0;
}
.profile-dl dd {
  color: #111;
  margin: 0;
}
.profile-loc-link {
  color: var(--red);
  font-weight: bold;
  text-decoration: none;
}
.profile-loc-link:hover { text-decoration: underline; }

.profile-box-title {
  color: var(--red);
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.profile-phone-block {
  margin-bottom: 10px;
}
.profile-phone-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  margin-bottom: 6px;
}
.profile-phone-icon { font-size: 14px; }
.profile-contact-label { color: #333; }
.profile-phone-partial {
  color: #333;
  font-weight: bold;
}
.profile-phone-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  margin-left: 22px;
}
.profile-verified-badge {
  color: #2d8e4e;
  font-weight: bold;
}
.profile-wa-icon {
  color: #25d366;
  font-weight: bold;
}

.btn-show-phone {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 7px 12px;
  font-size: 10px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}
.btn-show-phone:hover { background: var(--red-dark); }

.profile-loc-row {
  font-size: 12px;
  color: #333;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.profile-loc-icon { font-size: 14px; }

.btn-profile-contact {
  display: block;
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 11px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  margin: 12px 0 8px;
  text-align: center;
}
.btn-profile-contact:hover { background: var(--red-dark); }

.profile-contact-vacation .profile-box-title {
  color: #1f6b3a;
}
.profile-vacation-block {
  text-align: center;
  padding: 18px 12px 10px;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #f0fff4 0%, #fff 100%);
  border: 1px solid #b7e0c4;
}
.profile-vacation-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}
.profile-vacation-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #1f6b3a;
}
.profile-vacation-note {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #444;
}
.profile-vacation-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #2d8e4e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
[data-theme="dark"] .profile-vacation-block {
  background: linear-gradient(180deg, #1a2e22 0%, #1c1c1c 100%);
  border-color: #2d5a3c;
}
[data-theme="dark"] .profile-vacation-title { color: #7dcea0; }
[data-theme="dark"] .profile-vacation-note { color: #ccc; }

.side-badge.vacation-badge {
  background: #2d8e4e;
  border-color: #1f6b3a;
  font-size: 7px;
}

.profile-action-btns {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}
.btn-profile-grey {
  flex: 1;
  background: #888;
  color: #fff;
  border: none;
  padding: 8px 6px;
  font-size: 9px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}
.btn-profile-grey:hover { background: #666; }
.btn-profile-report {
  flex: 1;
  background: #444;
  color: #fff;
  border: none;
  padding: 8px 6px;
  font-size: 9px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}
.btn-profile-report:hover { background: #222; }

.profile-warning {
  display: flex;
  gap: 8px;
  font-size: 10px;
  color: #666;
  line-height: 1.45;
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin: 0;
}
.profile-warning-icon {
  color: var(--red);
  font-size: 14px;
  flex-shrink: 0;
}
.profile-warning p { margin: 0; }

.profile-section-title {
  font-size: 14px;
  font-weight: bold;
  color: #111;
  margin: 0 0 10px;
}

.profile-bottom-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 14px;
  margin-top: 14px;
  align-items: start;
}
@media (max-width: 1000px) {
  .profile-bottom-grid { grid-template-columns: 1fr; }
}
.profile-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-hours-box,
.profile-rates-box,
.profile-comments-box {
  margin-bottom: 20px;
}
.profile-badge-24 {
  background: #2d8e4e;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 10px;
  display: inline-block;
}
.profile-hours-note {
  font-size: 12px;
  color: #555;
  margin-top: 8px;
}

.profile-rates-table,
.profile-services-table {
  width: 100%;
  font-size: 11px;
  border-collapse: collapse;
}
.profile-rates-table th,
.profile-services-table th {
  background: var(--red);
  color: #fff;
  padding: 8px 10px;
  text-align: left;
  font-weight: bold;
}
.profile-rates-table td,
.profile-services-table td {
  border: 1px solid #ddd;
  padding: 6px 10px;
}
.profile-rates-table tbody tr:nth-child(even),
.profile-services-table tbody tr:nth-child(even) {
  background: #fafafa;
}
.rate-no, .svc-no {
  color: var(--red);
  font-weight: bold;
}
.svc-name {
  color: var(--red);
  font-weight: bold;
}
.svc-yes {
  color: #2d8e4e;
  font-weight: bold;
  text-align: center;
}
.svc-extra {
  color: #333;
  font-size: 10px;
}

.profile-verified-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 12px;
}
.profile-verified-badge {
  color: #2d8e4e;
  font-weight: bold;
}
.profile-social {
  color: #1a6fb5;
  font-weight: bold;
  cursor: pointer;
}

/* â”€â”€ Ajans listesi: /escort-agencies/ â”€â”€ */
.agencies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .agencies-grid { grid-template-columns: 1fr; }
}

.agency-card {
  display: flex;
  border: 1px solid #d0d0d0;
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 130px;
  text-decoration: none !important;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  transition: box-shadow 0.15s;
}
.agency-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.agency-ribbon-top {
  position: absolute;
  top: 14px;
  right: -30px;
  z-index: 3;
  width: 110px;
  text-align: center;
  background: linear-gradient(180deg, #f0d060, #c9940e);
  color: #1a1200;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.4px;
  padding: 5px 0;
  transform: rotate(45deg);
  box-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.agency-card-img {
  width: 150px;
  flex-shrink: 0;
  background: #ddd;
  overflow: hidden;
  align-self: stretch;
}
.agency-card-img img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  display: block;
}
.agency-card-img-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  font-size: 40px;
  font-weight: 800;
  color: #999;
  background: #eee;
}
.agency-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.agency-card-header {
  background: #8b1a1a;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 9px 14px;
  padding-right: 48px;
}
.agency-card-title { color: #fff; }
.agency-card-meta {
  padding: 8px 14px 4px;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  color: #222;
  align-items: baseline;
}
.agency-card-loc { color: #b5121b; font-weight: 700; }
.agency-card-comma { color: #b5121b; margin-right: 2px; }
.agency-card-meta strong { font-weight: 800; }
.agency-card-desc {
  padding: 4px 14px 12px;
  font-size: 12px;
  color: #444;
  line-height: 1.5;
}
.agency-more { color: #b5121b; font-weight: 700; }

.agencies-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 8px 12px 40px;
}
.agencies-page-title {
  margin: 8px 0 14px;
  font-size: 28px;
  font-weight: 800;
  color: #b5121b;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.agencies-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}
.agencies-filter {
  flex: 1 1 180px;
  max-width: 280px;
}
.agencies-filter select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding: 10px 36px 10px 12px;
  border: 1px solid #c8c8c8;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b5121b' d='M6 8L0 0h12z'/%3E%3C/svg%3E") no-repeat right 12px center;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.agencies-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Ajans detay â€” iki kart */
.agency-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 12px 40px;
}
.agency-detail-grid {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: 16px;
  margin-bottom: 28px;
  align-items: start;
}
.agency-detail-left,
.agency-detail-right {
  background: #fff;
  border: 1px solid #d5d5d5;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.agency-detail-logo-box {
  position: relative;
  overflow: hidden;
  background: #111;
  aspect-ratio: 1;
  border: 1px solid #ddd;
}
.agency-detail-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.agency-detail-logo-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 220px;
  font-size: 64px;
  font-weight: 800;
  color: #666;
}
.agency-detail-about {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: #333;
}
.agency-detail-toolbar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  justify-content: flex-end;
}
.agency-tool-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 34px;
  padding: 0 12px;
  background: #b5121b;
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none !important;
}
.agency-tool-next { margin-left: auto; }
.agency-detail-name {
  margin: 0 0 6px;
  color: #b5121b;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}
.agency-detail-sub {
  margin: 0 0 16px;
  font-size: 13px;
  color: #555;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: baseline;
}
.agency-detail-sub strong { color: #111; }
.agency-last-seen { color: #777; }
.agency-detail-rows { margin-bottom: 16px; }
.agency-detail-row {
  display: grid;
  grid-template-columns: 28px 120px 1fr;
  gap: 6px 8px;
  padding: 11px 0;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  align-items: center;
}
.agency-detail-ico {
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #b5121b;
}
.agency-detail-label { font-weight: 700; color: #333; }
.agency-detail-value {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.agency-wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e8f8ee;
  text-decoration: none !important;
}
.btn-show-phone {
  background: #b5121b;
  color: #fff;
  border: none;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-show-phone:hover { background: #8e0e15; }
.btn-agency-contact {
  display: block;
  width: 100%;
  text-align: center;
  background: #b5121b;
  color: #fff !important;
  border: none;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.btn-agency-contact:hover { background: #8e0e15; }
.agency-secondary-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.agency-sec-btn {
  display: inline-block;
  padding: 10px 14px;
  background: #1a1a1a;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  text-decoration: none !important;
}
.agency-sec-btn.is-on { background: #2d8e4e; }
.agency-sec-btn.is-disabled { opacity: 0.55; cursor: default; }
.agency-profiles-title {
  margin: 8px 0 16px;
  font-size: 20px;
  font-weight: 800;
  color: #222;
}
.agency-profiles .profiles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 760px) {
  .agency-detail-grid { grid-template-columns: 1fr; }
  .agency-card { flex-direction: column; }
  .agency-card-img { width: 100%; height: 160px; }
  .agency-card-img img,
  .agency-card-img-empty { min-height: 160px; }
  .agency-detail-row { grid-template-columns: 1fr; }
  .agencies-page-title { font-size: 22px; }
  .agency-detail-name { font-size: 20px; }
}

/* â”€â”€ Ajans detay sayfasi â”€â”€ */
.agency-detail {
  padding: 8px 0 30px;
}
.agency-detail-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--grey-border);
  padding: 20px;
  margin-bottom: 24px;
}
@media (max-width: 800px) {
  .agency-detail-header { grid-template-columns: 1fr; }
}
.agency-detail-logo {
  position: relative;
  text-align: center;
}
.agency-detail-logo img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--grey-border);
  display: block;
  margin: 0 auto;
}
.agency-detail-top {
  top: 8px;
  right: -24px;
}
.agency-detail-tagline {
  font-size: 11px;
  color: #555;
  margin-top: 10px;
  line-height: 1.4;
}
.agency-detail-name {
  color: var(--red);
  font-size: 24px;
  margin-bottom: 6px;
}
.agency-detail-loc {
  font-size: 12px;
  color: #555;
  margin-bottom: 14px;
}
.agency-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 12px;
}
.agency-phone-label { color: #333; }
.btn-show-phone {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
}
.btn-show-phone:hover { background: var(--red-dark); }
.agency-verified-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 12px;
}
.agency-verified-badge {
  color: #2d8e4e;
  font-weight: bold;
}
.agency-social {
  color: #1a6fb5;
  font-weight: bold;
  cursor: pointer;
}
.agency-stats-table { margin-bottom: 16px; }
.btn-agency-contact {
  display: block;
  width: 100%;
  max-width: 420px;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
}
.btn-agency-contact:hover { background: var(--red-dark); }
.agency-secondary-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-agency-secondary {
  background: #333;
  color: #fff;
  border: none;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
}
.btn-agency-secondary:hover { background: #111; }

.agency-models-title {
  color: var(--red);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.agency-models-grid {
  margin-bottom: 28px;
}
.badge-unverified {
  position: absolute;
  bottom: 28px;
  left: -30px;
  background: #222;
  color: #fff;
  font-size: 6px;
  font-weight: bold;
  padding: 3px 28px;
  transform: rotate(45deg);
  z-index: 2;
  letter-spacing: 0.2px;
}
.card-location .loc-city {
  color: var(--red);
}

.agency-comments {
  background: #fff;
  border: 1px solid var(--grey-border);
  padding: 20px;
}
.agency-comments h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.agency-comments p {
  font-size: 12px;
  color: #555;
  margin-bottom: 12px;
}
.btn-comment-add {
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}
.btn-comment-add:hover { background: var(--red); }

/* â”€â”€ Ucretsiz reklam: /free-advertising/ â”€â”€ */
.advertising-page {
  padding: 4px 0 40px;
}
.ad-page-title {
  color: var(--red);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.ad-accounts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
@media (max-width: 1100px) {
  .ad-accounts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ad-accounts-grid { grid-template-columns: 1fr; }
}

.ad-account-card {
  background: #fff;
  border: 1px solid var(--grey-border);
  padding: 14px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 320px;
}
.ad-card-title {
  color: var(--red);
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 4px;
}
.ad-card-sub {
  font-size: 11px;
  color: #555;
  margin-bottom: 8px;
}
.ad-card-features {
  list-style: none;
  font-size: 11px;
  color: #333;
  margin-bottom: 12px;
  flex: 1;
}
.ad-card-features li {
  margin-bottom: 5px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.ad-check {
  color: var(--red);
  font-weight: bold;
  flex-shrink: 0;
}
.btn-ad-signup {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
  width: 100%;
}
.btn-ad-signup:hover { background: var(--red-dark); }
.ad-card-img {
  margin-top: auto;
  overflow: hidden;
  max-height: 140px;
}
.ad-card-img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.ad-intro-gold {
  color: #9a7b0a;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 16px;
}

.ad-info-box,
.ad-why-box {
  background: #fff;
  border: 1px solid var(--grey-border);
  border-left: 5px solid var(--red);
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 12px;
  color: #333;
  line-height: 1.55;
}
.ad-info-box h2,
.ad-why-box h2 {
  font-size: 15px;
  color: #111;
  margin-bottom: 10px;
}
.ad-info-box ul,
.ad-why-box ul {
  list-style: none;
  margin-top: 10px;
}
.ad-info-box li,
.ad-why-box li {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ad-info-box li::before {
  content: "â€¢";
  color: var(--red);
  font-weight: bold;
}
.ad-why-link a {
  color: var(--red);
  font-weight: bold;
  margin-top: 10px;
  display: inline-block;
}

.ad-banner-notice {
  font-size: 12px;
  color: #111;
  margin-bottom: 18px;
  line-height: 1.5;
}
.ad-banner-notice strong {
  display: block;
  margin-top: 4px;
}

.ad-banners-list {
  margin-bottom: 16px;
}
.ad-banner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
}
.ad-banner-preview {
  flex-shrink: 0;
  display: block;
  line-height: 0;
  border: 1px solid #ccc;
}
.ad-banner-preview img {
  display: block;
  max-width: 100%;
  height: auto;
}
.ad-banner-code {
  flex: 1;
  min-width: 200px;
  background: #e8e8e8;
  border: 1px solid #ccc;
  font-family: Consolas, monospace;
  font-size: 11px;
  padding: 8px 10px;
  resize: vertical;
  color: #333;
}
.btn-more-banners {
  background: var(--red-dark);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 28px;
}
.btn-more-banners:hover { background: var(--red); }

.main-nav a#nav-advertising.active {
  background: var(--red);
  color: #fff;
}

/* Kayit formlari: /free-advertising/{type}/ */
.registration-page {
  padding: 4px 0 40px;
  max-width: 720px;
}
.reg-back {
  display: inline-block;
  font-size: 12px;
  color: #555;
  margin-bottom: 14px;
  text-decoration: none;
}
.reg-back:hover { color: var(--red); text-decoration: underline; }

.reg-form-box,
.reg-success-box {
  background: #fff;
  border: 1px solid var(--grey-border);
  padding: 22px 24px 28px;
}
.reg-form-title {
  color: var(--red);
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.reg-field {
  margin-bottom: 16px;
}
.reg-field label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #222;
  margin-bottom: 5px;
}
.reg-field .req {
  color: var(--red);
  font-weight: bold;
}
.reg-field input[type="text"],
.reg-field input[type="email"],
.reg-field input[type="password"] {
  width: 100%;
  border: 1px solid #ccc;
  padding: 9px 10px;
  font-size: 13px;
  background: #fff;
}
.reg-field input:focus {
  outline: none;
  border-color: #999;
}

.reg-captcha-field label {
  justify-content: flex-start;
  gap: 8px;
}
.reg-captcha-code {
  display: inline-block;
  background: #e8e8e8;
  border: 1px solid #ccc;
  padding: 4px 12px;
  font-family: Consolas, monospace;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 3px;
  color: #333;
  user-select: none;
}

.reg-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #ececec;
  border: 1px solid #ddd;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 11px;
  color: #333;
  line-height: 1.45;
  cursor: pointer;
}
.reg-checkbox-row input {
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-reg-submit {
  margin-top: 8px;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}
.btn-reg-submit:hover { background: var(--red-dark); }

.reg-success-list {
  list-style: none;
  font-size: 13px;
  color: #222;
  line-height: 1.6;
}
.reg-success-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}
.reg-contact-link {
  color: var(--red);
  font-weight: bold;
  text-decoration: underline;
}
.reg-contact-link:hover { color: var(--red-dark); }

[data-theme="dark"] .reg-form-box,
[data-theme="dark"] .reg-success-box {
  background: #252525;
  border-color: #444;
}
[data-theme="dark"] .reg-form-title { color: #f55; }
[data-theme="dark"] .reg-field label,
[data-theme="dark"] .reg-success-list,
[data-theme="dark"] .reg-checkbox-row {
  color: #ddd;
}
[data-theme="dark"] .reg-field input {
  background: #1a1a1a;
  border-color: #555;
  color: #eee;
}
[data-theme="dark"] .reg-checkbox-row {
  background: #1e1e1e;
  border-color: #444;
}
[data-theme="dark"] .reg-captcha-code {
  background: #333;
  border-color: #555;
  color: #eee;
}
[data-theme="dark"] .reg-back { color: #aaa; }

/* â”€â”€ Escort yorumlari: /escort-reviews/ â”€â”€ */
.review-filters {
  margin-bottom: 16px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1000px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
  background: #fff;
  border: 1px solid var(--grey-border);
  overflow: hidden;
}
.review-card-body-split {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.review-card-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.review-card-header {
  background: #b5121b;
  color: #fff;
  padding: 7px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.review-model-name {
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  color: #fff !important;
  text-decoration: none !important;
}
.review-model-name:hover { text-decoration: underline !important; }
.review-stars {
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.review-thumb {
  width: 100px;
  min-height: 100px;
  object-fit: cover;
  flex-shrink: 0;
  border-right: 1px solid #eee;
  align-self: stretch;
}
.review-meta {
  font-size: 11px;
  line-height: 1.45;
  padding: 8px 10px 4px;
}
.review-meta div {
  margin-bottom: 3px;
}
.review-meta dt {
  display: inline;
  color: var(--red);
  font-weight: bold;
}
.review-meta dt::after { content: " "; }
.review-meta dd {
  display: inline;
  color: #333;
}

.review-text {
  font-size: 11px;
  color: #333;
  line-height: 1.45;
  padding: 8px 10px 10px;
  border-top: 1px solid #eee;
  margin: 0;
  flex: 1;
}
.review-author {
  color: var(--red);
  font-weight: bold;
}
.review-text a {
  color: var(--red);
  font-weight: bold;
  text-decoration: none;
}
.review-text a:hover { text-decoration: underline; }

/* Escort reviews page extras */
.escort-reviews-page { padding: 8px 0 32px; }
.escort-reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.escort-reviews-title {
  margin: 0;
  color: #b5121b;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.btn-write-review {
  background: #1a1a1a;
  color: #fff;
  border: 0;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.btn-write-review:hover { background: #b5121b; }
.review-filters.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.filter-select {
  min-width: 140px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  font-size: 13px;
  background: #fff;
}
.btn-filter-go {
  background: #b5121b;
  color: #fff;
  border: 0;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}
.reviews-empty { color: #666; padding: 20px 0; }
.review-thumb-empty { background: #eee; width: 100px; min-height: 120px; }
.reviews-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 22px;
}
.pager-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333 !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 13px;
}
.pager-btn.is-active,
.pager-next {
  background: #b5121b;
  border-color: #b5121b;
  color: #fff !important;
}
.pager-gap { padding: 0 4px; color: #888; }

/* Review / auth modals */
.review-modal,
.customer-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.review-modal[hidden],
.customer-auth-modal[hidden] { display: none !important; }
.review-modal-backdrop,
.customer-auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.review-modal-dialog,
.customer-auth-dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  width: min(640px, 100%);
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.review-modal-header {
  background: #b5121b;
  color: #fff;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
}
.review-modal-name { color: #fff !important; text-decoration: none !important; }
.review-modal-x {
  background: none;
  border: 0;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.review-modal-body { padding: 14px; display: grid; grid-template-columns: 120px 1fr; gap: 14px; }
@media (max-width: 560px) {
  .review-modal-body { grid-template-columns: 1fr; }
}
.review-modal-img { width: 120px; height: auto; object-fit: cover; }
.review-modal-text { grid-column: 1 / -1; font-size: 13px; line-height: 1.55; white-space: pre-wrap; }
.review-modal-foot { padding: 0 14px 14px; text-align: right; }
.btn-review-close {
  background: #b5121b;
  color: #fff;
  border: 0;
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
}
.review-write-form { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.review-write-form label { display: flex; flex-direction: column; gap: 4px; font-size: 12px; font-weight: 700; }
.review-write-form input,
.review-write-form select,
.review-write-form textarea {
  font-weight: 400;
  padding: 8px 10px;
  border: 1px solid #ccc;
  font-size: 13px;
}
.rw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 560px) { .rw-grid { grid-template-columns: 1fr; } }
.rw-hint { font-size: 11px; color: #777; margin: 0; }
.rw-error { color: #b5121b; font-size: 12px; margin: 0; }
.rw-model-line { margin: 0 0 6px; font-size: 13px; }

.customer-auth-dialog { width: min(720px, 100%); }
.customer-auth-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .customer-auth-cols { grid-template-columns: 1fr; }
}
.customer-auth-bar {
  background: #b5121b;
  color: #fff;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.customer-auth-form {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.customer-auth-form input {
  padding: 10px 12px;
  border: 1px solid #ccc;
  font-size: 13px;
}
.btn-auth-primary {
  background: #b5121b;
  color: #fff;
  border: 0;
  padding: 12px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-auth-link {
  background: none;
  border: 0;
  color: #b5121b;
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
}
.customer-auth-benefits {
  list-style: none;
  margin: 0;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  font-size: 12px;
}
.customer-auth-error { color: #b5121b; font-size: 12px; margin: 0; }
.customer-auth-x {
  background: none;
  border: 0;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.customer-auth-register { display: block; }
body.modal-open { overflow: hidden; }

.profile-customer-actions { margin-top: 10px; }
.customer-fav-list,
.customer-review-list { list-style: none; padding: 0; margin: 0; }
.customer-fav-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.customer-fav-list .muted { color: #888; font-size: 11px; }

/* Site toast (yorum sonrası vb.) */
.site-toast {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.site-toast[hidden] { display: none !important; }
.site-toast-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.site-toast-card {
  position: relative;
  z-index: 1;
  width: min(380px, 100%);
  background: #fff;
  border: 1px solid #d5d5d5;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  padding: 28px 24px 22px;
  text-align: center;
  animation: site-toast-in 0.22s ease-out;
}
@keyframes site-toast-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.site-toast-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #e8f5ec;
  color: #2d8e4e;
  font-size: 26px;
  font-weight: 800;
  line-height: 52px;
}
.site-toast-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
}
.site-toast-msg {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.5;
  color: #555;
}
.site-toast-btn {
  display: inline-block;
  min-width: 120px;
  background: #b5121b;
  color: #fff;
  border: 0;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.site-toast-btn:hover { background: #8e0e15; }
[data-theme="dark"] .site-toast-card {
  background: #1c1c1c;
  border-color: #333;
}
[data-theme="dark"] .site-toast-title { color: #f2f2f2; }
[data-theme="dark"] .site-toast-msg { color: #aaa; }

/* â”€â”€ Kara liste: /black-list/ â”€â”€ */
.blacklist-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 14px;
  border-bottom: 2px solid #ddd;
}
.blacklist-tab {
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-bottom: none;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: bold;
  color: #444;
  cursor: pointer;
  margin-bottom: -2px;
}
.blacklist-tab:hover { color: var(--red); }
.blacklist-tab.active {
  background: #fff;
  color: var(--red);
  border-bottom: 2px solid #fff;
}

.blacklist-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.blacklist-filters-left {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blacklist-search-wrap {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 220px;
  max-width: 360px;
}
.blacklist-search {
  flex: 1;
  border: 1px solid #ccc;
  padding: 8px 12px;
  font-size: 12px;
}
.blacklist-search-btn {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  padding: 0 14px;
  cursor: pointer;
  font-size: 14px;
}

.blacklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1000px) {
  .blacklist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blacklist-grid { grid-template-columns: 1fr; }
}

.blacklist-card {
  background: #fff;
  border: 1px solid var(--grey-border);
  overflow: hidden;
}
.blacklist-card-header {
  background: var(--red);
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  padding: 8px 12px;
}
.blacklist-card-header-dark {
  background: #333;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  padding: 8px 12px;
}
.blacklist-page-title {
  margin: 0 0 14px;
  color: #b5121b;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.blacklist-actions-bar {
  margin: 0 0 14px;
}
.blacklist-thumb-empty {
  background: #eee;
  width: 100px;
  height: 100px;
  border: 1px solid #ddd;
  flex-shrink: 0;
}
.blacklist-text {
  font-size: 11px;
  color: #333;
  line-height: 1.45;
  padding-top: 8px;
  border-top: 1px solid #eee;
  margin: 8px 0 0;
}
.blacklist-author {
  color: var(--red);
  font-weight: bold;
  margin-right: 4px;
}
.blacklist-text a {
  color: var(--red);
  font-weight: bold;
  text-decoration: none;
}
.blacklist-text a:hover { text-decoration: underline; }
.blacklist-detail-body {
  grid-template-columns: 140px 1fr;
}
.blacklist-tab {
  text-decoration: none !important;
  display: inline-block;
}
.blacklist-card-body {
  padding: 12px;
}
.blacklist-card-body-split {
  display: flex;
  gap: 12px;
}
.blacklist-thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #ddd;
}
.blacklist-card-right {
  flex: 1;
  min-width: 0;
}
.blacklist-meta {
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.blacklist-meta div { margin-bottom: 3px; }
.blacklist-meta dt {
  display: inline;
  color: var(--red);
  font-weight: bold;
}
.blacklist-meta dt::after { content: " "; }
.blacklist-meta dd {
  display: inline;
  color: #333;
}
.blacklist-text {
  font-size: 11px;
  color: #444;
  line-height: 1.45;
}
.blacklist-reporter {
  color: var(--red);
  font-weight: bold;
}
.blacklist-text a {
  color: var(--red);
  font-weight: bold;
}

/* â”€â”€ Videolar: /escort-videos/ â”€â”€ */
.video-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.video-tab {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.video-tab:hover {
  border-color: var(--red);
  color: var(--red);
}
.video-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 1300px) { .videos-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1100px) { .videos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .videos-grid { grid-template-columns: repeat(2, 1fr); } }

.video-card {
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--grey-border);
  overflow: hidden;
  transition: box-shadow 0.15s, transform 0.15s;
}
.video-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.video-thumb-wrap {
  position: relative;
  aspect-ratio: 400 / 700;
  background: #222;
  overflow: hidden;
}
.video-thumb-wrap img,
.video-thumb-wrap .video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  display: block;
}
.video-top {
  z-index: 3;
}
.video-duration {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 3px 6px;
  z-index: 2;
}
.video-views {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 2;
}
.video-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 2;
}
.video-card:hover .video-play-icon { opacity: 1; }

.video-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-top: 1px solid #eee;
}
.video-avatar,
.video-avatar-letter {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

.video-avatar-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red, #c41e3a);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.video-modal-letter {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red, #c41e3a);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.video-avatar {
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #ddd;
}
.video-card-name {
  font-weight: bold;
  font-size: 12px;
  color: #111;
}
.video-card-loc {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
}

/* Profil foto galerisi lightbox */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}
.gallery-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 10053;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  opacity: 0.9;
}
.gallery-modal-close:hover { opacity: 1; }

.gallery-counter {
  position: absolute;
  top: 14px;
  left: 18px;
  z-index: 10053;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 5px 12px;
  letter-spacing: 0.5px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10053;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 56px;
  line-height: 1;
  cursor: pointer;
  padding: 8px 16px;
  user-select: none;
}
.gallery-nav:hover { color: #fff; }
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }

.gallery-modal-inner {
  position: relative;
  z-index: 10052;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1100px;
  height: calc(100vh - 80px);
  max-height: 820px;
  padding: 50px 70px 30px;
  gap: 14px;
}
@media (max-width: 700px) {
  .gallery-modal-inner {
    padding: 50px 48px 20px;
    gap: 8px;
  }
  .gallery-thumbs-col { width: 72px; }
  .gallery-nav { font-size: 40px; padding: 4px 8px; }
}

.gallery-thumbs-col {
  width: 88px;
  flex-shrink: 0;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #555 transparent;
}
.gallery-thumbs-col::-webkit-scrollbar { width: 4px; }
.gallery-thumbs-col::-webkit-scrollbar-thumb { background: #555; border-radius: 2px; }

.gallery-thumb-btn {
  border: 2px solid transparent;
  padding: 0;
  background: #222;
  cursor: pointer;
  flex-shrink: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  opacity: 0.65;
  transition: opacity 0.15s, border-color 0.15s;
}
.gallery-thumb-btn:hover { opacity: 0.9; }
.gallery-thumb-btn.active {
  border-color: var(--red);
  opacity: 1;
}
.gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-main-col {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}
.gallery-main-frame {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  max-height: 100%;
  background: #000;
  box-shadow: 0 0 0 3px #fff;
}
.gallery-main-col img,
.gallery-main-frame > img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.gallery-main-frame .img-watermark {
  pointer-events: none;
}
@media (max-width: 700px) {
  .gallery-thumbs-col { display: none; }
  .gallery-modal-inner {
    padding: 56px 44px 24px;
  }
}

/* Video modal â€” responsive lightbox */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}
.video-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10001;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  opacity: 0.9;
}
.video-modal-close:hover { opacity: 1; }

.video-modal-inner {
  position: relative;
  z-index: 10000;
  width: 100%;
  max-width: 420px;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
}
@media (min-width: 600px) {
  .video-modal-inner { max-width: 380px; }
}

.video-modal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  padding: 10px 12px;
}
.video-modal-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.video-modal-name {
  font-weight: bold;
  color: #fff;
  font-size: 14px;
}
.video-modal-loc {
  color: #e88;
  font-size: 11px;
  margin-top: 2px;
}

.video-modal-player-wrap {
  position: relative;
  background: #000;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal-player {
  width: 100%;
  max-height: calc(95vh - 80px);
  object-fit: contain;
  display: block;
  background: #000;
}
.video-modal-watermark {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: bold;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}

/* â”€â”€ Gece modu (dark theme) â”€â”€ */
[data-theme="dark"] {
  --grey-bg: #1e1e1e;
  --grey-border: #3a3a3a;
  --text: #e8e8e8;
  --text-muted: #aaa;
}

[data-theme="dark"] body {
  background: #121212;
  color: var(--text);
}

[data-theme="dark"] .page-wrap {
  background: #121212;
}

[data-theme="dark"] .sidebar {
  background: #1a1a1a;
  border-color: var(--grey-border);
}

[data-theme="dark"] .province-item {
  border-color: #333;
}

[data-theme="dark"] .province-row:hover {
  background: #252525;
}

[data-theme="dark"] .province-row.open {
  background: #2a1a1a;
}

[data-theme="dark"] .district-list {
  background: #1a1a1a;
}

[data-theme="dark"] .district-row {
  color: #ccc;
  border-color: #2a2a2a;
}

[data-theme="dark"] .district-row:hover {
  background: #252525;
}

[data-theme="dark"] .main-content {
  color: var(--text);
}

[data-theme="dark"] .filter-trigger {
  background: #252525;
  border-color: #444;
  color: #e0e0e0;
}

[data-theme="dark"] .filter-trigger:hover {
  border-color: var(--red);
}

[data-theme="dark"] .filter-panel {
  background: #2a2a2a;
  border-color: #444;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .filter-option {
  color: #ddd;
}

[data-theme="dark"] .filter-option:hover {
  background: #333;
}

[data-theme="dark"] .chk-box {
  background: #252525;
  border-color: #444;
  color: #ddd;
}

[data-theme="dark"] .chk-box.active {
  background: #3a2020;
  border-color: var(--red);
}

[data-theme="dark"] .profile-card,
[data-theme="dark"] .agency-card,
[data-theme="dark"] .video-card,
[data-theme="dark"] .review-card,
[data-theme="dark"] .blacklist-card,
[data-theme="dark"] .ad-account-card {
  background: #1e1e1e;
  border-color: var(--grey-border);
  color: #eee;
}

[data-theme="dark"] .profile-card .card-name,
[data-theme="dark"] .video-card-name {
  color: #f2f2f2;
  background: #1e1e1e;
  border-bottom-color: #333;
}

[data-theme="dark"] .profile-card .card-location,
[data-theme="dark"] .video-card-loc,
[data-theme="dark"] .agency-card-meta,
[data-theme="dark"] .agency-card-desc {
  color: #bbb;
  background: #1e1e1e;
  border-color: #333;
}

[data-theme="dark"] .profile-card .card-location strong {
  color: #f2f2f2;
}

[data-theme="dark"] .profile-card .card-img-wrap,
[data-theme="dark"] .video-thumb-wrap {
  background: #333;
}

[data-theme="dark"] .about-section {
  background: var(--grey-bg);
  border-top-color: #333;
}

[data-theme="dark"] .about-body {
  color: #ccc;
}

[data-theme="dark"] .pagination a {
  background: #252525;
  border-color: #444;
  color: #ddd;
}

[data-theme="dark"] .pagination-ellipsis {
  background: transparent;
  color: #888;
}

[data-theme="dark"] .pagination a:hover,
[data-theme="dark"] .pagination a.active,
[data-theme="dark"] .pagination a.pagination-next {
  background: var(--red);
  color: #fff;
}

[data-theme="dark"] .video-tab {
  background: #252525;
  border-color: #444;
  color: #ddd;
}

[data-theme="dark"] .video-tab.active {
  background: var(--red);
  color: #fff;
}

[data-theme="dark"] .blacklist-tab {
  background: #252525;
  border-color: #444;
  color: #ccc;
}

[data-theme="dark"] .blacklist-tab.active {
  background: #1e1e1e;
  border-bottom-color: #1e1e1e;
}

[data-theme="dark"] .blacklist-search {
  background: #252525;
  border-color: #444;
  color: #eee;
}

[data-theme="dark"] .blacklist-meta dd,
[data-theme="dark"] .review-meta dd,
[data-theme="dark"] .review-text,
[data-theme="dark"] .blacklist-text {
  color: #ccc;
}

[data-theme="dark"] .ad-info-box,
[data-theme="dark"] .ad-why-box,
[data-theme="dark"] .agency-comments,
[data-theme="dark"] .agency-detail-header {
  background: #1e1e1e;
  border-color: var(--grey-border);
  color: #ccc;
}

[data-theme="dark"] .ad-page-title,
[data-theme="dark"] .agency-detail-tagline {
  color: #bbb;
}

[data-theme="dark"] .ad-banner-code {
  background: #2a2a2a;
  border-color: #444;
  color: #ccc;
}

[data-theme="dark"] .profile-detail-table td {
  border-color: #444;
  color: #ddd;
}

[data-theme="dark"] .profile-main-wrap {
  background: #1a1a1a;
  border-color: #444;
}

[data-theme="dark"] .profile-white-box {
  background: #252525;
  border-color: #444;
}

[data-theme="dark"] .profile-last-seen,
[data-theme="dark"] .profile-hours-note,
[data-theme="dark"] .profile-loc-row,
[data-theme="dark"] .profile-phone-partial,
[data-theme="dark"] .profile-contact-label {
  color: #bbb;
}

[data-theme="dark"] .profile-dl dd {
  color: #ddd;
}

[data-theme="dark"] .profile-about-text,
[data-theme="dark"] .profile-about-text p,
[data-theme="dark"] .profile-about-text span,
[data-theme="dark"] .profile-about-text strong,
[data-theme="dark"] .profile-about-text em {
  color: #ddd;
}

[data-theme="dark"] .profile-about.is-collapsed .profile-about-toggle {
  background: linear-gradient(90deg, rgba(26, 26, 26, 0), #1a1a1a 28%);
}

[data-theme="dark"] .profile-section-title {
  color: #eee;
}

[data-theme="dark"] .profile-toolbar {
  border-color: #444;
}

[data-theme="dark"] .profile-main-photo,
[data-theme="dark"] .profile-thumb {
  background: #333;
  border-color: #555;
}

[data-theme="dark"] .profile-rates-table td,
[data-theme="dark"] .profile-services-table td {
  border-color: #444;
  color: #ddd;
}

[data-theme="dark"] .profile-warning {
  border-color: #444;
  color: #aaa;
}

[data-theme="dark"] .profile-rates-table tbody tr:nth-child(even),
[data-theme="dark"] .profile-services-table tbody tr:nth-child(even) {
  background: #252525;
}

[data-theme="dark"] .profile-warning {
  background: #2a1a1a;
  border-color: #5a3030;
  color: #ccc;
}

[data-theme="dark"] .profile-thumb {
  background: #333;
}

[data-theme="dark"] .profile-detail-loc,
[data-theme="dark"] .agency-detail-loc {
  color: #aaa;
}

[data-theme="dark"] .theme-toggle {
  background: #333;
  border-color: #555;
  color: #ffd54f;
}

[data-theme="dark"] .theme-toggle:hover {
  background: #444;
}

/* â”€â”€ Uye giris + sahtekarlik popup â”€â”€ */
.site-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.site-modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}
.site-modal-close:hover { opacity: 0.8; }

/* Auth modal */
.auth-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.auth-modal-header {
  background: var(--red);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12px 40px 12px 20px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}
.auth-header-left { text-align: left; }
.auth-header-right { text-align: center; }

.auth-modal-body {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  min-height: 280px;
}
@media (max-width: 600px) {
  .auth-modal-body { grid-template-columns: 1fr; }
  .auth-col-divider { display: none; }
}
.auth-col-divider {
  background: #ddd;
}
.auth-col {
  padding: 20px 24px;
  position: relative;
}
.auth-col-login label {
  display: block;
  font-size: 12px;
  color: #333;
  margin-bottom: 4px;
  margin-top: 12px;
}
.auth-col-login label:first-child { margin-top: 0; }
.auth-col-login input {
  width: 100%;
  border: 1px solid #ccc;
  padding: 8px 10px;
  font-size: 12px;
}
.btn-auth-login {
  margin-top: 18px;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}
.btn-auth-login:hover { background: var(--red-dark); }

.auth-benefits {
  list-style: none;
  font-size: 12px;
  color: #333;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-bottom: 16px;
  padding-right: 100px;
}
.auth-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.auth-check {
  color: var(--red);
  font-weight: bold;
  flex-shrink: 0;
}
.btn-auth-register {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}
.btn-auth-register:hover { background: var(--red-dark); }
.auth-register-img {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 90px;
  height: auto;
  object-fit: cover;
  border: 1px solid #ddd;
}

/* Report modal */
.report-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.report-modal-header {
  background: var(--red);
  color: #fff;
  padding: 12px 40px 12px 18px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}
.report-modal-body {
  padding: 18px 20px 22px;
}
.report-field {
  margin-bottom: 14px;
}
.report-field label {
  display: block;
  font-size: 12px;
  color: #333;
  margin-bottom: 5px;
}
.report-field .req {
  color: var(--red);
}
.report-field input[type="text"],
.report-field input[type="email"],
.report-field textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 8px 10px;
  font-size: 12px;
  font-family: inherit;
}
.report-field textarea {
  resize: vertical;
  min-height: 100px;
}
.report-field input[type="file"] {
  font-size: 11px;
}
.report-disclaimer {
  font-size: 10px;
  color: #888;
  line-height: 1.45;
  margin-bottom: 14px;
}
.btn-report-submit {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}
.btn-report-submit:hover { background: var(--red-dark); }

[data-theme="dark"] .auth-modal-box,
[data-theme="dark"] .report-modal-box {
  background: #252525;
  border-color: #444;
}
[data-theme="dark"] .auth-col-login label,
[data-theme="dark"] .auth-benefits,
[data-theme="dark"] .report-field label {
  color: #ddd;
}
[data-theme="dark"] .auth-col-login input,
[data-theme="dark"] .report-field input,
[data-theme="dark"] .report-field textarea {
  background: #1a1a1a;
  border-color: #555;
  color: #eee;
}
[data-theme="dark"] .auth-col-divider {
  background: #444;
}

/* Top bar â€” giris yapilmis */
.top-user-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
}
.top-user-link {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.top-user-link:hover { text-decoration: underline; }
.top-user-email {
  color: #ccc;
  text-decoration: none;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.top-logout-btn {
  background: transparent;
  border: 1px solid #666;
  color: #ccc;
  font-size: 10px;
  padding: 3px 8px;
  cursor: pointer;
}
.top-logout-btn:hover { border-color: #999; color: #fff; }

/* Kullanici paneli /user/ */
.user-dashboard {
  padding: 4px 0 40px;
}
.ud-page-title {
  color: var(--red);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ud-main-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 16px;
}
.ud-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 12px;
  min-width: 90px;
  flex: 1;
  text-decoration: none;
  color: #333;
  background: #e8e8e8;
  border: 1px solid #ccc;
  border-bottom: none;
  font-size: 10px;
  text-align: center;
  line-height: 1.2;
}
.ud-tab:hover { background: #f5f5f5; }
.ud-tab.active {
  background: #fff;
  color: var(--red);
  font-weight: bold;
  border-top: 3px solid var(--red);
  margin-top: -2px;
}
.ud-tab-gold:not(.active) {
  background: #e8e8e8;
}
.ud-tab-gold.active {
  background: linear-gradient(180deg, #f5e6a8 0%, #e8c84a 100%);
  border-top-color: #c9940e;
  color: #1a1200;
}
.ud-tab-icon { font-size: 16px; }

.ud-sub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.ud-sub-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #ececec;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  font-size: 11px;
}
.ud-sub-tab:hover { background: #f5f5f5; }
.ud-sub-tab.active {
  background: #fff;
  border-color: var(--red);
  color: var(--red);
  font-weight: bold;
}

.ud-content {
  background: #ececec;
  padding: 16px;
  border: 1px solid #ccc;
}
.ud-section-title {
  color: var(--red);
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.ud-section-gap { margin-top: 28px; }

.ud-form-block {
  background: #fff;
  border: 1px solid #ccc;
  padding: 16px 18px;
  margin-bottom: 16px;
}
.ud-field {
  margin-bottom: 14px;
}
.ud-field label {
  display: block;
  font-size: 12px;
  color: #222;
  margin-bottom: 5px;
}
.ud-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .ud-field-row { grid-template-columns: 1fr; }
  .ud-main-tabs { flex-direction: column; }
  .ud-tab { min-width: 0; flex-direction: row; justify-content: flex-start; }
}
.ud-field input,
.ud-field select,
.ud-field textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 8px 10px;
  font-size: 12px;
  font-family: inherit;
}
.ud-readonly { background: #f0f0f0; color: #666; }
.ud-field .req { color: var(--red); }
.ud-link {
  color: var(--red);
  font-size: 11px;
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
}
.ud-link:hover { text-decoration: underline; }
.ud-warn {
  font-size: 11px;
  color: var(--red);
  margin-top: 4px;
}
.ud-field-note {
  font-size: 10px;
  color: #888;
  margin-bottom: 4px;
}

.ud-photo-placeholder {
  width: 200px;
  height: 120px;
  background: #ddd;
  border: 1px solid #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #666;
  text-align: center;
  padding: 8px;
}
.ud-photo-hint {
  font-size: 10px;
  color: #666;
  margin: 8px 0;
  max-width: 480px;
}
.btn-ud-browse {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
}
.btn-ud-browse:hover { background: var(--red-dark); }

.ud-promo-banner {
  background: var(--red);
  color: #fff;
  padding: 12px 16px;
  margin-bottom: 14px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ud-phone-row {
  display: flex;
  gap: 8px;
}
.ud-phone-code { width: 90px; flex-shrink: 0; }
.ud-phone-num { flex: 1; }
.ud-messenger-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0;
  font-size: 11px;
}
.btn-ud-add-phone {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 10px;
  cursor: pointer;
}

.btn-ud-submit {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 8px;
}
.btn-ud-submit:hover { background: var(--red-dark); }
.btn-ud-danger {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

.ud-list-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ud-status-filters { display: flex; gap: 10px; font-size: 11px; }
.ud-status { color: #666; }
.ud-status.active { color: var(--red); font-weight: bold; }
.btn-ud-add-profile {
  background: #2e8b2e;
  color: #fff;
  border: none;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
}
.ud-search-inline {
  margin-left: auto;
  display: flex;
}
.ud-search-inline input {
  border: 1px solid #ccc;
  padding: 6px 8px;
  font-size: 11px;
}
.ud-search-inline button {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
}

.ud-filter-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 10px;
  margin-bottom: 10px;
  align-items: center;
}
.ud-filter-checks label { display: flex; align-items: center; gap: 4px; }

.ud-empty-bar {
  background: #4a7fc4;
  color: #fff;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.ud-empty-gold { background: linear-gradient(90deg, #c9940e, #e8c84a); color: #1a1200; }

.ud-review-filters { margin-bottom: 12px; }
.ud-pill {
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 14px;
  font-size: 11px;
  cursor: pointer;
  margin-right: 6px;
}
.ud-pill.active {
  border-color: var(--red);
  color: var(--red);
  font-weight: bold;
}

.ud-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #ececec;
  border: 1px solid #ddd;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 11px;
  cursor: pointer;
}
.ud-delete-box {
  border: 2px solid var(--red);
  padding: 14px 16px;
  background: #fff;
  font-size: 12px;
}

.ud-security-card {
  background: #fff;
  border: 1px solid #ccc;
  padding: 16px 18px;
  margin-bottom: 14px;
  position: relative;
}
.ud-security-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #2e8b2e;
  color: #fff;
  font-size: 9px;
  padding: 3px 8px;
  font-weight: bold;
}
.ud-security-card h3 { font-size: 14px; margin-bottom: 8px; }
.ud-security-card p { font-size: 12px; color: #444; margin-bottom: 12px; line-height: 1.5; }
.ud-or-divider {
  text-align: center;
  color: #888;
  font-size: 12px;
  margin: 8px 0 14px;
}

.ud-alert-bar {
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  font-size: 12px;
  margin-bottom: 14px;
}
.ud-payment-list { margin-bottom: 16px; }
.ud-payment-opt {
  display: block;
  background: #fff;
  border: 1px solid #ccc;
  padding: 12px 14px;
  margin-bottom: 8px;
  font-size: 11px;
  cursor: pointer;
}

.ud-gold-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 1100px) { .ud-gold-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .ud-gold-grid { grid-template-columns: repeat(2, 1fr); } }
.ud-gold-card {
  background: #fff;
  border: 1px solid #ccc;
  padding: 14px 10px;
  text-align: center;
  position: relative;
  min-height: 120px;
}
.ud-gold-popular { border-color: #2e8b2e; }
.ud-gold-best {
  background: linear-gradient(180deg, #f5e6a8, #e8c84a);
  border-color: #c9940e;
}
.ud-gold-tag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #2e8b2e;
  color: #fff;
  font-size: 8px;
  padding: 2px;
  font-weight: bold;
}
.ud-gold-best .ud-gold-tag { background: #c9940e; color: #1a1200; }
.ud-gold-price { font-size: 16px; font-weight: bold; margin-top: 14px; }
.ud-gold-price s { font-size: 11px; color: #888; }
.ud-gold-amount { font-size: 12px; font-weight: bold; color: var(--red); margin: 6px 0; }
.ud-gold-save {
  display: block;
  font-size: 9px;
  color: #2e8b2e;
  font-weight: bold;
}
.ud-gold-coins { font-size: 20px; margin-top: 6px; }

.ud-updates-list { display: flex; flex-direction: column; gap: 10px; }
.ud-update-card {
  background: #fff;
  border: 1px solid #ccc;
  padding: 12px 14px;
  font-size: 12px;
}
.ud-update-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.ud-update-head time { color: #888; font-size: 11px; white-space: nowrap; }

.ud-faq-list { display: flex; flex-direction: column; gap: 3px; }
.ud-faq-item {
  background: #fff;
  border: 1px solid #ccc;
}
.ud-faq-item summary {
  padding: 11px 14px;
  font-size: 12px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ud-faq-item summary::-webkit-details-marker { display: none; }
.ud-faq-plus {
  color: #111;
  font-weight: bold;
  font-size: 14px;
  width: 14px;
  flex-shrink: 0;
}
.ud-faq-q { flex: 1; line-height: 1.35; }
.ud-faq-arrow {
  color: var(--red);
  font-size: 11px;
  flex-shrink: 0;
  transition: transform 0.15s;
}
.ud-faq-item[open] .ud-faq-plus {
  font-size: 0;
}
.ud-faq-item[open] .ud-faq-plus::before {
  content: "âˆ’";
  font-size: 14px;
  color: #111;
}
.ud-faq-item[open] .ud-faq-arrow { transform: rotate(180deg); }
.ud-faq-item p {
  padding: 0 14px 14px 38px;
  font-size: 11px;
  color: #444;
  line-height: 1.55;
  border-top: 1px solid #eee;
  margin: 0;
  padding-top: 10px;
}
.ud-sub-tab .ud-sub-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid #999;
  border-radius: 2px;
  font-size: 11px;
  font-weight: bold;
}
.ud-sub-tab.active .ud-sub-icon {
  border-color: var(--red);
  color: var(--red);
}

[data-theme="dark"] .ud-content { background: #1e1e1e; border-color: #444; }
[data-theme="dark"] .ud-form-block,
[data-theme="dark"] .ud-security-card,
[data-theme="dark"] .ud-faq-item,
[data-theme="dark"] .ud-update-card,
[data-theme="dark"] .ud-gold-card,
[data-theme="dark"] .ud-payment-opt {
  background: #252525;
  border-color: #444;
  color: #ddd;
}
[data-theme="dark"] .ud-tab { background: #2a2a2a; color: #ddd; border-color: #444; }
[data-theme="dark"] .ud-tab.active { background: #333; }
[data-theme="dark"] .ud-field input,
[data-theme="dark"] .ud-field select,
[data-theme="dark"] .ud-field textarea {
  background: #1a1a1a;
  border-color: #555;
  color: #eee;
}

/* TOTP 2FA kurulum: /user/security/totp/ */
.ud-totp-wizard { max-width: 820px; }
.ud-totp-step { display: none; }
.ud-totp-step.active { display: block; }
.ud-totp-box {
  background: #fff;
  border: 1px solid #ccc;
  border-left: 4px solid var(--red);
  padding: 20px 22px 24px;
}
.ud-totp-step-title {
  color: var(--red);
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
}
.ud-totp-text {
  font-size: 12px;
  color: #333;
  line-height: 1.55;
  margin-bottom: 16px;
}
.ud-totp-note {
  font-size: 10px;
  color: #888;
  margin: 14px 0;
}
.ud-totp-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}
@media (max-width: 700px) {
  .ud-totp-apps { grid-template-columns: 1fr; }
}
.ud-totp-app {
  border: 1px solid #ccc;
  padding: 16px 12px;
  text-align: center;
  background: #fafafa;
  font-size: 11px;
}
.ud-totp-app-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  border: 1px solid #ddd;
}
.ud-icon-google { color: #4285f4; }
.ud-icon-ms { color: #fff; }
.ud-icon-2fas { color: #fff; }
.ud-totp-stores {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}
.ud-store-badge {
  font-size: 9px;
  background: #222;
  color: #fff;
  padding: 3px 6px;
  border-radius: 2px;
}
.btn-ud-totp-next {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ud-totp-next:hover { background: var(--red-dark); }
.btn-ud-totp-back {
  background: transparent;
  border: none;
  color: #666;
  font-size: 11px;
  cursor: pointer;
  margin-left: 14px;
  margin-top: 8px;
}
.btn-ud-totp-back:hover { color: var(--red); }
.ud-totp-qr-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.ud-totp-qr {
  border: 1px solid #ccc;
  background: #fff;
}
.ud-totp-secret label {
  font-size: 11px;
  color: #666;
  display: block;
  margin-bottom: 6px;
}
.ud-totp-secret code {
  display: block;
  font-family: Consolas, monospace;
  font-size: 14px;
  letter-spacing: 2px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  padding: 10px 12px;
  margin-bottom: 8px;
  word-break: break-all;
}
.btn-ud-copy {
  background: #eee;
  border: 1px solid #ccc;
  padding: 5px 12px;
  font-size: 10px;
  cursor: pointer;
}
.btn-ud-copy:hover { background: #e0e0e0; }
#ud-totp-code {
  font-size: 22px;
  letter-spacing: 8px;
  text-align: center;
  max-width: 200px;
  font-family: Consolas, monospace;
}
.ud-totp-success .ud-totp-text { color: #2e8b2e; font-weight: bold; }
.ud-backup-codes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 18px;
  font-family: Consolas, monospace;
  font-size: 12px;
}
.ud-backup-codes li {
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}
[data-theme="dark"] .ud-totp-box {
  background: #252525;
  border-color: #444;
}
[data-theme="dark"] .ud-totp-text { color: #ddd; }
[data-theme="dark"] .ud-totp-app { background: #1e1e1e; border-color: #444; }
[data-theme="dark"] .ud-totp-secret code { background: #1a1a1a; color: #eee; }

/* Yasal sayfalar: /gdpr/ */
.legal-page {
  padding: 4px 0 40px;
  max-width: 900px;
}
.legal-back {
  display: inline-block;
  font-size: 12px;
  color: #555;
  margin-bottom: 14px;
  text-decoration: none;
}
.legal-back:hover { color: var(--red); text-decoration: underline; }
.legal-title {
  color: var(--red);
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 6px;
}
.legal-subtitle {
  font-size: 14px;
  color: #444;
  margin-bottom: 22px;
  font-weight: bold;
}
.legal-content {
  background: #fff;
  border: 1px solid var(--grey-border);
  padding: 24px 28px;
  font-size: 13px;
  line-height: 1.65;
  color: #222;
}
.legal-section {
  margin-bottom: 28px;
}
.legal-section:last-of-type { margin-bottom: 0; }
.legal-section h2 {
  color: var(--red);
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.legal-section h3 {
  font-size: 14px;
  font-weight: bold;
  margin: 16px 0 8px;
  color: #111;
}
.legal-section p { margin-bottom: 10px; }
.legal-list {
  margin: 10px 0 14px 20px;
}
.legal-list li {
  margin-bottom: 8px;
}
.legal-highlight {
  background: #f5f5f5;
  border-left: 3px solid var(--red);
  padding: 10px 14px;
  font-size: 12px;
  margin: 12px 0;
}
.legal-contact {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #ddd;
  font-size: 12px;
}
.legal-contact a { color: var(--red); font-weight: bold; }
.reg-gdpr-link {
  color: var(--red);
  text-decoration: underline;
}
.reg-checkbox-row .reg-gdpr-link:hover { color: var(--red-dark); }

[data-theme="dark"] .legal-content {
  background: #252525;
  border-color: #444;
  color: #ddd;
}
[data-theme="dark"] .legal-section h3 { color: #eee; }
[data-theme="dark"] .legal-highlight {
  background: #1e1e1e;
  border-color: var(--red);
}
[data-theme="dark"] .legal-subtitle { color: #aaa; }
[data-theme="dark"] .legal-back { color: #aaa; }

.legal-footer-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #ddd;
  font-size: 11px;
  color: #666;
  line-height: 1.5;
}
[data-theme="dark"] .legal-footer-note { color: #999; border-color: #444; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBIL â€” referans: eurogirlsescort.com
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.mobile-toolbar,
.mobile-filter-bar,
.mobile-nav-drawer,
.mobile-nav-backdrop,
.sidebar-backdrop {
  display: none;
}

@media (max-width: 900px) {
  html { font-size: 12px; }

  /* â”€â”€ Ust bar â”€â”€ */
  .top-bar {
    justify-content: flex-end;
    gap: 10px;
    padding: 8px 10px;
  }
  .top-bar-hide-mobile { display: none !important; }
  .top-create-account {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fff !important;
    font-weight: bold;
    text-decoration: none !important;
    margin-right: auto;
  }
  .top-create-icon { color: var(--red-light); font-size: 14px; }
  .top-login-field { display: none !important; }
  .top-login { gap: 0; }
  .btn-login {
    padding: 7px 18px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  /* â”€â”€ Header: logo + arac cubugu â”€â”€ */
  .header-inner {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding-right: 6px;
  }
  .logo-block {
    min-width: 0;
    padding: 8px 10px;
    flex: 1;
  }
  .logo-text .line1 { font-size: 17px; }
  .logo-text .line2 { font-size: 14px; }
  .logo-text .line3 { font-size: 11px; }
  .logo-silhouette { width: 38px; height: 38px; }

  .main-nav { display: none !important; }

  .mobile-toolbar {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
  }
  .mob-tool-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 8px;
    font-size: 9px;
    line-height: 1.1;
    min-width: 44px;
  }
  .mob-tool-btn svg { opacity: 0.95; }
  .mob-tool-location span,
  .mob-tool-menu span {
    max-width: 52px;
    text-align: center;
  }

  /* â”€â”€ Mobil menu paneli â”€â”€ */
  .mobile-nav-backdrop,
  .sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1200;
  }
  .mobile-nav-backdrop[hidden],
  .sidebar-backdrop[hidden] {
    display: none !important;
  }

  .mobile-nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100vh;
    background: #111;
    z-index: 1300;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    border-left: 3px solid var(--red);
  }
  .mobile-nav-drawer.open { transform: translateX(0); }

  .mobile-nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    border-bottom: 1px solid #333;
  }
  .mobile-drawer-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
  }
  .mobile-nav-list {
    overflow-y: auto;
    flex: 1;
    padding: 8px 0;
  }
  .mobile-nav-list a {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 12px 18px;
    border-bottom: 1px solid #222;
    text-decoration: none;
  }
  .mobile-nav-list a.active {
    color: var(--red-light);
    background: #1a1a1a;
    border-left: 3px solid var(--red);
  }

  body.mobile-nav-open,
  body.sidebar-open { overflow: hidden; }

  /* â”€â”€ Sidebar: kayan panel â”€â”€ */
  .page-wrap { display: block; }
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: min(300px, 88vw);
    height: 100vh;
    max-height: 100vh;
    z-index: 1300;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    border-right: 3px solid var(--red);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
  }
  .sidebar.open { transform: translateX(0); }

  /* â”€â”€ Ana icerik â”€â”€ */
  .main-content {
    padding: 10px 8px 24px;
    width: 100%;
  }
  .page-title {
    font-size: 18px;
    margin-bottom: 8px;
    padding-left: 2px;
  }

  /* â”€â”€ Filtre: tek satir acilir kutu â”€â”€ */
  .mobile-filter-bar {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    background: #fff;
    border: 1px solid #b8b8b8;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: bold;
    color: #222;
    cursor: pointer;
    margin-bottom: 10px;
    text-align: left;
  }
  .mobile-filter-bar .mobile-filter-icon { color: #555; flex-shrink: 0; }
  .mobile-filter-bar span:not(.mobile-filter-chevron) { flex: 1; }
  .mobile-filter-chevron {
    color: var(--red);
    font-size: 10px;
    transition: transform 0.2s;
  }
  .mobile-filter-bar.open .mobile-filter-chevron { transform: rotate(180deg); }

  .filters-wrap {
    display: none;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    padding: 10px;
    background: #fafafa;
  }
  .filters-wrap.filters-mobile-open { display: block; }

  .filters-row { flex-wrap: wrap; }
  .filter-drop { flex: 1 1 calc(50% - 3px); min-width: 120px; }
  .quick-filters { gap: 4px; }
  .chk-box { font-size: 9px; padding: 6px 8px; }

  /* Mobilde hover yerine tikla-ac */
  .filter-drop:hover .filter-panel,
  .filter-drop:focus-within .filter-panel { display: none; }
  .filter-drop.filter-open .filter-panel { display: block; }

  /* â”€â”€ 2 sutunlu grid (referans gibi) â”€â”€ */
  .profiles-grid,
  .agencies-grid,
  .videos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px;
  }

  /* Yorum + kara liste: mobilde tek sutun, yan yana kart */
  .reviews-grid,
  .blacklist-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .review-card-body-split,
  .blacklist-card-body-split {
    min-height: 130px;
  }

  .review-thumb,
  .blacklist-thumb {
    width: 34%;
    max-width: 120px;
    min-height: 100%;
    min-width: 90px;
    object-fit: cover;
    object-position: center top;
  }

  .review-card-header,
  .blacklist-card-header,
  .blacklist-card-header-dark {
    padding: 6px 8px;
    font-size: 12px;
  }

  .review-meta,
  .blacklist-meta {
    font-size: 10px;
    padding: 6px 8px 2px;
  }

  .review-meta div,
  .blacklist-meta div {
    margin-bottom: 2px;
    line-height: 1.35;
  }

  .review-text,
  .blacklist-text {
    font-size: 10px;
    padding: 6px 8px 8px;
  }

  .review-filters {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
  }
  .review-filters .filter-drop-lg {
    max-width: none;
    min-width: 0;
    width: 100%;
  }
  .review-filters .filter-trigger-lg {
    width: 100%;
  }

  .blacklist-tabs {
    flex-direction: column;
    border-bottom: none;
    gap: 0;
    margin-bottom: 10px;
  }
  .blacklist-tab {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
    border-bottom: 1px solid #ccc;
  }
  .blacklist-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .blacklist-filters-left {
    flex-direction: column;
    width: 100%;
  }
  .blacklist-filters-left .filter-drop-lg {
    max-width: none;
    width: 100%;
  }
  .blacklist-search-wrap {
    max-width: none;
    width: 100%;
  }

  .profile-card { border-width: 1px; }
  .profile-card:hover {
    transform: none;
    box-shadow: none;
  }
  .profile-card .card-name {
    font-size: 11px;
    padding: 5px 4px 3px;
  }
  .profile-card .card-location {
    font-size: 10px;
    padding: 5px 4px;
  }
  .profile-card .card-location strong {
    font-weight: bold;
    color: #111;
  }

  .badge-vip,
  .badge-vip-gold,
  .badge-top {
    font-size: 8px;
    padding: 2px 26px;
    top: 10px;
    right: -30px;
  }
  .badge-verified {
    font-size: 6px;
    padding: 2px 26px;
    bottom: 22px;
    left: -32px;
  }
  .badge-side { left: 4px; gap: 3px; }
  .side-badge {
    width: 30px;
    height: 30px;
    font-size: 4px;
    border-width: 1px;
  }
  .side-badge.porn { font-size: 5px; }

  .pagination { margin: 16px 0; }
  .about-section {
    margin: 0 -8px;
    padding: 16px 12px;
  }
  .about-title { font-size: 16px; }

  /* Video kartlari mobil */
  .video-tabs { flex-wrap: wrap; gap: 4px; }
  .video-tab { font-size: 9px; padding: 6px 8px; }
  .video-card-footer { padding: 6px; }
  .video-card-name { font-size: 10px; }
  .video-card-loc { font-size: 9px; }
  .video-avatar-letter { width: 28px; height: 28px; font-size: 12px; }

  /* Profil detay mobil */
  .profile-detail-wrap { padding: 8px; }
  .profile-gallery-thumbs { gap: 4px; }
}

@media (max-width: 900px) {
  [data-theme="dark"] .mobile-filter-bar {
    background: #1e1e1e;
    border-color: #444;
    color: #eee;
  }
  [data-theme="dark"] .filters-wrap {
    background: #161616;
    border-color: #333;
  }
  [data-theme="dark"] .profile-card .card-location strong { color: #eee; }
}

/* â”€â”€ Escort videos (/escort-videos/) â”€â”€ */
.videos-page {
  padding: 8px 0 32px;
}
.videos-page-title {
  color: var(--red);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}
.videos-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.videos-tab {
  display: inline-block;
  padding: 9px 14px;
  border: 1px solid #ccc;
  background: #fff;
  color: #222;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
}
.videos-tab:hover {
  border-color: var(--red);
  color: var(--red);
}
.videos-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 1200px) {
  .videos-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .videos-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .videos-page-title { font-size: 22px; }
  .videos-tab { font-size: 11px; padding: 8px 10px; }
}

.ev-card {
  background: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
  cursor: pointer;
}
.ev-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #111;
  overflow: hidden;
}
.ev-card-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ev-card-poster-empty {
  display: block;
  width: 100%;
  height: 100%;
  background: #333;
}
.ev-card-duration {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 6px;
  line-height: 1.2;
  pointer-events: none;
}
.ev-card-premium {
  position: absolute;
  top: 14px;
  right: -28px;
  z-index: 2;
  width: 110px;
  background: linear-gradient(180deg, #f6e27a, #d4af37);
  color: #111;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 4px 0;
  transform: rotate(45deg);
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
  pointer-events: none;
}
.ev-card-views {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  background: rgba(255,255,255,.92);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}
.ev-card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(181,18,27,.88);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  pointer-events: none;
}
.ev-card:hover .ev-card-play {
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.06);
}
.ev-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  text-decoration: none !important;
  color: inherit;
}
.ev-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #ddd;
}
.ev-card-avatar-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
.ev-card-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ev-card-name {
  font-size: 13px;
  font-weight: 800;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ev-card-loc {
  font-size: 11px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ev-modal {
  position: fixed;
  inset: 0;
  z-index: 10060;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.ev-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}
.ev-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10062;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
}
.ev-modal-inner {
  position: relative;
  z-index: 10061;
  width: 100%;
  max-width: 420px;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  background: #111;
}
.ev-modal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  padding: 10px 12px;
}
.ev-modal-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ev-modal-letter {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.ev-modal-name {
  font-weight: 800;
  color: #fff;
  font-size: 14px;
}
.ev-modal-loc {
  color: #e88;
  font-size: 11px;
  margin-top: 2px;
}
.ev-modal-player-wrap {
  position: relative;
  background: #000;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ev-modal-player {
  width: 100%;
  max-height: calc(95vh - 100px);
  object-fit: contain;
  display: block;
  background: #000;
}
.ev-modal-profile {
  display: block;
  text-align: center;
  padding: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  background: #1a1a1a;
}
.ev-modal-profile:hover {
  color: #fcc;
}

