* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  background: #f7f1ea;
  color: #1f1410;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
  background-color: #f7f1ea;
  color: #1f1410;
}
.top-bar {
  background: #f7f1ea;
  color: #1f1410;
  padding: 12px 0 14px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.top-bar .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo-main {
  font-size: 24px;
  font-weight: 700;
  color: #8e1c3a;
}
.logo-sub {
  font-size: 15px;
  color: #c4a35a;
  font-weight: 700;
}
#searchInput {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e0cfc2;
  border-radius: 6px;
  font-size: 15px;
}
.filters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.filters select {
  width: 100%;
  padding: 10px 8px;
  border: 1px solid #e0cfc2;
  border-radius: 6px;
  background: #fff;
  font-size: 13.5px;
  cursor: pointer;
}
@media (min-width: 700px) {
  .filters {
    grid-template-columns: repeat(4, 1fr);
  }
  .filters select {
    font-size: 14px;
    padding: 10px;
  }
}
.breadcrumb {
  margin-top: 14px;
  font-size: 13px;
  color: #8e1c3a;
}
.page-title {
  font-size: 24px;
  font-weight: 600;
  margin: 6px 0 16px;
  color: #1f1410;
}
.profiles-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 40px;
}
.profile-card {
  display: flex;
  background: #fff;
  border: 1px solid #ead9cc;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.profile-card:hover {
  box-shadow: 0 3px 12px rgba(142, 28, 58, 0.12);
}
.photo-box {
  width: 130px;
  min-width: 130px;
  height: 170px;
  position: relative;
  background: #f0e6dc;
  flex-shrink: 0;
  overflow: hidden;
}
.slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.photo-count {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  z-index: 2;
}
.content {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.title {
  font-size: 14.5px;
  font-weight: 600;
  color: #8e1c3a;
  line-height: 1.3;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.title.promoted {
  border: 1.5px dashed #c4a35a;
  padding: 4px 6px;
  border-radius: 4px;
}
.desc {
  font-size: 12.5px;
  color: #5c4a42;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.meta {
  font-size: 12px;
  color: #5c4a42;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.meta span {
  display: flex;
  align-items: center;
  gap: 3px;
}
.top-badge {
  position: absolute;
  top: 7px;
  right: 8px;
  background: #8e1c3a;
  border: 1px solid #6b1028;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 3px;
  color: #fff;
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: #f7f1ea;
  z-index: 1000;
  overflow-y: auto;
}
.modal-content {
  background: #fff;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  padding-bottom: 30px;
}
.close-btn {
  position: absolute;
  right: 14px;
  top: 12px;
  font-size: 26px;
  cursor: pointer;
  color: #5c4a42;
  z-index: 10;
  background: rgba(255,255,255,0.9);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.modal-top { padding: 16px 16px 10px; }
.modal-age-loc {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.age-badge {
  background: #f3d5dc;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  color: #6b1028;
  display: flex;
  align-items: center;
  gap: 4px;
}
.loc-text {
  font-size: 13.5px;
  color: #5c4a42;
  display: flex;
  align-items: center;
  gap: 4px;
}
.modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f1410;
  line-height: 1.35;
  margin-bottom: 4px;
}
.modal-photo-box {
  position: relative;
  width: 100%;
  background: #1f1410;
}
.modal-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.show-all-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
}
.about-section { padding: 18px 16px; }
.about-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.modal-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #333;
}
.action-buttons {
  display: flex;
  gap: 10px;
  padding: 0 16px 20px;
  margin-top: 10px;
}
.btn {
  flex: 1;
  padding: 13px 8px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-call { background: #8e1c3a; flex: 1.4; }
.btn-whatsapp { background: #25D366; }
.btn-telegram { background: #0088cc; flex: 0.7; }
@media (max-width: 500px) {
  .photo-box { width: 115px; min-width: 115px; height: 155px; }
  .content { padding: 9px 10px; }
  .title { font-size: 13.5px; }
  .desc { font-size: 12px; }
  .meta { font-size: 11.5px; gap: 6px; }
  .page-title { font-size: 22px; }
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0 50px;
  flex-wrap: wrap;
}
.pagination button {
  min-width: 38px;
  height: 38px;
  border: 1px solid #ead9cc;
  background: #fff;
  color: #333;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.pagination button:hover:not(:disabled) { background: #f3d5dc; }
.pagination button.active {
  background: #8e1c3a;
  color: #fff;
  border-color: #8e1c3a;
}
.pagination button:disabled { opacity: 0.4; cursor: not-allowed; }
.content-section {
  background: #f7f1ea;
  padding: 40px 0 50px;
  margin-top: 20px;
  border-top: 1px solid #ead9cc;
}
.content-section h1 {
  font-size: 26px;
  font-weight: 700;
  color: #1f1410;
  margin-bottom: 18px;
  line-height: 1.3;
}
.content-section h2 {
  font-size: 20px;
  font-weight: 600;
  color: #6b1028;
  margin: 25px 0 12px;
}
.content-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 14px;
}
.content-section ul { margin: 12px 0 20px 20px; padding: 0; }
.content-section ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 6px;
}
@media (max-width: 500px) {
  .content-section { padding: 30px 0 40px; }
  .content-section h1 { font-size: 22px; }
  .content-section h2 { font-size: 18px; }
}
.tags-section {
  background: #f7f1ea;
  padding: 30px 0;
}
.tags-heading {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #8e1c3a;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tags-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.tag {
  background: #fff;
  border: 1.5px solid #8e1c3a;
  color: #8e1c3a;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.tag:hover { background: #8e1c3a; color: #fff; }
@media (max-width: 500px) {
  .tags-heading { font-size: 20px; }
  .tag { padding: 7px 14px; font-size: 13px; }
}
.faq-section {
  background: #f7f1ea;
  border-top: 1px solid #ead9cc;
  padding: 40px 0;
}
.faq-heading {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #1f1410;
  margin-bottom: 30px;
}
.faq-item {
  background: #fff;
  border: 1px solid #ead9cc;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 16px 18px;
  text-align: left;
  font-size: 15.5px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question:hover { background: #fffaf5; }
.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: #8e1c3a;
  transition: transform 0.25s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 18px 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}
@media (max-width: 500px) {
  .faq-heading { font-size: 20px; }
  .faq-question { font-size: 14.5px; padding: 14px 15px; }
}
.footer {
  background: #f7f1ea;
  border-top: 1px solid #3a2a30;
  padding: 40px 0 30px;
  margin-top: 20px;
  font-size: 14px;
  color: #d7c4ba;
}
.footer-disclaimer { max-width: 900px; margin: 0 auto 25px; }
.footer-disclaimer p {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}
.footer-line { border: none; border-top: 1px solid #3a2a30; margin: 25px 0; }
.footer-main { display: flex; flex-wrap: wrap; gap: 40px; margin-bottom: 35px; }
.footer-about { flex: 1; min-width: 260px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.logo-text { font-size: 24px; font-weight: 700; color: #8e1c3a; }
.rta-badge {
  background: #8e1c3a;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.footer-about p { font-size: 13.5px; line-height: 1.6; color: #333; }
.footer-links { display: flex; flex-wrap: wrap; gap: 40px; }
.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: #c4a35a;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #c4a35a; }
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }
.whatsapp-btn { background: #25D366; color: white; }
.call-btn { background: #8e1c3a; color: white; }
@media (max-width: 500px) {
  .floating-buttons { bottom: 20px; right: 15px; }
  .float-btn { width: 50px; height: 50px; font-size: 22px; }
}
.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-box {
  background: #fff;
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}
.age-box h2 { font-size: 24px; color: #1f1410; margin-bottom: 14px; }
.age-box p { font-size: 15px; color: #444; line-height: 1.55; margin-bottom: 24px; }
.age-buttons { display: flex; flex-direction: column; gap: 12px; }
.age-enter {
  background: #8e1c3a;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.age-enter:hover { background: #6b1028; }
.age-exit {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
}
.age-exit:hover { background: #eee; }
.age-note {
  font-size: 12px !important;
  color: #777 !important;
  margin-top: 18px !important;
  margin-bottom: 0 !important;
}
.modal-back-bottom { padding: 10px 16px 25px; text-align: center; }
.back-to-home {
  background: none;
  border: 1.5px solid #8e1c3a;
  color: #8e1c3a;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 8px;
  width: 100%;
  transition: all 0.2s;
}
.back-to-home:hover { background: #8e1c3a; color: #fff; }
.photo-box::after,
.modal-photo-box::after {
  content: "mgirls.in";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
  font-size: 18px;
  font-weight: 700;
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.modal-photo-box::after { font-size: 28px; }
