:root {
  --em-dark-1: #0f172a;
  --em-dark-2: #111827;
  --em-card: #111827;
  --em-card-soft: #1f2937;
  --em-light: #f8fafc;
  --em-text: #e5e7eb;
  --em-muted: #94a3b8;
  --em-accent: #ff2d75;
  --em-gold: #facc15;
  --em-danger: #ef4444;
  --em-success: #22c55e;
  --em-radius: 12px;
  --em-shadow: 0 20px 50px rgba(0,0,0,0.35);
  --em-card-height: 380px;
}

.em-app {
  color: var(--text-primary);
  padding: 16px 0;
  background: radial-gradient(circle at 20% 15%, var(--bg-accent-1), transparent 40%),
    radial-gradient(circle at 80% 0%, var(--bg-accent-2), transparent 35%),
    var(--bg-base);
  background-attachment: fixed;
}

.em-app[data-theme="dark"] {
  --bg-base: #0b0b12;
  --bg-accent-1: #6366f1;
  --bg-accent-2: #22d3ee;
  --glass-bg: rgba(18, 18, 24, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
}

.em-app[data-theme="light"] {
  --bg-base: #f5f7fb;
  --bg-accent-1: #93c5fd;
  --bg-accent-2: #a5f3fc;
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  --text-primary: #0b0b12;
  --text-secondary: rgba(0, 0, 0, 0.75);
}

.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);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  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: linear-gradient(135deg, var(--em-dark-1), var(--em-dark-2));
}

.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: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-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-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  color: #000000;
}

.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-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-rating {
  display: flex;
  align-items: center;
  gap: 14px;
}

.em-rating-score {
  font-size: 36px;
  font-weight: 700;
}

.em-rating-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 16px;
}

.em-rating-stars span {
  color: #e2e8f0;
}

.em-rating-stars span.filled {
  color: #facc15;
}

.em-rating-breakdown {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.em-rating-row {
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.em-bar {
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  height: 6px;
}

.em-bar span {
  display: block;
  height: 100%;
  background: var(--em-accent);
}

.em-review-item {
  background: #f8fafc;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #e2e8f0;
  width: 100%;
}

.em-review-item p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #0c0d0e;
}

.em-review-list {
  overflow: hidden;
}

.em-review-swiper {
  width: 100%;
  height: 260px;
}

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

.em-review-stars {
  color: #facc15;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.em-review-stars span {
  color: #0c0d0e;
  font-weight: 700;
  margin-left: 8px;
}

.em-review-name {
  font-weight: 700;
  color: #0c0d0e;
  margin-bottom: 6px;
}

.em-review-text {
  color: #0c0d0e;
}

.em-app[data-theme="dark"] .em-review-stars span,
.em-app[data-theme="dark"] .em-review-name,
.em-app[data-theme="dark"] .em-review-text,
.em-app[data-theme="dark"] .em-review-item p {
  color: #ffffff;
}

.em-review-form {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.em-review-form select,
.em-review-form textarea,
.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-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;
  }
}

@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-recommended-swiper .swiper-slide {
  height: auto;
}

.em-recommended-swiper .swiper-wrapper {
  gap: 18px;
}

.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 h2 {
  color: #0b0b12;
  font-size: 28px;
}

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

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

.em-section-recommended .em-recommended-swiper {
  width: 100%;
  overflow: visible;
}

.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.95) saturate(1.05);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.em-section-recommended .em-card {
  border-radius: 28px;
  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(0.9) 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 .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .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 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .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: #999;
  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; }
}
