/* 🎨 Basic Theme Variables */
body.light-mode {
  --bg-color: #fff;
  --text-color: #000;
}

body.dark-mode {
  --bg-color: #121212;
  --text-color: #fff;
}

/* 🌐 Global Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.5s, color 0.5s;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 🌌 Background Video */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
}

/* 💫 Top Menu */
.top-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(5px);
}

.top-menu .logo {
  font-size: 2rem;
  font-weight: bold;
  color: #ff007f;
}

.top-menu nav a {
  margin: 0 1rem;
}

/* ✨ Glow Button */
.glow-button {
  background-color: #0ff;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 10px #0ff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.glow-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #0ff, 0 0 30px #ff00ff;
}

.glow-button.small {
  padding: 5px 10px;
  font-size: 0.8rem;
}

/* 🔍 Filter/Search Bar */
#filterBar {
  padding: 1rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  margin-top: 10px;
}

#filterBar input,
#filterBar select {
  margin: 0.3rem;
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* 📊 Result Counter */
#resultCount {
  text-align: center;
  margin: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
}

/* 👤 User Container & Card Layout */
.user-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  align-items: stretch;
}

.user-card {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border: 2px solid #0f0;
  border-radius: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 15px #0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.user-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #0ff, 0 0 60px #ff00ff;
}

.user-card-layout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.user-image-container {
  width: 230px;
  height: 350px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #ff00ff;
  box-shadow: 0 0 10px #ff00ff;
}

.user-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.user-info p {
  margin: 6px 0;
}

/* 🏷️ Badges */
.verified-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: gold;
  color: black;
  font-weight: bold;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  z-index: 10;
  animation: pulse 2s infinite;
}

.status-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  border: 2px solid #fff;
  box-shadow: 0 0 6px #000;
}

.status-indicator.online {
  background-color: #00ff00;
  box-shadow: 0 0 10px #00ff00;
}

.status-indicator.offline {
  background-color: #ff0000;
  box-shadow: 0 0 10px #ff0000;
}

/* 💬 Action Buttons (Call / Chat / Like) */
.card-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.call-btn,
.chat-btn,
.fav-btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  text-shadow: 0 0 4px #fff;
}

.call-btn {
  background-color: #ff0055;
  color: white;
  box-shadow: 0 0 10px #ff0055, 0 0 20px #ff0055;
}

.chat-btn {
  background-color: #00bfff;
  color: white;
  box-shadow: 0 0 10px #00bfff, 0 0 20px #00bfff;
}

.fav-btn {
  background-color: #ff00ff;
  color: white;
  box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

.call-btn:hover,
.chat-btn:hover,
.fav-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.call-btn:active,
.chat-btn:active,
.fav-btn:active {
  transform: scale(0.95);
}

/* 🔄 Pagination */
.pagination {
  text-align: center;
  margin: 2rem 0;
}

.pagination button {
  margin: 0 10px;
}

/* 🔝 Back to Top */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
}

/* 💬 Message Popup */
.popup {
  position: fixed;
  bottom: 50px;
  right: 50px;
  background-color: rgba(0, 255, 255, 0.9);
  color: black;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px #0ff;
}

.popup.hidden {
  display: none;
}

/* 🦶 Footer */
.footer {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.footer a {
  margin: 0 1rem;
}

/* 🌟 Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 5px gold;
  }
  50% {
    box-shadow: 0 0 15px gold;
  }
  100% {
    box-shadow: 0 0 5px gold;
  }
}

/* 📱 Responsive Design */
@media screen and (max-width: 768px) {
  .user-container {
    flex-direction: column;
  }

  .user-card-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .top-menu {
    flex-direction: column;
  }

  .top-menu nav {
    margin-top: 1rem;
  }
}
@keyframes neon-blink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 5px gold, 0 0 10px gold, 0 0 20px #ffd700;
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 10px orange, 0 0 20px orange, 0 0 30px red;
  }
}

.badge.top-rated {
  background-color: gold;
  color: black;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 12px;
  box-shadow: 0 0 5px gold;
  animation: neon-blink 1.5s infinite ease-in-out;
  display: inline-block;
  font-size: 12px;
}
/* 🧠 SEO Text Block */
.seo-text {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #ff007f;
  border-radius: 10px;
  color: var(--text-color);
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.3);
  font-size: 16px;
  line-height: 1.6;
}

.seo-text h2 {
  font-size: 24px;
  color: #0ff;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px #0ff;
}

.seo-text strong {
  color: #ff00ff;
  font-weight: bold;
}

.seo-text em {
  font-style: italic;
  color: #00ffff;
}

.seo-text p {
  margin: 1rem 0;
}
/* gallery.css - Updated with neon styles for category filters and chips */

/* Existing styles assumed above... */

/* 🌈 Filter Category Neon Glow Section */
.category-filter {
  padding: 1rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid #ff00ff;
  box-shadow: 0 0 15px #ff00ff;
  margin: 20px auto;
  border-radius: 12px;
  width: 90%;
  max-width: 1000px;
}

.category-filter label {
  color: #0ff;
  font-weight: bold;
  margin: 0 5px;
  text-shadow: 0 0 5px #0ff;
}

.category-filter select {
  padding: 8px 12px;
  margin: 5px;
  border-radius: 10px;
  border: 2px solid #ff00ff;
  background-color: #111;
  color: #0ff;
  font-weight: bold;
  box-shadow: 0 0 10px #ff00ff, 0 0 20px #0ff;
  transition: all 0.3s ease;
}

.category-filter select:focus {
  outline: none;
  transform: scale(1.05);
  box-shadow: 0 0 15px #0ff, 0 0 25px #ff00ff;
}

/* 🏷️ Active Filter Chips */
#activeTags {
  margin: 1rem auto;
  text-align: center;
  max-width: 1000px;
}

.filter-chip {
  display: inline-block;
  margin: 5px;
  padding: 8px 12px;
  background-color: #0ff;
  color: #000;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 0 10px #0ff, 0 0 20px #ff00ff;
  animation: neon-blink 2s infinite;
}

@keyframes neon-blink {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.glow-banner {
  text-align: center;
  padding: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  background: linear-gradient(to right, #ff00cc, #3333ff);
  color: #ffeb3b; /* Bright Yellow Text */
  text-shadow: 0 0 5px #ffeb3b, 0 0 10px #ffeb3b, 0 0 20px #fff;
  animation: banner-blink 1.5s infinite;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

@keyframes banner-blink {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 5px #ffeb3b, 0 0 15px #0ff, 0 0 30px #f0f;
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 10px #f0f, 0 0 25px #0ff, 0 0 40px #fff;
  }
}

@media screen and (max-width: 768px) {
  .user-card {
    flex-direction: column;
    width: 90%;
    margin: auto;
  }

  .user-card-layout {
    flex-direction: column;
  }

  .user-img {
    width: 100%;
    height: auto;
  }

  .card-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-card {
    width: 100%;
    margin: 10px auto;
  }

  .blog-section {
    flex-direction: column;
  }
}
