/* ========================================= */
/* 6MAPS – COMPLETE OPTIMIZED CSS v2 */
/* ========================================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #3a0a6a, #12001f);
  color: #ffffff;
}

/* ========================================= */
/* TOPBAR */
/* ========================================= */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
}

.topbar a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 15px;
  font-weight: 500;
}

/* ========================================= */
/* BUTTONS */
/* ========================================= */

.btn {

  display: inline-block;

  background: linear-gradient(135deg, #ff4fd8, #c77dff);

  padding: 12px 22px;

  border-radius: 999px;

  color: #ffffff;

  text-decoration: none;

  font-weight: 600;

  transition: all 0.25s ease;

}

.btn:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 20px rgba(199,125,255,0.4);

}

.btn.outline {

  background: transparent;

  border: 1px solid #ff4fd8;

}

.btn.small {

  padding: 8px 14px;

}

/* ========================================= */
/* HERO */
/* ========================================= */

.hero {

  text-align: center;

  padding: 100px 20px 80px;

}

h1 {

  font-size: clamp(36px, 5vw, 56px);

  font-weight: 800;

  line-height: 1.15;

  background: linear-gradient(90deg, #ff4fd8, #c77dff, #7b9dff);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}

h2 {

  text-align: center;

  font-size: clamp(24px, 3vw, 32px);

  margin-bottom: 15px;

}

h3 {

  margin-bottom: 10px;

}

.hero-sub {

  font-size: 18px;

  opacity: 0.9;

}

.hero-text {

  max-width: 900px;

  margin: 20px auto;

  opacity: 0.85;

}

.hero-actions {

  margin-top: 30px;

  display: flex;

  justify-content: center;

  gap: 16px;

  flex-wrap: wrap;

}

/* ========================================= */
/* CARDS */
/* ========================================= */

.cards {

  padding: 80px 40px;

}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 280px));
  justify-content: center;
  gap: 28px;
}}
}

.card {
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 15px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.25s ease;
  width: 280px;
  box-sizing: border-box;

}

.card:hover {

  transform: translateY(-4px);

  box-shadow: 0 12px 35px rgba(0,0,0,0.45);

}

.card img {

  width: 100%;

  border-radius: 12px;

  height: 220px;

  object-fit: cover;

}

/* ========================================= */
/* SEO SECTIONS */
/* ========================================= */

.ultra-core-section,
.core-cities-section,
.region-section {

  text-align: center;

  max-width: 1200px;

  margin: 0 auto;

  padding: 40px 20px;

}

.ultra-core-intro,
.core-cities-intro,
.region-intro {

  max-width: 900px;

  margin: 0 auto 25px auto;

  opacity: 0.9;

  line-height: 1.6;

}

/* ========================================= */
/* CITY CONTAINERS */
/* ========================================= */

.ultra-core-grid,
.core-cities-grid,
.city-links {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 12px;

  margin-top: 20px;

}

/* ========================================= */
/* FORCE CITY BUBBLES – GLOBAL */
/* ========================================= */

.city-bubble,
.city-links a,
a[href^="/sex-"] {

  display: inline-block !important;

  padding: 10px 18px !important;

  margin: 4px !important;

  border-radius: 999px !important;

  background: linear-gradient(
    135deg,
    rgba(123,44,255,0.35),
    rgba(255,79,216,0.35)
  ) !important;

  color: #ffffff !important;

  text-decoration: none !important;

  font-size: 14px !important;

  font-weight: 600 !important;

  backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.18);

  box-shadow:
    0 4px 15px rgba(0,0,0,0.25),
    inset 0 0 10px rgba(255,255,255,0.08);

  transition: all 0.25s ease !important;

}

/* hover */

.city-bubble:hover,
.city-links a:hover,
a[href^="/sex-"]:hover {

  transform: translateY(-3px) scale(1.05);

  background: linear-gradient(135deg, #7b2cff, #ff4fd8) !important;

  box-shadow:
    0 10px 30px rgba(123,44,255,0.5),
    0 0 20px rgba(255,79,216,0.4);

}

/* active */

.city-bubble.active,
.city-links a.active,
a[href^="/sex-"].active {

  background: linear-gradient(135deg, #ff4fd8, #c77dff) !important;

  box-shadow:
    0 0 30px rgba(255,79,216,0.9),
    0 0 60px rgba(199,125,255,0.6);

  transform: scale(1.1);

}

/* ultra core */

.city-bubble.ultra-core {

  font-size: 15px;

  padding: 12px 22px;

  background: linear-gradient(135deg, #7c3aed, #c084fc) !important;

}

/* ========================================= */
/* REGION */
/* ========================================= */

.region {

  margin-bottom: 30px;

}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.footer {

  text-align: center;

  padding: 30px;

  opacity: 0.6;

}

/* ========================================= */
/* FADE ANIMATION */
/* ========================================= */

.city-bubble,
.city-links a,
a[href^="/sex-"] {

  opacity: 0;

  transform: translateY(15px);

  animation: fadeBubble 0.5s ease forwards;

}

@keyframes fadeBubble {

  to {

    opacity: 1;

    transform: translateY(0);

  }

}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 768px) {

  .topbar {

    padding: 15px;

  }

  .hero {

    padding: 70px 15px;

  }

  .city-bubble,
  .city-links a,
  a[href^="/sex-"] {

    font-size: 13px !important;

    padding: 9px 14px !important;

  }

}

@media (max-width: 480px) {

  h1 {

    font-size: 32px;

  }

}
.card {
  background: #2d0b4e;
  border-radius: 14px;
  padding: 16px;
  display: block;
  transition: 0.2s;
}

.card:hover {
  transform: scale(1.02);
}

.price-badge {
  background: #ff4da6;
  color: white;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 8px;
}

.card-title {
  color: white;
  font-size: 18px;
}

.card-location {
  color: #aaa;
  font-size: 14px;
}

.card-description {
  color: #ccc;
  font-size: 14px;
}

