
:root {
  --primary: #db2777;
  --primary-dark: #be185d;
  --primary-light: #fce7f3;
  --accent-gold: #f59e0b;
  --header-bg: #0f172a;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-page: #f8fafc;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
}
* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background: var(--bg-page);
  line-height: 1.75;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--primary-dark); }
.site-header {
  background: var(--header-bg);
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.site-title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.site-title a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.site-description { color: #94a3b8; font-size: 12px; margin: 2px 0 0; }
.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 14px;
  align-items: center;
}
.main-navigation a {
  color: #cbd5e1;
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}
.main-navigation a:hover, .main-navigation a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn-vip-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 10px rgba(219, 39, 119, 0.35);
}
.district-pill-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
  overflow-x: auto;
  white-space: nowrap;
}
.district-pills-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 8px;
}
.district-pill {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}
.district-pill:hover, .district-pill.active {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary);
}
.container {
  max-width: 1240px;
  margin: 25px auto;
  padding: 0 20px;
}
.main-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
}
@media (max-width: 960px) {
  .main-layout { grid-template-columns: 1fr; }
  .site-header .main-navigation { display: none; }
}
.hero-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border-radius: 14px;
  padding: 32px 30px;
  color: #fff;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
  border: 1px solid #312e81;
}
.hero-banner h1 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.3;
  color: #fff;
}
.hero-banner p {
  color: #cbd5e1;
  font-size: 15px;
  margin: 0 0 18px;
  max-width: 820px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-badge {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: #f1f5f9;
}
.model-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
  margin-bottom: 35px;
}
.model-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}
.model-photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: #0f172a;
  overflow: hidden;
}
.model-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.model-card:hover .model-photo-wrapper img {
  transform: scale(1.05);
}
.verified-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(34, 197, 94, 0.9);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.location-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}
.model-info { padding: 14px; flex-grow: 1; display: flex; flex-direction: column; }
.model-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.model-age { font-size: 13px; color: var(--text-muted); font-weight: normal; }
.model-specs {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.btn-connect {
  margin-top: auto;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s;
  display: block;
}
.btn-connect:hover { background: var(--primary-dark); color: #fff; }

.content-section {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.02);
}
.content-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  border-left: 4px solid var(--primary);
  padding-left: 12px;
  margin-top: 0;
  margin-bottom: 16px;
}
.content-section h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 24px;
  margin-bottom: 10px;
}
.content-section p { font-size: 14.5px; color: #334155; margin-bottom: 16px; }
.content-section ul { padding-left: 20px; font-size: 14.5px; color: #334155; }
.content-section li { margin-bottom: 8px; }

.article-single {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}
.article-single h1 {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
  margin-bottom: 22px;
}
.article-body p { font-size: 15px; line-height: 1.8; color: #334155; margin-bottom: 20px; }
.article-body h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  border-left: 4px solid var(--primary);
  padding-left: 12px;
  margin-top: 30px;
  margin-bottom: 14px;
}
.article-photo {
  width: 100%;
  max-width: 680px;
  border-radius: 10px;
  margin: 20px 0;
  display: block;
  border: 1px solid var(--border-color);
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  background: #f8fafc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover { background: var(--primary-light); color: var(--primary-dark); }
.faq-answer {
  padding: 16px 18px;
  font-size: 14px;
  color: #475569;
  border-top: 1px solid var(--border-color);
  display: none;
}
.faq-item.open .faq-answer { display: block; }

.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.02);
}
.widget-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 8px;
}
.district-list { list-style: none; padding: 0; margin: 0; }
.district-list li { border-bottom: 1px solid #f1f5f9; }
.district-list a {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
}
.district-list a:hover { color: var(--primary); padding-left: 4px; }

.live-counter-box {
  background: #fdf2f8;
  border: 1px solid #fbcfe8;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.pulse-circle {
  width: 12px;
  height: 12px;
  background: #ec4899;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(236, 72, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); }
}

.tags-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-badge {
  background: #f1f5f9;
  color: #475569;
  font-size: 11.5px;
  padding: 4px 8px;
  border-radius: 4px;
}

.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 45px 0 30px;
  margin-top: 60px;
  border-top: 3px solid var(--primary);
  font-size: 13.5px;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer-col h4 { color: #fff; font-size: 15px; margin-top: 0; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #cbd5e1; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 12.5px;
}

/* Fixed Bottom Bar */
.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  border-top: 2px solid var(--primary);
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 999;
}
.fixed-bottom-bar a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.fixed-bottom-bar a.active-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 2px 10px rgba(219, 39, 119, 0.4);
}
.fixed-bottom-bar a:hover {
  transform: translateY(-1px);
  background: var(--primary);
}
