:root {
  --bg: #0f0f11;
  --surface: #17171a;
  --card: #1d1d21;
  --text: #f4f4f6;
  --muted: #b9bac3;
  --primary: #b3261e;
  --primary-contrast: #ffffff;
  --border: #2a2a2f;
  --success: #1fb07f;
  --header-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  touch-action: pan-y;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: hidden;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 2147483647;
  background: rgba(15,15,17,0.9);
  backdrop-filter: saturate(120%) blur(6px);
  border-bottom: 1px solid var(--border);
  isolation: isolate;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  justify-content: space-between;
  position: relative;
  z-index: 10000;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.nav-toggle { display: none; }
.nav-toggle-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
}
.brand img { border-radius: 6px; }
.brand-name { font-weight: 700; letter-spacing: 0.2px; }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .05s ease-in, background .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary);
  color: var(--primary-contrast);
  border-color: #9a1f18;
}
.btn-primary:hover { background: #a8221b; }
.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: #a8221b;
}
.btn-outline:hover { background: var(--surface); }

/* Sections */
.section { padding: 56px 0; }
.section h2 {
  margin: 0 0 14px 0;
  font-size: 32px;
}
.section p { color: var(--muted); }

/* Hero */
.hero {
  padding: 60px 0;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 520px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
  pointer-events: none;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-media { display: none; }
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  border: 1px solid var(--border);
}
.hero-content {
  max-width: 760px;

  padding: 20px;
  border-radius: 14px;
  text-align: center;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 40px;
  margin-bottom: 12px;
}
.hero-ctas { display: flex; gap: 12px; margin: 10px 0 12px; justify-content: center; }
.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
  justify-content: center;
}
.trust-points li {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
}

/* Grid */
.grid {
  display: grid;
  gap: 18px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.features { grid-template-columns: repeat(3, 1fr); }
.split .card img {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  border: 1px solid var(--border);
  object-fit: cover;
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  overflow: hidden;
}
.card h3 { margin: 0 0 8px 0; font-size: 22px; }
.card p { margin: 0; }
.card ul { margin: 8px 0 0 0; padding: 0 0 0 18px; }
.card ul li { color: var(--muted); }

/* Features */
.features .feature { display: grid; align-items: start; gap: 12px; }
.features .icon {
  width: 42px;
  height: 42px;
  background: #c6aeb0;
  border: 1px solid #3b1e20;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--primary);
}
.features .icon svg { width: 24px; height: 24px; }

/* Profiles */
.profiles .profile img {
  width: 100%;
  height: 280px;
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  object-fit: cover;
}
.profiles .profile h3 { font-size: 18px; }

/* Cities */
.cities .city img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
}

/* Steps */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  position: relative;
  padding-left: 44px;
  margin: 12px 0;
  color: var(--muted);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 700;
}

/* Blog posts */
.blog .post img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
}
/* Blog titles: index.html and blog.html */
.blog .post h3,
.post h3 { color: #ffffff; }
.blog .post a,
.post a { color: #ffffff; text-decoration: none; }
.blog .post a:hover,
.post a:hover { text-decoration: none; }
.section p a,
.card p a,
.section li a,
.section td a { color: #ffffff; }
.section p a:visited,
.card p a:visited,
.section li a:visited,
.section td a:visited { color: #ffffff; }
/* Room type images */
.room-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 10px;
}
/* Member type images */
.type-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 10px;
}

/* FAQ */
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 10px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}
.faq p { color: var(--muted); margin-top: 8px; }

/* CTA */
.cta {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-image: url("images/hero2.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.35));
  pointer-events: none;
}
.cta-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 420px;
}
.cta-media { display: none; }
.cta-content {
  text-align: center;
  max-width: 760px;
  background: rgba(23,23,26,.55);
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
  padding: 20px;
  border-radius: 14px;
}
.cta-content h2 { margin: 0 0 6px 0; }
.cta-content p { color: var(--muted); margin: 0 0 12px 0; }

/* Footer */
.site-footer {
  padding: 26px 0 18px 0;
  background: #121213;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-brand img { border-radius: 6px; }
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin: 6px 0; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  overflow-x: hidden;
}
.footer-bottom p { margin: 0; color: var(--muted); }
.footer-bottom p, .footer-links a { word-break: break-word; overflow-wrap: anywhere; }
.footer-bottom a { color: #ffffff !important; }
.footer-bottom a:visited { color: #ffffff !important; }

img, svg, video, canvas, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-wrap, .cta-wrap { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav { flex-wrap: nowrap; flex-direction: row; align-items: center; gap: 10px; }
  .nav-toggle-btn { display: inline-flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 1001;
    background: #121213;
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
    flex-direction: column;
    gap: 0;
  }
  .nav-toggle:checked ~ .nav-toggle-btn { background: #1d1d21; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 16px 4px;
    color: var(--text);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    text-align: left;
    text-transform: none;
    letter-spacing: .3px;
    word-break: break-word;
  }
  .nav-links .btn-primary {
    width: 100%;
    margin-top: auto;
    padding: 16px;
    border-radius: 10px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .section { padding: 42px 0; }
  .section, .container { overflow-x: hidden; }
}
@media (min-width: 1200px) {
  body { font-size: 18px; }
  .section h2 { font-size: 34px; }
  .hero-content h1 { font-size: 48px; }
}

:root {
  --accent-gold: #d4af37;
  --accent-sky: #3aaed8;
}
.section h2 {
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  display: inline-block;
}
.section h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #a8221b 45%, var(--success));
  border-radius: 999px;
  margin-top: 8px;
}
.btn-primary {
  box-shadow: 0 8px 24px rgba(179, 38, 30, .35);
}
.btn-outline {
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}



.cards .card,
.cities .card,
.profiles .profile {
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
}
.cards .card:hover,
.cities .card:hover,
.profiles .profile:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.30);
}

#members .profile {
  border-radius: 16px;
  border-top: 2px solid var(--primary);
  box-shadow: 0 12px 28px rgba(179, 38, 30, .25);
}
#members .profile:hover {
  border-color: #a8221b;
  box-shadow: 0 16px 36px rgba(179, 38, 30, .35);
}

#member-types .card {
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(29,29,33,.96), rgba(29,29,33,.88));
  box-shadow: 0 10px 24px rgba(212, 175, 55, .15);
  border-top: 2px solid var(--accent-gold);
}
#member-types .type-img {
  border-color: var(--accent-gold);
  border-radius: 12px;
}

#rooms .card {
  border-radius: 10px;
  border-left: 3px solid var(--success);
  box-shadow: 0 10px 24px rgba(31, 176, 127, .14);
}
#rooms .card:hover {
  box-shadow: 0 16px 34px rgba(31, 176, 127, .22);
}
#rooms .room-img {
  border-color: var(--success);
  border-radius: 12px;
}

#safety .card {
  border-top: 2px solid var(--success);
  box-shadow: 0 10px 24px rgba(31, 176, 127, .12);
}
#safety .card:hover {
  box-shadow: 0 14px 30px rgba(31, 176, 127, .20);
}

#cities .card.city {
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,.26);
}
#cities .card.city:hover {
  box-shadow: 0 16px 34px rgba(0,0,0,.32);
}

.features .feature {
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(58, 30, 32, .22);
}
.features .icon {
  background: linear-gradient(180deg, #c6aeb0, #bfa3a6);
  color: var(--primary);
  border-color: #4a2527;
}

.cta-content {
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.hero-private {
  background-image: url("images/sugarmommychat.jpg");
}

.hero-group {
  background-image: url("images/sugarmommadd-913x570.jpg");
  background-position: center;
}

/* Page-specific hero override for City Chats */
.hero-cities {
  background-image: url("images/richwomnindia-1545x858.jpg");
  background-position: center;
}

/* Page-specific hero override for Anonymous Chat */
.hero-anonymous {
  background-image: url("images/hero1.jpg");
  background-position: center;
}
 .hero-rules {
  background-image: url("images/sugardaddyindiann-840x507.jpg");
  background-position: center;
}
.hero-first-messages {
  background-image: url("images/perfectsugardaddyindia-925x534.jpg");
  background-position: center;
}
.hero-near-me {
  background-image: url("images/indiandating-864x597.jpg");
  background-position: center;
}
.hero-fake-sd {
  background-image: url("images/indianwirhdoubt-744x504.jpg");
  background-position: center;
}
.hero-photos {
  background-image: url("images/indiansugardaddyf-787x535.jpg");
  background-position: center;
}

/* Compare table (Group Chat) */
#compare .table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#compare table {
  width: 100%;
  border-collapse: collapse;
}
#compare .compare-table {
  table-layout: fixed;
}
#compare .compare-table.two-col th,
#compare .compare-table.two-col td {
  width: 50%;
}
#compare th,
#compare td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
#compare caption {
  text-align: left;
  color: var(--muted);
  margin-bottom: 8px;
}
#compare thead th,
#compare tbody th {
  background: rgba(23,23,26,.55);
}
#compare td {
  color: var(--muted);
  word-break: break-word;
  hyphens: auto;
}
#compare td ul { margin: 0; padding-left: 18px; }
#compare td ul li { margin: 6px 0; }
#compare tbody tr:nth-child(odd) td {
  background: rgba(29,29,33,.35);
}
@media (max-width: 680px) {
  #compare .table-wrap { overflow-x: hidden; }
  #compare th, #compare td { padding: 8px; }
}

/* Compare table (City Chats) */
#city-compare .table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#city-compare table {
  width: 100%;
  border-collapse: collapse;
}
#city-compare .compare-table {
  table-layout: fixed;
}
#city-compare th,
#city-compare td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
#city-compare thead th {
  background: rgba(23,23,26,.55);
}
#city-compare td {
  color: var(--muted);
  word-break: break-word;
  hyphens: auto;
}
#city-compare tbody tr:nth-child(odd) td {
  background: rgba(29,29,33,.35);
}
#city-compare tbody tr:hover td {
  background: rgba(29,29,33,.45);
}
@media (max-width: 680px) {
  #city-compare .table-wrap { overflow-x: hidden; }
  #city-compare th, #city-compare td { padding: 8px; }
}
/* Compare table (Anonymous Chat) */
#anon-compare .table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#anon-compare table {
  width: 100%;
  border-collapse: collapse;
}
#anon-compare .compare-table {
  table-layout: fixed;
}
#anon-compare th,
#anon-compare td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
#anon-compare caption {
  text-align: left;
  color: var(--muted);
  margin-bottom: 8px;
}
#anon-compare thead th,
#anon-compare tbody th {
  background: rgba(23,23,26,.55);
}
#anon-compare td {
  color: var(--muted);
  word-break: break-word;
  hyphens: auto;
}
#anon-compare tbody tr:nth-child(odd) td {
  background: rgba(29,29,33,.35);
}
#anon-compare tbody tr:hover td {
  background: rgba(29,29,33,.45);
}
@media (max-width: 680px) {
  #anon-compare .table-wrap { overflow-x: hidden; }
  #anon-compare th, #anon-compare td { padding: 8px; }
}
#rules-table .table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#rules-table table {
  width: 100%;
  border-collapse: collapse;
}
#rules-table .compare-table {
  table-layout: fixed;
}
#rules-table th,
#rules-table td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
#rules-table thead th {
  background: rgba(23,23,26,.55);
}
#rules-table td {
  color: var(--muted);
  word-break: break-word;
  hyphens: auto;
}
#rules-table tbody tr:nth-child(odd) td {
  background: rgba(29,29,33,.35);
}
#rules-table tbody tr:hover td {
  background: rgba(29,29,33,.45);
}
@media (max-width: 680px) {
  #rules-table .table-wrap { overflow-x: hidden; }
  #rules-table th, #rules-table td { padding: 8px; }
}
.table-wrap { }
#messages-table .table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#messages-table table {
  width: 100%;
  border-collapse: collapse;
}
#messages-table .compare-table {
  table-layout: fixed;
}
#messages-table th,
#messages-table td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
#messages-table thead th {
  background: rgba(23,23,26,.55);
}
#messages-table td {
  color: var(--muted);
  word-break: break-word;
  hyphens: auto;
}
#messages-table tbody tr:nth-child(odd) td {
  background: rgba(29,29,33,.35);
}
#messages-table tbody tr:hover td {
  background: rgba(29,29,33,.45);
}
@media (max-width: 680px) {
  #messages-table .table-wrap { overflow-x: hidden; }
  #messages-table th, #messages-table td { padding: 8px; }
}
#nearme-table .table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#nearme-table table {
  width: 100%;
  border-collapse: collapse;
}
#nearme-table .compare-table {
  table-layout: fixed;
}
#nearme-table th,
#nearme-table td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
#nearme-table thead th {
  background: rgba(23,23,26,.55);
}
#nearme-table td {
  color: var(--muted);
  word-break: break-word;
  hyphens: auto;
}
#nearme-table tbody tr:nth-child(odd) td {
  background: rgba(29,29,33,.35);
}
#nearme-table tbody tr:hover td {
  background: rgba(29,29,33,.45);
}
@media (max-width: 680px) {
  #nearme-table .table-wrap { overflow-x: hidden; }
  #nearme-table th, #nearme-table td { padding: 8px; }
}
#fake-compare .table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#fake-compare table {
  width: 100%;
  border-collapse: collapse;
}
#fake-compare .compare-table {
  table-layout: fixed;
}
#fake-compare th,
#fake-compare td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
#fake-compare thead th {
  background: rgba(23,23,26,.55);
}
#fake-compare td {
  color: var(--muted);
  word-break: break-word;
  hyphens: auto;
}
#fake-compare tbody tr:nth-child(odd) td {
  background: rgba(29,29,33,.35);
}
#fake-compare tbody tr:hover td {
  background: rgba(29,29,33,.45);
}
@media (max-width: 680px) {
  #fake-compare .table-wrap { overflow-x: hidden; }
  #fake-compare th, #fake-compare td { padding: 8px; }
}
#photos-table .table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#photos-table table {
  width: 100%;
  border-collapse: collapse;
}
#photos-table .compare-table {
  table-layout: fixed;
}
#photos-table th,
#photos-table td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
#photos-table thead th {
  background: rgba(23,23,26,.55);
}
#photos-table td {
  color: var(--muted);
  word-break: break-word;
  hyphens: auto;
}
#photos-table tbody tr:nth-child(odd) td {
  background: rgba(29,29,33,.35);
}
#photos-table tbody tr:hover td {
  background: rgba(29,29,33,.45);
}
@media (max-width: 680px) {
  #photos-table .table-wrap { overflow-x: hidden; }
  #photos-table th, #photos-table td { padding: 8px; }
}
