:root {
  --em-dark-1: #0f0f0f;
  --em-dark-2: #171717;
  --em-card: #171717;
  --em-card-soft: #1f1f1f;
  --em-light: #f5f5f5;
  --em-text: #f3f4f6;
  --em-muted: #a3a3a3;
  --em-accent: #ff6321;
  --em-gold: #ff6321;
  --em-danger: #ff6321;
  --em-success: #ff6321;
  --em-radius: 16px;
  --em-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  --em-card-height: 380px;
  --yellow-color-1: #525252;
  --yellow-color-2: #404040;
  --yellow-color-3: #262626;
}

.em-app {
  color: var(--text-primary);
  padding: 0px 0 !important;
  background: var(--bg-base);
}

.em-app[data-theme="dark"] {
  --bg-base: #0f0f0f;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.72);
}

.em-app[data-theme="light"] {
  --bg-base: #ffffff;
  --bg-accent-1: #ffffff;
  --bg-accent-2: #ffffff;
  --bg-accent-3: #ffffff;
  --glass-bg: #ffffff;
  --glass-border: rgba(15, 15, 15, 0.08);
  --glass-shadow: 0 16px 36px rgba(15, 15, 15, 0.08);
  --text-primary: #111111;
  --text-secondary: rgba(17, 17, 17, 0.72);
}

.em-app .em-home,
.em-app .em-listing,
.em-app .em-profile,
.em-app .em-main {
  background: transparent;
}

.em-app .em-card,
.em-app .em-card-light,
.em-app .em-hero-card,
.em-app .em-detail-card,
.em-app .em-cta-box,
.em-app .em-section,
.em-app .em-shortcode-note,
.em-app .em-form-card,
.em-app .em-form-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.em-app .em-section-head h2,
.em-app .em-hero-name,
.em-app h1,
.em-app h2,
.em-app h3 {
  color: var(--text-primary);
}

.em-app p,
.em-app li,
.em-app .em-muted {
  color: var(--text-secondary);
}

body .em-home,
body .em-profile {
  font-family: "Poppins", "Inter", sans-serif;
}

.em-main {
  background: #0f0f0f;
}

.em-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.em-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.em-app .em-header {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.em-header .em-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.em-logo {
  color: white;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.em-heart {
  color: var(--em-accent);
}

.em-nav {
  display: flex;
  gap: 24px;
}

.em-nav a {
  color: var(--em-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.em-nav a:hover {
  color: var(--em-accent);
}

.em-header-actions {
  display: flex;
  gap: 12px;
}

.em-btn {
  background: var(--em-accent);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 24px rgba(255, 45, 117, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.em-btn:hover {
  transform: translateY(-2px);
}

.em-btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.em-btn-light {
  background: white;
  color: #111827;
  box-shadow: none;
}

.em-section {
  padding: 80px 0;
}

.em-section-dark {
  color: var(--em-text);
}

.em-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.em-section-head h2 {
  font-size: 28px;
  color: white;
  margin: 0;
}

.em-link {
  color: var(--em-accent);
  text-decoration: none;
  font-weight: 600;
}

.em-link i {
  margin-right: 6px;
}

.em-nav a i,
.em-btn i,
.em-section-head h2 i,
.em-card-light h3 i {
  margin-right: 8px;
  opacity: 0.9;
}

.em-grid {
  display: grid;
  gap: 22px;
}

.em-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.em-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.em-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.em-card {
  position: relative;
  border-radius: 18px;
  background: var(--em-card);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: var(--em-card-height);
}

.em-card-light {
  background: white;
  color: #0c0d0e;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-radius: var(--em-radius);
  overflow: hidden;
  padding: 24px;
}

.em-profile .em-card-light {
  margin-bottom: 10px;
}

.em-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.em-card-media {
  position: relative;
  overflow: hidden;
  height: 260px;
  flex: 0 0 260px;
}

.em-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: saturate(1.05);
}

.em-card:hover .em-card-media img {
  transform: scale(1.08);
}

.em-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.85) 100%);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.em-card-ribbons {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 3;
}

.em-ribbon {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: none;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
}

.em-ribbon-available {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 8px 16px rgba(34, 197, 94, 0.35);
}

.em-ribbon-visiting {
  background: #262626;
  box-shadow: none;
}

.em-card:hover .em-card-overlay {
  opacity: 1;
}

.em-card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: 2;
}

.em-card:hover .em-card-hover,
.em-card.is-open .em-card-hover {
  opacity: 1;
  transform: translateY(0);
}

.em-card.is-open .em-card-overlay {
  opacity: 1;
}

.em-card.is-hover .em-card-hover {
  opacity: 1;
  transform: translateY(0);
}

.em-card.is-hover .em-card-overlay {
  opacity: 1;
}

.model-hover-scroll {
  width: 100%;
  max-height: 50%;
  overflow: hidden;
  position: relative;
}

.model-hover-info {
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  color: white;
  font-size: 13px;
  display: grid;
  gap: 6px;
  width: 100%;
  background: rgba(10, 10, 12, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
}

.model-hover-info span {
  color: #cccccc;
  font-weight: 500;
  display: inline-block;
  min-width: 110px;
}

.model-hover-info li {
  display: flex;
  justify-content: space-between;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, transform 0.3s ease;
}

.model-hover-info li:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(2px);
}

.em-card:hover .model-hover-scroll,
.em-card.is-open .model-hover-scroll {
  animation: em-hover-scroll 12s linear infinite;
}

.em-card:not(:hover) .model-hover-scroll {
  animation: none;
}

@keyframes em-hover-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.em-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
}

.em-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  color: white;
  letter-spacing: 0.6px;
}

.em-badge-featured {
  background: var(--em-danger);
}

.em-badge-gold {
  background: var(--em-gold);
  color: #1f2937;
}

.em-status-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 12px;
  height: 12px;
  background: var(--em-success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25), 0 0 10px rgba(34, 197, 94, 0.65);
  animation: em-blink 1.4s infinite;
}

@keyframes em-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
}

.em-card-body {
  padding: 16px 18px 18px;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.9) 0%, rgba(0, 0, 0, 1) 100%);
  text-align: left;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.em-card-visiting-strip {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}

.em-card-body h3 {
  margin: 0;
  color: white;
  font-size: 19px;
  font-weight: 700;
}

.em-card-body p {
  margin: 6px 0 0;
  color: #9ca3af;
  font-size: 13px;
}

.em-card-info-panel {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
}

.em-card-info-rows {
  display: grid;
  gap: 6px;
}

.em-card-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  line-height: 1.35;
}

.em-card-info-row span {
  color: #ffffff;
  font-weight: 500;
}

.em-card-info-row strong {
  color: #ffffff;
  font-weight: 700;
  text-align: right;
}

.em-card-info-name {
  display: block;
  margin-top: 14px;
  text-align: left;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: #ffffff !important;
}

.em-card-body .em-card-info-name,
.em-card-body h3.em-card-info-name,
.em-card-link .em-card-info-name,
.em-card-link .em-card-info-name a {
  color: #ffffff !important;
}

.em-card-info-subtitle {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: #ffffff;
}

@media (max-width: 640px) {
  .em-card-info-panel {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px 13px;
    border-radius: 14px;
  }

  .em-card-info-rows {
    gap: 8px;
  }

  .em-card-info-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
    font-size: 12px;
  }

  .em-card-info-row span,
  .em-card-info-row strong {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .em-card-info-row strong {
    text-align: right;
  }

  .em-card-info-name {
    margin-top: 10px;
    font-size: 18px;
  }

  .em-card-info-subtitle {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

.em-card-visiting-marquee {
  margin-top: 10px;
  max-height: 56px;
  overflow: hidden;
  position: relative;
}

.em-card-visiting-marquee .scroll {
  position: absolute;
  top: 80px;
  margin: 0;
  padding: 0;
}

.em-card-visiting-marquee .scroll li {
  list-style: none;
  font-size: 12px;
  line-height: 1.3;
  color: #ffffff;
  padding: 4px 0;
  white-space: nowrap;
}

.em-card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  color: #000000;
}

.em-card-link .em-ribbon {
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-flex;
  align-items: center;
  height: 30px;
  pointer-events: none;
  z-index: 6;
}

.em-card-link .em-ribbon .body {
  background: #dc1818 !important;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 999px 999px 0;
  box-shadow: 0 8px 18px rgba(255, 99, 33, 0.28);
  position: relative;
  z-index: 3;
  white-space: nowrap;
}

.em-app .em-ribbon {
  background: #dc1818 !important;
}

.em-card-link .em-ribbon .block {
  position: absolute;
  left: 0;
  height: 100%;
  width: 16px;
  z-index: 1;
}

.em-card-link .em-ribbon .block-1 {
  background: var(--yellow-color-2);
  transform: translateX(-10px);
  clip-path: polygon(0 0, 100% 0, 70% 50%, 100% 100%, 0 100%);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.em-card-link .em-ribbon .block-2 {
  background: var(--yellow-color-3);
  transform: translateX(-18px) translateY(6px);
  height: 70%;
  clip-path: polygon(0 0, 100% 0, 60% 50%, 100% 100%, 0 100%);
  filter: blur(0.2px);
}

.em-card-link .em-ribbon .block-3 {
  background: rgba(0, 0, 0, 0.18);
  transform: translateX(-6px) translateY(16px);
  height: 6px;
  width: 36px;
  border-radius: 999px;
  filter: blur(6px);
  z-index: 0;
}

.em-avatar-swiper .swiper-slide {
  width: auto;
}

.em-avatar {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: border 0.3s ease, transform 0.3s ease;
}

.em-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.em-avatar:hover {
  border-color: var(--em-accent);
  transform: translateY(-4px);
}

.em-cta {
  background: transparent;
}

.em-cta-box {
  background: var(--em-accent);
  border-radius: 24px;
  padding: 40px 50px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.em-cta-box h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.em-profile {
  background: #f8fafc;
  color: #0c0d0e;
}

.em-profile-hero {
  position: relative;
  padding-bottom: 40px;
}

.em-hero-cover-wrap {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.em-hero-cover-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.em-hero-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.55));
}

.em-snow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #fff 0, #fff 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, #fff 0, #fff 80%, transparent 100%);
}

.em-hero-card {
  margin-top: -64px;
  background: white;
  border-radius: 18px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
}

.em-hero-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
  background: #e2e8f0;
}

.em-hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.em-hero-avatar:hover img {
  transform: scale(1.05);
}

.em-hero-info h1 {
  margin: 0;
}

.em-hero-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  justify-content: space-between;
}

.em-hero-name span:first-child {
  flex: 1;
}

.em-hero-meta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}


.em-hero-visiting {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
}

.em-hero-visiting strong {
  font-weight: 700;
}


.em-verify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
}

.em-verify.is-verified {
  background: #1877f2;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(24, 119, 242, 0.35);
}

.em-verify.is-unverified {
  color: #ef4444;
}

.em-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.em-btn-fav {
  background: #0f172a;
  color: white;
  box-shadow: none;
}

.em-btn-telegram {
  background: #229ed9;
  box-shadow: 0 10px 20px rgba(34, 158, 217, 0.3);
}

.em-btn-whatsapp {
  background: #16a34a;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.3);
}

.em-profile-gallery {
  padding: 30px 0 10px;
}

.em-gallery-swiper img {
  width: 100%;
  border-radius: 16px;
  height: 220px;
  object-fit: cover;
}

.em-profile-main {
  padding: 40px 0 60px;
}

.em-profile-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.em-tags {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.em-about-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.em-about-thumb {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.em-about-thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.em-about-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

@media (max-width: 900px) {
  .em-about-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .em-about-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .em-about-thumb img {
    height: 110px;
  }
}

.em-tag {
  background: #e2e8f0;
  color: #0f172a;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
}

.em-tag i {
  margin-right: 6px;
}

.em-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-weight: 500;
}

.em-form input,
.em-form textarea,
.em-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
}

.em-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.em-detail-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.em-appearance-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.em-appearance-list li {
  align-items: center;
  min-width: 0;
}

.em-appearance-list span,
.em-appearance-list strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.em-appearance-list strong {
  text-align: right;
}

@media (max-width: 900px) {
  .em-appearance-list {
    grid-template-columns: 1fr;
  }
}

.em-profile-meta-scroll {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5f5 #eef2ff;
}

.em-profile-meta-scroll::-webkit-scrollbar {
  width: 6px;
}

.em-profile-meta-scroll::-webkit-scrollbar-track {
  background: #eef2ff;
  border-radius: 999px;
}

.em-profile-meta-scroll::-webkit-scrollbar-thumb {
  background: #cbd5f5;
  border-radius: 999px;
}

.em-profile-meta-scroll .em-detail-list li {
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.em-profile-meta-scroll .em-detail-list li:hover {
  background: #f1f5ff;
  transform: translateX(2px);
  box-shadow: inset 0 0 0 1px #e2e8ff;
}

.em-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.em-table td {
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  padding-left: 5px;
}

.em-badge-available {
  background: #dcfce7;
  color: #166534;
}

.em-badge-busy {
  background: #fee2e2;
  color: #b91c1c;
}

.em-badge-offline {
  background: #e2e8f0;
  color: #475569;
}

.em-gifts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.em-gift {
  background: #f1f5f9;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.em-section-light {
  background: #f8fafc;
  padding-top: 0;
}

.em-section-light .em-section-head h2 {
  color: #0c0d0e;
}

.em-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  justify-content: center;
}

.em-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
}

.em-pagination .page-numbers:hover {
  transform: translateY(-2px);
  background: #ff2d75;
  box-shadow: 0 12px 24px rgba(255, 45, 117, 0.35);
}

.em-pagination .page-numbers.current {
  background: #ff2d75;
  box-shadow: 0 12px 24px rgba(255, 45, 117, 0.35);
}


.em-cursor,
.em-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.em-cursor {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 45, 117, 0.5);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.em-cursor-dot {
  width: 6px;
  height: 6px;
  background: #ff2d75;
  border-radius: 50%;
}

body.em-cursor-active .em-cursor,
body.em-cursor-active .em-cursor-dot {
  opacity: 1;
}

@media (max-width: 900px) {
  .em-cursor,
  .em-cursor-dot {
    display: none;
  }

  .em-hero-meta {
    justify-content: center;
  }

  .em-hero-location {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .em-card {
    height: auto;
  }
}

.em-section-light .em-card-body h3 {
  color: #0f172a;
}

.em-section-light .em-card-body p {
  color: #64748b;
}

.em-section-light .em-card-visiting-strip {
  color: #64748b;
}

.em-recommended-swiper .swiper-slide {
  height: auto;
}

.em-recommended-swiper .swiper-wrapper {
  gap: 0;
}

.em-recommended-swiper .swiper-slide {
  display: flex;
  height: auto;
}

.em-recommended-swiper .em-card {
  height: 100%;
}


.em-form {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.swiper:not(.em-recommended-swiper) .swiper-wrapper,
.swiper:not(.em-recommended-swiper) .swiper-wrapper * {
  color: #000000 !important;
}

.em-section-recommended {
  background: #f6f7fb;
  border-color: #e6e8ee;
  box-shadow: none;
}

.em-section-recommended .em-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.em-section-recommended .em-section-head h2 {
  color: #ffffff;
  font-size: 28px;
  padding-top: 10px;
}

.em-section-recommended .em-recommended-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  transition-timing-function: ease-in-out;
}

.em-section-recommended .em-recommended-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.em-section-recommended .em-recommended-swiper {
  width: 100%;
  overflow: hidden;
  padding: 8px 4px;
  position: relative;
}

.em-section-recommended .em-recommended-swiper.em-recommended-static .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  transform: none !important;
}

.em-section-recommended .em-recommended-swiper.em-recommended-static .swiper-slide {
  width: auto !important;
  height: auto;
  display: block;
}

.em-section-recommended .em-card-media {
  height: 100%;
  flex: 1 1 auto;
}

.em-section-recommended .em-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(1.05);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.em-section-recommended .em-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  background: #0b0b10;
  border: 1px solid rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 5;
  height: auto;
}

.em-section-recommended .em-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.68) 60%, rgba(0, 0, 0, 0.85) 100%);
  backdrop-filter: blur(6px);
  z-index: 4;
}

.em-section-recommended .em-card-body h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.em-section-recommended .em-card-body p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
}

.em-section-recommended .swiper-wrapper,
.em-section-recommended .swiper-wrapper * {
  color: #ffffff !important;
}

.em-section-recommended .em-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.em-section-recommended .em-card:hover .em-card-media img {
  transform: scale(1.05);
  filter: brightness(1.05) saturate(1.1);
}

.em-section-recommended .em-card:hover .em-card-overlay {
  opacity: 1;
}

.em-section-recommended .model-hover-info li {
  color: #ffffff !important;
  font-weight: 600;
}

.em-section-recommended .model-hover-info li span {
  color: #cccccc !important;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .em-section-recommended .em-recommended-swiper {
    padding-bottom: 8px;
  }

  .em-section-recommended .em-recommended-swiper.em-recommended-static .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .em-section-recommended .em-section-head {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
  }

  .em-section-recommended .em-section-head h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 14px;
  }

  .em-section-recommended .em-recommended-swiper .swiper-wrapper {
    transition-timing-function: ease-in-out;
  }

  .em-section-recommended .em-recommended-swiper.em-recommended-static .swiper-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .em-section-recommended .em-card {
    border-radius: 14px;
  }

  .em-section-recommended .em-card-body {
    padding: 14px 16px;
    opacity: 1;
    visibility: visible;
  }

  .em-section-recommended .em-card-body h3 {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
  }

  .em-section-recommended .em-card-body p {
    font-size: 13px;
    line-height: 1.3;
    opacity: 0.82;
  }

  .em-section-recommended .em-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 1;
  }
}

.em-form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.em-form-wide {
  grid-column: span 2;
}

.em-notice {
  background: #ecfeff;
  border: 1px solid #a5f3fc;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.em-shortcode-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 13px;
}

.em-shortcode-note input {
  border: none;
  background: transparent;
  font-family: inherit;
  width: 200px;
  color: #0f172a;
}

.em-credit {
  margin-top: 24px;
  font-size: 13px;
  color: #64748b;
}

.em-credit a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
}

.em-search {
  padding: 40px 0 0;
}

.em-search-form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr auto auto;
  gap: 12px;
  margin-bottom: 24px;
}

.em-home .em-search-form input,
.em-home .em-search-form select {
  background: #0f172a;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.em-home .em-search-form input::placeholder {
  color: #94a3b8;
}

.em-search-results .em-card-body h3 {
  color: #0f172a;
}

.em-search-results .em-card-body p {
  color: #64748b;
}

.em-form-msg.is-success {
  color: #166534;
  font-weight: 600;
}

.em-form-msg.is-error {
  color: #b91c1c;
  font-weight: 600;
}


.em-nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: none;
  position: relative;
}

.em-nav-toggle span,
.em-nav-toggle span::before,
.em-nav-toggle span::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: white;
  transition: transform 0.3s ease;
}

.em-nav-toggle span { top: 18px; }
.em-nav-toggle span::before { top: -6px; }
.em-nav-toggle span::after { top: 6px; }

@media (max-width: 1100px) {
  .em-grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .em-nav { display: none; }
  .em-nav-toggle { display: inline-flex; }
  .em-grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .em-profile-grid { grid-template-columns: 1fr; }
  .em-hero-card { grid-template-columns: 1fr; text-align: center; }
  .em-hero-actions { justify-content: center; }
  .em-form-grid { grid-template-columns: 1fr; }
  .em-search-form { grid-template-columns: 1fr; }
  .em-hero-cover-wrap { height: 260px; }
}

@media (max-width: 640px) {
  .em-grid-5, .em-grid-4, .em-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .em-cta-box { flex-direction: column; align-items: flex-start; }
  .em-header-actions { display: none; }
}

.em-flip-hero {
  color: #000000;
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  padding: 40px 0 20px;
  position: relative;
}

.em-flip-hero-title {
  letter-spacing: 1px;
}

.em-flip-hero-flip {
  height: 50px;
  overflow: hidden;
  margin-top: 8px;
}

.em-flip-hero-flip > div > div {
  color: #fff;
  padding: 4px 12px;
  height: 45px;
  margin-bottom: 45px;
  display: inline-block;
  border-radius: 8px;
}

.em-flip-hero-flip > div {
  animation: emFlipShow 5s linear infinite;
}

.em-flip-hero-flip > div > div:nth-child(1) > div { background: #4ec7f3; }
.em-flip-hero-flip > div > div:nth-child(2) > div { background: #42c58a; }
.em-flip-hero-flip > div > div:nth-child(3) > div { background: #dc143c; }
.em-flip-hero-flip > div > div:nth-child(4) > div { background: #ff2d75; }
.em-flip-hero-flip > div > div:nth-child(5) > div { background: #6b5cff; }

@keyframes emFlipShow {
  0% { margin-top: -270px; }
  5% { margin-top: -180px; }
  33% { margin-top: -180px; }
  38% { margin-top: -90px; }
  66% { margin-top: -90px; }
  71% { margin-top: 0px; }
  99.99% { margin-top: 0px; }
  100% { margin-top: -270px; }
}

@media (max-width: 768px) {
  .em-flip-hero { padding: 28px 0 12px; }
  .em-flip-hero-flip { height: 44px; }
  .em-flip-hero-flip > div > div { height: 38px; margin-bottom: 38px; }
}

/* Minimal monochrome UI refresh */
.em-app[data-theme="dark"],
.em-app[data-theme="dark"] .em-home,
.em-app[data-theme="dark"] .em-listing,
.em-app[data-theme="dark"] .em-profile,
.em-app[data-theme="dark"] .em-main {
  background: var(--bg-base);
}

.em-app[data-theme="dark"] .em-listing {
  padding-bottom: 20px;
}

.em-app[data-theme="dark"] .em-header,
.em-app[data-theme="dark"] .em-card,
.em-app[data-theme="dark"] .em-card-light,
.em-app[data-theme="dark"] .em-hero-card,
.em-app[data-theme="dark"] .em-detail-card,
.em-app[data-theme="dark"] .em-cta-box,
.em-app[data-theme="dark"] .em-section,
.em-app[data-theme="dark"] .em-shortcode-note,
.em-app[data-theme="dark"] .em-form-card,
.em-app[data-theme="dark"] .em-form-wrap,
.em-app[data-theme="dark"] .em-form,
.em-app[data-theme="dark"] .em-section-recommended,
.em-app[data-theme="dark"] .em-notice {
  background: #ff6321;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(181, 62, 11, 0.24);
}

.em-app[data-theme="dark"] .em-header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.em-app[data-theme="dark"] .em-logo,
.em-app[data-theme="dark"] .em-section-head h2,
.em-app[data-theme="dark"] .em-card-body h3,
.em-app[data-theme="dark"] .em-hero-name,
.em-app[data-theme="dark"] .em-section-light .em-section-head h2,
.em-app[data-theme="dark"] .em-search-results .em-card-body h3,
.em-app[data-theme="dark"] .em-section-recommended .em-section-head h2,
.em-app[data-theme="dark"] .em-section-recommended .em-card-body h3,
.em-app[data-theme="dark"] .em-shortcode-note input,
.em-app[data-theme="dark"] .em-credit a {
  color: #ffffff;
}

.em-app[data-theme="dark"] p,
.em-app[data-theme="dark"] li,
.em-app[data-theme="dark"] .em-muted,
.em-app[data-theme="dark"] .em-nav a,
.em-app[data-theme="dark"] .em-link,
.em-app[data-theme="dark"] .em-card-body p,
.em-app[data-theme="dark"] .em-card-visiting-strip,
.em-app[data-theme="dark"] .em-section-light .em-card-body p,
.em-app[data-theme="dark"] .em-section-light .em-card-visiting-strip,
.em-app[data-theme="dark"] .em-search-results .em-card-body p,
.em-app[data-theme="dark"] .em-section-recommended .em-card-body p,
.em-app[data-theme="dark"] .em-credit,
.em-app[data-theme="dark"] .em-home .em-search-form input::placeholder {
  color: #ffffff;
}

.em-app[data-theme="dark"] .em-heart,
.em-app[data-theme="dark"] .em-nav a:hover,
.em-app[data-theme="dark"] .em-link:hover {
  color: #ffffff;
}

.em-app[data-theme="dark"] .em-btn,
.em-app[data-theme="dark"] .em-btn-light,
.em-app[data-theme="dark"] .em-btn-outline,
.em-app[data-theme="dark"] .em-btn-fav,
.em-app[data-theme="dark"] .em-btn-telegram,
.em-app[data-theme="dark"] .em-btn-whatsapp,
.em-app[data-theme="dark"] .em-pagination .page-numbers {
  background: #ff6321;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 18px rgba(181, 62, 11, 0.2);
}

.em-app[data-theme="dark"] .em-btn:hover,
.em-app[data-theme="dark"] .em-btn-light:hover,
.em-app[data-theme="dark"] .em-btn-outline:hover,
.em-app[data-theme="dark"] .em-btn-fav:hover,
.em-app[data-theme="dark"] .em-btn-telegram:hover,
.em-app[data-theme="dark"] .em-btn-whatsapp:hover,
.em-app[data-theme="dark"] .em-pagination .page-numbers:hover,
.em-app[data-theme="dark"] .em-pagination .page-numbers.current {
  background: #e45818;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(181, 62, 11, 0.24);
}

.em-app[data-theme="dark"] .em-card,
.em-app[data-theme="dark"] .em-section-recommended .em-card {
  border-radius: 20px;
  overflow: hidden;
  transform: none;
}

.em-app[data-theme="dark"] .em-card:hover,
.em-app[data-theme="dark"] .em-section-recommended .em-card:hover,
.em-app[data-theme="dark"] .em-about-thumb:hover,
.em-app[data-theme="dark"] .em-avatar:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(181, 62, 11, 0.28);
}

.em-app[data-theme="dark"] .em-card-media img,
.em-app[data-theme="dark"] .em-section-recommended .em-card-media img {
  filter: none;
}

.em-app[data-theme="dark"] .em-card-overlay,
.em-app[data-theme="dark"] .em-section-recommended .em-card-overlay,
.em-app[data-theme="dark"] .em-hero-cover-overlay {
  background: linear-gradient(180deg, rgba(255, 99, 33, 0.08) 0%, rgba(228, 88, 24, 0.7) 100%);
}

.em-app[data-theme="dark"] .em-card-body,
.em-app[data-theme="dark"] .em-section-recommended .em-card-body {
  background: #000000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.em-app[data-theme="dark"] .em-ribbon,
.em-app[data-theme="dark"] .em-ribbon-available,
.em-app[data-theme="dark"] .em-ribbon-visiting,
.em-app[data-theme="dark"] .em-card-link .em-ribbon .body,
.em-app[data-theme="dark"] .em-badge,
.em-app[data-theme="dark"] .em-badge-featured,
.em-app[data-theme="dark"] .em-badge-gold,
.em-app[data-theme="dark"] .em-badge-available,
.em-app[data-theme="dark"] .em-badge-busy,
.em-app[data-theme="dark"] .em-badge-offline,
.em-app[data-theme="dark"] .em-tag,
.em-app[data-theme="dark"] .em-gift,
.em-app[data-theme="dark"] .em-hero-visiting {
  background: #ff6321 !important;
  color: #f5f5f5 !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.em-app[data-theme="dark"] .em-card-link .em-ribbon .block,
.em-app[data-theme="dark"] .em-status-dot,
.em-app[data-theme="dark"] .em-cursor,
.em-app[data-theme="dark"] .em-cursor-dot {
  display: none;
}

.em-app[data-theme="dark"] .model-hover-info {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.em-app[data-theme="dark"] .model-hover-info span {
  color: #ffffff;
}

.em-app[data-theme="dark"] .model-hover-info li,
.em-app[data-theme="dark"] .em-profile-meta-scroll .em-detail-list li {
  background: transparent;
  border: none;
  box-shadow: none;
}

.em-app[data-theme="dark"] .model-hover-info li:hover,
.em-app[data-theme="dark"] .em-profile-meta-scroll .em-detail-list li:hover {
  background: transparent;
  transform: none;
}

.em-app[data-theme="dark"] .em-avatar {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.em-app[data-theme="dark"] .em-hero-avatar {
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  background: #e45818;
}

.em-app[data-theme="dark"] .em-profile,
.em-app[data-theme="dark"] .em-section-light {
  background: var(--bg-base);
  color: #ffffff;
}

.em-app[data-theme="dark"] .em-form input,
.em-app[data-theme="dark"] .em-form textarea,
.em-app[data-theme="dark"] .em-form select,
.em-app[data-theme="dark"] .em-home .em-search-form input,
.em-app[data-theme="dark"] .em-home .em-search-form select {
  background: #e45818;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.em-app[data-theme="dark"] .em-form-msg.is-success,
.em-app[data-theme="dark"] .em-form-msg.is-error {
  color: #f5f5f5;
}

.em-app[data-theme="dark"] .em-profile-meta-scroll {
  scrollbar-color: #ffffff #e45818;
}

.em-app[data-theme="dark"] .em-profile-meta-scroll::-webkit-scrollbar-track {
  background: #e45818;
}

.em-app[data-theme="dark"] .em-profile-meta-scroll::-webkit-scrollbar-thumb {
  background: #ffffff;
}

.em-app[data-theme="dark"] .em-table td,
.em-app[data-theme="dark"] .em-detail-list li,
.em-app[data-theme="dark"] .em-shortcode-note,
.em-app[data-theme="dark"] .em-nav-toggle,
.em-app[data-theme="dark"] .em-home .em-search-form input,
.em-app[data-theme="dark"] .em-home .em-search-form select {
  border-color: rgba(255, 255, 255, 0.08);
}

.em-app[data-theme="dark"] .em-nav-toggle {
  background: #e45818;
}

.em-app[data-theme="dark"] .em-notice {
  color: #f5f5f5;
}

.em-app[data-theme="dark"] .em-flip-hero {
  color: #000000;
}

.em-app[data-theme="dark"] .em-flip-hero-flip > div > div,
.em-app[data-theme="dark"] .em-flip-hero-flip > div > div:nth-child(1) > div,
.em-app[data-theme="dark"] .em-flip-hero-flip > div > div:nth-child(2) > div,
.em-app[data-theme="dark"] .em-flip-hero-flip > div > div:nth-child(3) > div,
.em-app[data-theme="dark"] .em-flip-hero-flip > div > div:nth-child(4) > div,
.em-app[data-theme="dark"] .em-flip-hero-flip > div > div:nth-child(5) > div {
  background: #e45818;
  color: #ffffff;
}

/* Soft neumorphism redesign */
.em-app {
  --em-neu-bg: #eeeeee;
  --em-neu-surface: #eeeeee;
  --em-neu-text: #404040;
  --em-neu-dark-shadow: rgba(0, 0, 0, 0.15);
  --em-neu-light-shadow: rgba(255, 255, 255, 0.65);
  --em-neu-shadow: 7px 7px 9px var(--em-neu-dark-shadow), -7px -7px 9px var(--em-neu-light-shadow);
  --em-neu-inset: inset 4px 4px 7px rgba(0, 0, 0, 0.08), inset -4px -4px 7px rgba(255, 255, 255, 0.72);
  background: var(--em-neu-bg) !important;
  color: var(--em-neu-text);
  font-family: "Roboto", "Poppins", sans-serif;
}

.em-app[data-theme="dark"],
.em-app[data-theme="light"],
.em-app .em-home,
.em-app .em-listing,
.em-app .em-profile,
.em-app .em-main,
.em-app .em-section,
.em-app .em-section-light,
.em-app .em-section-recommended {
  background: var(--em-neu-bg) !important;
}

.em-app .em-container {
  width: min(1180px, 92%);
}

.em-app,
.em-app .em-profile-main,
.em-app .em-profile-gallery,
.em-app .em-search,
.em-app .em-cta {
  color: var(--em-neu-text);
}

.em-app .em-header,
.em-app .em-card,
.em-app .em-card-light,
.em-app .em-hero-card,
.em-app .em-detail-card,
.em-app .em-cta-box,
.em-app .em-form,
.em-app .em-form-card,
.em-app .em-form-wrap,
.em-app .em-shortcode-note,
.em-app .em-notice,
.em-app .model-hover-info,
.em-app .em-profile-meta-scroll .em-detail-list li,
.em-app .em-tag,
.em-app .em-gift,
.em-app .em-hero-visiting,
.em-app .em-ribbon,
.em-app .em-ribbon-available,
.em-app .em-ribbon-visiting,
.em-app .em-card-link .em-ribbon .body,
.em-app .em-badge,
.em-app .em-badge-featured,
.em-app .em-badge-gold,
.em-app .em-badge-available,
.em-app .em-badge-busy,
.em-app .em-badge-offline,
.em-app .em-pagination .page-numbers,
.em-app .em-btn,
.em-app .em-btn-light,
.em-app .em-btn-outline,
.em-app .em-btn-fav,
.em-app .em-btn-telegram,
.em-app .em-btn-whatsapp,
.em-app .em-home .em-search-form input,
.em-app .em-home .em-search-form select,
.em-app .em-form input,
.em-app .em-form textarea,
.em-app .em-form select,
.em-app .em-nav-toggle {
  background: var(--em-neu-surface) !important;
  color: var(--em-neu-text) !important;
  border: none !important;
  box-shadow: var(--em-neu-shadow) !important;
}

.em-app .em-header,
.em-app .em-card,
.em-app .em-card-light,
.em-app .em-hero-card,
.em-app .em-detail-card,
.em-app .em-cta-box,
.em-app .em-form,
.em-app .em-form-card,
.em-app .em-form-wrap,
.em-app .em-shortcode-note,
.em-app .em-notice {
  border-radius: 24px;
}

.em-app .em-card,
.em-app .em-card-light {
  overflow: hidden;
}

.em-app .em-btn,
.em-app .em-btn-light,
.em-app .em-btn-outline,
.em-app .em-btn-fav,
.em-app .em-btn-telegram,
.em-app .em-btn-whatsapp,
.em-app .em-pagination .page-numbers,
.em-app .em-ribbon,
.em-app .em-ribbon-available,
.em-app .em-ribbon-visiting,
.em-app .em-card-link .em-ribbon .body,
.em-app .em-badge,
.em-app .em-badge-featured,
.em-app .em-badge-gold,
.em-app .em-badge-available,
.em-app .em-badge-busy,
.em-app .em-badge-offline,
.em-app .em-tag,
.em-app .em-gift,
.em-app .em-hero-visiting {
  border-radius: 999px !important;
}

.em-app .em-btn:hover,
.em-app .em-btn-light:hover,
.em-app .em-btn-outline:hover,
.em-app .em-btn-fav:hover,
.em-app .em-btn-telegram:hover,
.em-app .em-btn-whatsapp:hover,
.em-app .em-pagination .page-numbers:hover,
.em-app .em-card:hover,
.em-app .em-card-light:hover,
.em-app .em-about-thumb:hover,
.em-app .em-avatar:hover {
  transform: translateY(-2px);
  box-shadow: 9px 9px 14px rgba(0, 0, 0, 0.16), -9px -9px 14px rgba(255, 255, 255, 0.72) !important;
}

.em-app .em-card-body,
.em-app .em-section-recommended .em-card-body,
.em-app .em-card-overlay,
.em-app .em-section-recommended .em-card-overlay,
.em-app .em-hero-cover-overlay,
.em-app .em-card-link .em-ribbon .block,
.em-app .em-status-dot,
.em-app .em-cursor,
.em-app .em-cursor-dot {
  background: transparent !important;
  box-shadow: none !important;
  display: none;
}

.em-app .em-logo,
.em-app .em-section-head h2,
.em-app .em-hero-name,
.em-app h1,
.em-app h2,
.em-app h3,
.em-app h4,
.em-app h5,
.em-app h6,
.em-app .em-card-body h3,
.em-app .em-section-light .em-section-head h2,
.em-app .em-section-recommended .em-section-head h2,
.em-app .em-search-results .em-card-body h3,
.em-app .em-shortcode-note input,
.em-app .em-credit a,
.em-app .em-detail-list strong,
.em-app .model-hover-info,
.em-app .model-hover-info li,
.em-app .model-hover-info span,
.em-app .em-card-visiting-strip,
.em-app .em-card-body p,
.em-app .em-nav a,
.em-app .em-link,
.em-app p,
.em-app li,
.em-app .em-muted,
.em-app .em-credit,
.em-app .em-home .em-search-form input::placeholder {
  color: #404040 !important;
}

.em-app .em-heart,
.em-app .em-nav a:hover,
.em-app .em-link:hover {
  color: #404040 !important;
}

.em-app .model-hover-info,
.em-app .em-profile-meta-scroll .em-detail-list li,
.em-app .em-detail-list li,
.em-app .em-table td,
.em-app .em-checklist span {
  background: var(--em-neu-surface) !important;
  border-radius: 18px;
  box-shadow: var(--em-neu-shadow) !important;
  padding: 10px 14px;
}

.em-app .em-profile-meta-scroll .em-detail-list li,
.em-app .em-detail-list li {
  margin-bottom: 10px;
}

.em-app .em-profile-meta-scroll .em-detail-list li,
.em-app .model-hover-info {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.em-app .model-hover-info li {
  background: transparent !important;
  box-shadow: none !important;
  padding: 6px 0;
}

.em-app .model-hover-info li:hover,
.em-app .em-profile-meta-scroll .em-detail-list li:hover {
  transform: none;
}

.em-app .em-home .em-search-form input,
.em-app .em-home .em-search-form select,
.em-app .em-form input,
.em-app .em-form textarea,
.em-app .em-form select {
  box-shadow: var(--em-neu-inset) !important;
  border-radius: 16px !important;
}

.em-app .em-avatar,
.em-app .em-hero-avatar {
  background: var(--em-neu-surface) !important;
  border: none !important;
  box-shadow: var(--em-neu-shadow) !important;
}

.em-app .em-gallery-swiper img,
.em-app .em-about-thumb,
.em-app .em-avatar {
  border-radius: 20px;
}

.em-app .em-card-media {
  padding: 0;
  height: 100%;
  flex: 1 1 auto;
  position: relative;
}

.em-app .em-card-media img {
  border-radius: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none !important;
  transform: none !important;
}

.em-app .em-card-overlay,
.em-app .em-section-recommended .em-card-overlay {
  display: block !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.78) 100%) !important;
  opacity: 1 !important;
  box-shadow: none !important;
}

.em-app .em-card-body {
  display: block;
  padding: 18px 18px 22px;
}

.em-app .em-card-link {
  color: transparent;
}

.em-app .em-hero-card,
.em-app .em-cta-box {
  align-items: center;
}

.em-app .em-checklist,
.em-app .em-tags,
.em-app .em-gifts,
.em-app .em-hero-actions {
  gap: 14px;
}

.em-app .em-grid,
.em-app .em-profile-grid,
.em-app .em-search-form,
.em-app .em-settings-grid {
  gap: 24px;
}

.em-app .em-profile-meta-scroll,
.em-app .em-profile-meta-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.em-app .em-profile-meta-scroll {
  scrollbar-color: #c8c8c8 transparent;
}

.em-app .em-profile-meta-scroll::-webkit-scrollbar-thumb {
  background: #c8c8c8;
  border-radius: 999px;
}

.em-app .em-flip-hero,
.em-app[data-theme="dark"] .em-flip-hero {
  color: #404040 !important;
  font-family: "Roboto", sans-serif;
}

.em-app .em-flip-hero-flip > div > div,
.em-app .em-flip-hero-flip > div > div:nth-child(1) > div,
.em-app .em-flip-hero-flip > div > div:nth-child(2) > div,
.em-app .em-flip-hero-flip > div > div:nth-child(3) > div,
.em-app .em-flip-hero-flip > div > div:nth-child(4) > div,
.em-app .em-flip-hero-flip > div > div:nth-child(5) > div {
  background: var(--em-neu-surface) !important;
  color: #404040 !important;
  box-shadow: var(--em-neu-shadow) !important;
}

.em-app h3.em-card-info-name,
.em-app .em-card-info-panel .em-card-info-name,
.em-app .em-card-body h3.em-card-info-name,
.em-app .em-card-link h3.em-card-info-name {
  color: #ffffff !important;
}
