/**
 * Modern Bot Page Design - 2025
 *
 * Extends channel-page-modern.css design tokens (:root variables).
 * Load channel-page-modern.css BEFORE this file.
 *
 * Architecture:
 * - BEM naming: .bot-{block}__{element}--{modifier}
 * - Mobile-first responsive
 * - CSS Grid + Flexbox
 * - Reuses design tokens from channel-page-modern.css
 */


/* ============================================
   BOT WRAPPER
   ============================================ */
.bot-modern {
  background: var(--color-bg-secondary);
  min-height: 100vh;
}

.bot-modern .woocommerce-wrapper {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--space-lg);
  margin-top: 0;
}

/* ============================================
   BREADCRUMBS OVERRIDE
   ============================================ */
.bot-modern .breadcrumbs {
  background: transparent;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

.bot-modern .breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  height: auto;
  padding: 0;
  margin: 0;
}

.bot-modern .breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.bot-modern .breadcrumbs__item::after {
  content: '\203A';
  color: var(--color-text-muted);
  position: static;
  opacity: 1;
  font-size: var(--text-lg);
}

.bot-modern .breadcrumbs__item:last-child::after {
  display: none;
}

.bot-modern .breadcrumbs__item-link {
  padding: var(--space-xs) 0;
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.bot-modern .breadcrumbs__item-link:hover {
  color: var(--color-accent);
}

/* ============================================
   HERO SECTION — simple 3-column like channels
   ============================================ */
.bot-hero {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.bot-hero__inner {
  padding: var(--space-2xl);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-xl);
  align-items: start;
}

/* Avatar */
.bot-hero__avatar {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.bot-hero__avatar-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.bot-hero__avatar:hover .bot-hero__avatar-img {
  transform: scale(1.05);
}

/* Info */
.bot-hero__info {
  min-width: 0;
}

.bot-hero__title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--font-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm);
  line-height: var(--line-height-tight);
  font-family: var(--font-display);
  text-transform: none;
  text-align: left;
}

.bot-hero__username {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-lg);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: var(--font-medium);
  margin-bottom: var(--space-md);
  transition: color var(--transition-fast);
}

.bot-hero__username:hover {
  color: var(--color-accent-hover);
  text-decoration: none;
}

.bot-hero__username::before {
  content: '@';
  opacity: 0.6;
}

/* Stats Grid */
.bot-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.bot-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.bot-stat__label {
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bot-stat__value {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
}

/* Social Proof */
.bot-social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.bot-social-proof__icon {
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.bot-social-proof__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.bot-social-proof__number {
  font-weight: var(--font-bold);
  color: var(--color-accent-hover);
}

/* Actions */
.bot-hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: stretch;
}

/* ============================================
   MODERN BUTTON OVERRIDES FOR BOT
   ============================================ */
.bot-modern .btn-modern--gradient {
  background: var(--color-accent-gradient);
}

.bot-modern .btn-modern--gradient:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

/* ============================================
   BOT INFO CARD
   ============================================ */
.bot-info-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  display: flex;
  gap: var(--space-xl);
  align-items: start;
}

.bot-info-card__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md) var(--space-xl);
}

.bot-info-card__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bot-info-card__label {
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bot-info-card__value {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
}

.bot-info-card__qr {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
}

.bot-info-card__qr-code {
  background: white;
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  line-height: 0;
  width: 108px;
  height: 108px;
  min-height: 108px;
}

.bot-info-card__qr-code img {
  display: block;
}

.bot-info-card__qr-title {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
  text-align: center;
  font-weight: var(--font-medium);
}

/* ============================================
   HOW TO START (3 Steps)
   ============================================ */
.bot-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.bot-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.bot-step:hover {
  border-color: var(--color-accent-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.bot-step__number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-accent-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  flex-shrink: 0;
}

.bot-step__title {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
  margin: 0;
}

.bot-step__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.bot-section {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-lg);
}

.bot-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-border-light);
}

.bot-section__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--color-text-primary);
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Description */
.bot-description {
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  max-width: var(--content-max-width);
}

.bot-description p {
  margin: 0 0 var(--space-md);
}

.bot-description p:last-child {
  margin-bottom: 0;
}

/* ============================================
   SCREENSHOTS GALLERY
   ============================================ */
.bot-screenshots {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: var(--space-md);
  -webkit-overflow-scrolling: touch;
}

.bot-screenshots::-webkit-scrollbar {
  height: 6px;
}

.bot-screenshots::-webkit-scrollbar-track {
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-full);
}

.bot-screenshots::-webkit-scrollbar-thumb {
  background: var(--color-border-medium);
  border-radius: var(--radius-full);
}

.bot-screenshots::-webkit-scrollbar-thumb:hover {
  background: var(--color-border-dark);
}

.bot-screenshot {
  flex: 0 0 auto;
  width: 280px;
  border-radius: var(--radius-md);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.bot-screenshot:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* ============================================
   BOT COLLECTIONS (Landing Pages)
   ============================================ */
.bot-collections {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.bot-collection-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  color: var(--color-text-primary);
}

.bot-collection-link:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
  text-decoration: none;
  color: var(--color-text-primary);
}

.bot-collection-icon {
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.bot-collection-title {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
}

/* ============================================
   RELATED BOTS GRID
   ============================================ */
.bot-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.bot-card-mini {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.bot-card-mini:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-accent-light);
  text-decoration: none;
}

.bot-card-mini__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.bot-card-mini__avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.bot-card-mini__title {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
}

.bot-card-mini__description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bot-card-mini__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-accent-gradient);
  color: white;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-decoration: none;
  margin-top: auto;
  transition: all var(--transition-base);
}

.bot-card-mini:hover .bot-card-mini__cta {
  box-shadow: var(--shadow-sm);
}

/* ============================================
   SHARE BUTTONS
   ============================================ */
.bot-share {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.bot-share__label {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-text-secondary);
}

.bot-share__buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.bot-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  border: 2px solid var(--color-border-light);
  background: var(--color-surface);
  cursor: pointer;
  color: var(--color-text-secondary);
  text-decoration: none;
}

.bot-share__btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.bot-share__btn--telegram {
  border-color: #0088cc;
  color: #0088cc;
}

.bot-share__btn--telegram:hover {
  background: #0088cc;
  color: white;
}

.bot-share__btn--twitter {
  border-color: #000;
  color: #000;
}

.bot-share__btn--twitter:hover {
  background: #000;
  color: white;
}

.bot-share__btn--whatsapp {
  border-color: #25d366;
  color: #25d366;
}

.bot-share__btn--whatsapp:hover {
  background: #25d366;
  color: white;
}

.bot-share__btn--copy {
  border-color: var(--color-border-medium);
}

.bot-share__btn--copy:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: white;
}

/* ============================================
   RATING LINKS
   ============================================ */
.bot-rating-links {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
}

.bot-rating-links__title {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.bot-rating-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.bot-rating-link {
  color: var(--color-accent);
  text-decoration: none;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  transition: all var(--transition-fast);
}

.bot-rating-link:hover {
  background: var(--color-accent);
  color: white;
  text-decoration: none;
}

/* ============================================
   OLD LAYOUT CONTEXT (.summary)
   Ensures new components look good inside the legacy bot page
   ============================================ */
.summary .bot-section {
  margin-top: 30px;
  margin-left: -15px;
  margin-right: -15px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
}

.summary .bot-section__header {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.summary .bot-section__title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.summary .bot-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.summary .bot-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 16px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.summary .bot-step__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.summary .bot-step__title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.summary .bot-step__text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.summary .bot-rating-links {
  margin-top: 24px;
  padding: 20px;
  background: #f1f5f9;
  border-radius: 10px;
}

.summary .bot-rating-links__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0f172a;
}

.summary .bot-rating-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.summary .bot-rating-link {
  color: #3b82f6;
  text-decoration: none;
  padding: 4px 12px;
  background: #dbeafe;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

.summary .bot-rating-link:hover {
  background: #3b82f6;
  color: white;
  text-decoration: none;
}

.summary .bot-share {
  margin: 20px 0;
}

@media (max-width: 767px) {
  .summary .bot-steps {
    grid-template-columns: 1fr;
  }

  .summary .bot-step {
    flex-direction: row;
    text-align: left;
    gap: 12px;
    padding: 14px;
  }

  .summary .bot-step__number {
    width: 36px;
    height: 36px;
    font-size: 16px;
    flex-shrink: 0;
  }

  .summary .bot-section {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ============================================
   VOTE ERROR
   ============================================ */
.bot-error {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid var(--color-error);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  color: var(--color-error);
  font-size: var(--text-sm);
  margin-top: var(--space-md);
}

/* ============================================
   LEGACY OVERRIDES
   ============================================ */
.bot-modern .woocommerce div.product .product_title,
.bot-modern h1.product_title {
  text-transform: none;
  text-align: left;
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  margin: 0 0 var(--space-sm);
}

.bot-modern .woocommerce div.product div.images,
.bot-modern .woocommerce div.product div.summary {
  float: none;
  width: 100%;
  margin: 0;
}

.bot-modern .left_section_wrapper {
  display: none;
}

.bot-modern .images-desktop,
.bot-modern .images-mobile {
  display: none;
}

.bot-modern .button-container {
  margin-top: 0;
}

/* ============================================
   ADVERTISEMENT
   ============================================ */
.bot-ad {
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  border: 1px dashed var(--color-border-light);
  margin: var(--space-xl) 0;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   RESPONSIVE DESIGN (Mobile-First)
   ============================================ */

/* Tablet (768px+) */
@media (min-width: 768px) {
  .bot-modern .woocommerce-wrapper {
    padding: var(--space-2xl);
  }

  .bot-hero__inner {
    grid-template-columns: auto 1fr auto;
  }

  .bot-hero__avatar {
    width: 140px;
    height: 140px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .bot-hero__avatar {
    width: 160px;
    height: 160px;
  }

  .bot-section {
    padding: var(--space-xl);
  }
}

/* Mobile-specific */
@media (max-width: 767px) {
  .bot-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
  }

  .bot-hero__avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }

  .bot-hero__info {
    text-align: center;
  }

  .bot-hero__title {
    text-align: center;
  }

  .bot-hero__username {
    justify-content: center;
  }

  .bot-hero__stats {
    justify-content: center;
  }

  .bot-social-proof {
    justify-content: center;
  }

  .bot-hero__actions {
    width: 100%;
  }

  .btn-modern {
    width: 100%;
  }

  .bot-info-card {
    flex-direction: column;
    padding: var(--space-lg);
  }

  .bot-info-card__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bot-info-card__qr {
    display: none;
  }

  .bot-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .bot-step {
    flex-direction: row;
    text-align: left;
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .bot-step__number {
    width: 40px;
    height: 40px;
    font-size: var(--text-lg);
  }

  .bot-step__content {
    flex: 1;
  }

  .bot-section {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
  }

  .bot-related-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-md);
  }

  .bot-card-mini {
    padding: var(--space-md);
  }

  .bot-card-mini__avatar {
    width: 44px;
    height: 44px;
  }

  .bot-screenshot {
    width: 220px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.bot-hero__username:focus,
.bot-card-mini:focus,
.bot-collection-link:focus,
.bot-share__btn:focus,
.bot-rating-link:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.bot-hero__username:focus:not(:focus-visible),
.bot-card-mini:focus:not(:focus-visible),
.bot-collection-link:focus:not(:focus-visible),
.bot-share__btn:focus:not(:focus-visible),
.bot-rating-link:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .bot-hero__avatar-img,
  .bot-screenshot,
  .bot-card-mini,
  .bot-collection-link,
  .bot-share__btn,
  .bot-step {
    transition: none;
  }
}

@media (prefers-contrast: high) {
  .bot-card-mini {
    border-width: 2px;
  }

  .bot-share__btn {
    border-width: 3px;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  margin: 0;
  padding: 40px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-container { max-width: 900px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 32px; }
.faq-title { font-size: 28px; font-weight: 700; margin-bottom: 8px; color: #1a202c; letter-spacing: -0.5px; }
.faq-subtitle { font-size: 15px; color: #64748b; margin: 0; }
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.faq-item:hover { border-color: #cbd5e1; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); transform: translateY(-1px); }
.faq-item.active { border-color: #3b82f6; box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: #1e293b;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.faq-question:hover { background: #f8fafc; }
.faq-item.active .faq-question { background: #eff6ff; color: #1e40af; }
.faq-question span { flex: 1; line-height: 1.5; }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; color: #94a3b8; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item:hover .faq-icon { color: #64748b; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: #3b82f6; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.active .faq-answer { max-height: 600px; }

.faq-answer-content {
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
  border-top: 1px solid #e2e8f0;
  padding-top: 16px;
}

.faq-question:focus-visible { outline: 2px solid #3b82f6; outline-offset: 2px; }

/* FAQ dark theme for adult domain */
body.porno .faq-section { background: linear-gradient(180deg, rgba(26, 26, 46, 0.8) 0%, rgba(20, 20, 35, 0.9) 100%); border: 1px solid rgba(255, 255, 255, 0.08); }
body.porno .faq-title { color: #e0e0e0; }
body.porno .faq-subtitle { color: rgba(255, 255, 255, 0.5); }
body.porno .faq-item { background: rgba(255, 255, 255, 0.03); border-color: rgba(255, 255, 255, 0.08); }
body.porno .faq-question { color: #e0e0e0; }
body.porno .faq-answer-content { color: rgba(255, 255, 255, 0.7); border-top-color: rgba(255, 255, 255, 0.08); }

@media (max-width: 768px) {
  .faq-section { padding: 24px 16px; border-radius: 12px; }
  .faq-title { font-size: 22px; }
  .faq-question { padding: 16px; font-size: 14px; }
  .faq-answer-content { padding: 0 16px 16px; font-size: 13px; }
}
