:root {
  --bg-dark: #07050e;
  --bg-card: rgba(21, 15, 36, 0.92);
  --bg-card-hover: rgba(30, 21, 51, 0.98);
  --accent-pink: #ff2a85;
  --accent-purple: #9b51e0;
  --accent-gradient: linear-gradient(135deg, #ff2a85 0%, #9b51e0 100%);
  --accent-glow: 0 0 25px rgba(255, 42, 133, 0.4);
  --text-main: #f3f2f8;
  --text-muted: #a39eb8;
  --gold-star: #ffc107;
  --border-color: rgba(255, 42, 133, 0.25);
  --border-glow: rgba(155, 81, 224, 0.4);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 42, 133, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(155, 81, 224, 0.20) 0%, transparent 45%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.5;
  min-height: 100vh;
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 5, 14, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 16px;
  width: 100%;
}

.header-container {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  white-space: nowrap;
}

.brand-logo span.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-badge {
  background: linear-gradient(135deg, #e63946, #d90429);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.6);
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-selector {
  position: relative;
}

.lang-select-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lang-select-btn:hover {
  border-color: var(--accent-pink);
  box-shadow: 0 0 12px rgba(255, 42, 133, 0.3);
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: 115%;
  background: #120c24;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  min-width: 150px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  z-index: 1001;
}

.lang-dropdown.show {
  display: flex;
}

.lang-opt {
  padding: 10px 14px;
  color: var(--text-main);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  width: 100%;
}

.lang-opt:hover {
  background: rgba(255, 42, 133, 0.25);
}

.hero-section {
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px 15px 15px;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  align-items: center;
  gap: 15px;
}

.hero-content-center {
  text-align: center;
}

.hero-side-card {
  position: relative;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 20px rgba(255, 42, 133, 0.2);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-side-card:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--accent-pink);
  box-shadow: 0 12px 28px rgba(255, 42, 133, 0.4);
}

.hero-side-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 5, 14, 0.85);
  border: 1px solid var(--accent-pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  white-space: nowrap;
  backdrop-filter: blur(5px);
}

.hero-meta-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.meta-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 10px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  text-align: center;
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-pink);
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.main-content {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 15px 40px;
  width: 100%;
}

.offers-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 70px 90px 1fr 200px;
  align-items: center;
  padding: 16px;
  gap: 16px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.offer-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 12px 35px rgba(155, 81, 224, 0.3);
  transform: translateY(-2px);
}

.offer-card.rank-1 {
  border: 2px solid var(--accent-pink);
  box-shadow: 0 0 25px rgba(255, 42, 133, 0.35);
}

.rank-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rank-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rank-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(255, 42, 133, 0.15);
  color: var(--accent-pink);
  padding: 3px 6px;
  border-radius: 6px;
  margin-top: 4px;
  white-space: nowrap;
}

.brand-box {
  width: 85px;
  height: 85px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.brand-box:hover {
  border-color: var(--accent-pink);
  transform: scale(1.04);
}

.brand-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  filter: invert(1);
}

.info-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offer-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.offer-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}

.offer-badge-tag {
  background: rgba(155, 81, 224, 0.2);
  color: #e2bbfd;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  border: 1px solid rgba(155, 81, 224, 0.4);
}

.rating-mobile-pill {
  display: none;
}

.offer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.feature-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.tag-pill {
  background: rgba(255, 255, 255, 0.06);
  color: #d1ccdf;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px;
  border-radius: 14px;
  height: 100%;
}

.rating-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stars {
  color: var(--gold-star);
  font-size: 0.85rem;
  margin-top: 2px;
}

.btn-cta {
  display: block;
  width: 100%;
  background: var(--accent-gradient);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  text-align: center;
  padding: 11px 16px;
  border-radius: 25px;
  box-shadow: var(--accent-glow);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2s infinite ease-in-out;
}

@keyframes ctaPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(255, 42, 133, 0.45), 0 4px 14px rgba(155, 81, 224, 0.35);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 0 28px rgba(255, 42, 133, 0.85), 0 6px 20px rgba(155, 81, 224, 0.7);
  }
}

.btn-cta:hover {
  transform: scale(1.05) translateY(-1px);
  box-shadow: 0 0 35px rgba(255, 42, 133, 0.9), 0 8px 25px rgba(155, 81, 224, 0.8);
}

.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.character-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.character-card:hover {
  border-color: var(--accent-pink);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 42, 133, 0.25);
}

.char-media {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.char-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.online-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px 7px;
  border-radius: 12px;
  font-size: 0.65rem;
  color: #2ecc71;
}

.char-body {
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
  justify-content: space-between;
}

.char-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.char-trait {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.char-btn {
  background: var(--accent-gradient);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 10px;
  border-radius: 20px;
  display: block;
  margin-top: 4px;
}

.reviews-grid,
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.review-card,
.method-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-card__author {
  font-weight: 700;
  color: #fff;
}

.review-card__platform {
  font-size: 0.75rem;
  color: var(--accent-pink);
  background: rgba(255, 42, 133, 0.15);
  padding: 2px 8px;
  border-radius: 6px;
}

.review-card__quote {
  font-size: 0.85rem;
  color: #d1ccdf;
  font-style: italic;
  line-height: 1.5;
}

.review-card__meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.method-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
}

.method-card__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto 50px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  padding: 14px 18px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.0rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item__answer {
  padding: 0 18px 14px;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-item__answer {
  display: block;
}

@media (max-width: 899px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-side-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-header {
    padding: 6px 12px;
  }

  .brand-logo {
    font-size: 1.0rem;
    gap: 4px;
  }

  .logo-badge {
    font-size: 0.55rem;
    padding: 1px 4px;
  }

  .lang-select-btn {
    padding: 4px 8px;
    font-size: 0.75rem;
  }

  .hero-section {
    padding: 10px 8px 6px;
  }

  .section-title {
    display: none;
  }

  .hero-subtitle {
    display: none;
  }

  .hero-title {
    font-size: 1.25rem;
    margin-bottom: 2px;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .hero-meta-strip {
    font-size: 0.65rem;
    gap: 4px;
    margin-bottom: 6px;
  }

  .meta-pill {
    padding: 2px 8px;
  }

  .section-title {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }

  .section-label {
    font-size: 0.65rem;
  }

  .main-content {
    padding: 0 10px 30px;
  }

  .offers-container {
    gap: 8px;
    margin-bottom: 25px;
  }

  .offer-card {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    padding: 8px 10px;
    gap: 6px;
    border-radius: 12px;
  }

  .rank-col {
    display: none;
  }

  .brand-box {
    width: 48px;
    height: 48px;
    padding: 4px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .info-col {
    gap: 2px;
    width: 100%;
    overflow: hidden;
  }

  .offer-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 4px;
  }

  .offer-title {
    font-size: 0.95rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  .rating-mobile-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-star);
    background: rgba(0, 0, 0, 0.4);
    padding: 2px 6px;
    border-radius: 8px;
    white-space: nowrap;
  }

  .offer-tagline {
    font-size: 0.7rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .feature-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    gap: 4px !important;
    margin-top: 2px !important;
    animation: none !important;
  }

  .feature-pills .tag-pill {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 0.62rem !important;
    padding: 2px 5px !important;
  }

  .cta-col {
    background: none;
    padding: 0;
    width: 100%;
    height: auto;
  }

  .rating-box {
    display: none;
  }

  .btn-cta {
    padding: 8px 12px;
    font-size: 0.82rem;
    border-radius: 14px;
  }

  .characters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .char-media {
    height: 140px;
  }

  .reviews-grid,
  .methodology-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #120c24;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 25px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
}

.site-footer {
  background: #04030a;
  border-top: 1px solid var(--border-color);
  padding: 35px 15px 25px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-pink);
}

.disclosures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.disclosure-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px;
}

.disclosure-card.ai-first {
  border: 1px solid var(--accent-pink);
  background: rgba(255, 42, 133, 0.06);
}

.disclosure-card .disclosure-title {
  color: #fff;
  font-size: 0.88rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.disclosure-card p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #b5b0c8;
}

.badge-18-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #e63946;
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  font-size: 0.75rem;
  margin-right: 6px;
}

.company-info-box {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.6;
}

.company-info-box strong {
  color: #fff;
}