:root {
  --bg-dark: #090514;
  --bg-card: rgba(22, 14, 40, 0.7);
  --accent-purple: #8257e5;
  --accent-gold: #d4af37;
  --text-primary: #f8f6fc;
  --text-muted: #8b80a5;
  --border-light: rgba(130, 87, 229, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  padding-bottom: 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: rgba(9, 5, 20, 0.95);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  color: var(--accent-gold);
}

.subtitle {
  font-size: 0.8rem;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Intro Section */
.intro-section {
  text-align: center;
  padding: 40px 0 20px 0;
  max-width: 800px;
  margin: 0 auto;
}

.intro-section h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--text-primary);
  background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-section p {
  color: var(--text-muted);
  font-size: 1rem;
}

.intro-section strong {
  color: var(--accent-gold);
}

/* Loader */
.loader {
  text-align: center;
  padding: 40px;
  font-size: 1.2rem;
  color: var(--accent-purple);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* Profiles Grid */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 30px 0;
}

/* Card */
.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.profile-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.card-image-wrapper {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.profile-card:hover .card-image {
  transform: scale(1.05);
}

/* Adult Nudity Blur Option (can be customized) */
.card-image.blur-effect {
  filter: blur(8px);
  transition: filter 0.3s ease;
}

.profile-card:hover .card-image.blur-effect {
  filter: blur(2px);
}

.badge-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(130, 87, 229, 0.9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.whatsapp-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #25d366;
  color: #fff;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.card-info {
  padding: 16px;
  background: linear-gradient(to top, rgba(9, 5, 20, 0.95) 0%, rgba(9, 5, 20, 0.7) 100%);
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.profile-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.profile-age-city {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.profile-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .intro-section h1 {
    font-size: 1.75rem;
  }
  .nav-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* SEO Tag Cloud Section */
.seo-tag-cloud-section {
  margin-top: 40px;
  padding: 24px;
  background: rgba(22, 14, 40, 0.4);
  border: 1px dashed var(--border-light);
  border-radius: 12px;
  text-align: center;
}

.seo-tag-cloud-section h3 {
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.tag:hover {
  color: var(--text-primary);
  border-color: var(--accent-purple);
  background: rgba(130, 87, 229, 0.1);
}
