* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* =========================================
     NEW DESIGN SYSTEM (From User)
     ========================================= */
  --bs-body-bg: #f9f6f2;
  --bs-body-color: #1e293b;
  --bs-text-color: var(--color-privacy-5);
  --bs-border-color: var(--color-border-light);
  --post-background: var(--color-bg-light);
  --bs-border-radius: var(--el-border-radius);
  --input-bg-floating: var(--input-bg-light);
  --input-text-color: var(--color-privacy-5);
  --input-bg-hover: var(--color-privacy-4);
  --skeleton-base: var(--skeleton-base-light);
  --skeleton-highlight: var(--skeleton-highlight-light);
  --bs-text-muted: var(--bs-text-muted-light);
  --search-input-bg: var(--search-input-bg-light);
  --bs-alert-success-bg-color: var(--bs-alert-success-bg-color-light);
  --bs-alert-warning-bg-color: var(--bs-alert-warning-bg-color-light);
  --bs-alert-danger-bg-color: var(--bs-alert-danger-bg-color-light);
  --avatar-border-color: var(--el-color-white);
  --btn-privacy-bg-1: var(--el-btn-federated-bg);
  --btn-privacy-color-1: var(--color-privacy-5);
  --btn-privacy-border-1: var(--color-border-light);
  --btn-privacy-bg-2: var(--el-btn-federated-bg);
  --accent-color: var(--el-color-black);
  --profile-at-color: var(--profile-at-color-light);
  --navigation-link-bg: var(--navigation-link-bg-light);
  --btn-privacy-color-3: var(--el-text-color-primary);
  --card-bg-1: var(--el-color-white);
  --text-privacy-1: var(--text-privacy-1-light);
  --gradient-overlay-fade: var(--color-gradient-overlay-light);
  --title-gradient: var(--color-title-gradient-light);
  color-scheme: light;

  --bs-primary-rgb: 90, 96, 118;
  --bs-primary: rgb(var(--bs-primary-rgb));
  --bs-light-rgb: 233, 236, 239;
  --bs-font-sans-serif: "Poppins", sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);

  --color-privacy: #f68d3d;
  --color-privacy-2: #F04933;
  --color-privacy-3: #FD7350;
  --color-privacy-3-rgb: 253, 115, 80;
  --color-privacy-4: #F4EEE5;
  --color-privacy-5: #333333;
  --color-privacy-5-rgb: 51, 51, 51;
  --color-privacy-6: #F84F28;
  --color-privacy-6-hover: #FF7C58;
  --color-privacy-7: #A8ABB2;
  --color-privacy-7-hover: #b4b6bb;
  --color-outline-border: #23201F;
  --color-button-primary: #F6842C;
  --color-gradient-primary: linear-gradient(45deg, #f68d3d 0%, #f69347 3%, #f7a96c 17%, #f9b887 30%, #f9c298 41%, #fac69e 50%, #f9c09d 67%, #f8af9a 88%, #f7a499 100%);
  --color-privacy-gradient-1: linear-gradient(45deg, #f58170, #f9af77);
  --color-bg-light: #F4EEE5;
  --color-border-light: #DDDDDD;
  --navigation-link-bg-light: #FEEEE2;
  --profile-at-color-light: var(--color-privacy-5);
  --text-privacy-1-light: #222222;
  --el-color-white: #ffffff;
  --el-color-black: #000000;

  /* =========================================
     COMPATIBILITY MAPPINGS (Legacy -> New)
     ========================================= */
  --theme-color: var(--color-privacy);
  /* Was #ff6b3d, now #f68d3d */
  --primary-color: var(--color-privacy-5);
  /* Was #333 */
  --background-color: var(--bs-body-bg);
  /* Was #fff, now #f9f6f2 */
  --border-color: var(--color-border-light);
  --search-bg: var(--input-bg-floating);
  /* Was #f8f8f8, now roughly light */
  --text-color: var(--bs-body-color);
  --grey-light: var(--color-privacy-7);
  --grey-text: #606266;
  /* Element UI regular text */
  --container-width: 1200px;
  --shadow-default: 0 2px 4px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Inter", sans-serif !important;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  min-height: 100vh;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  will-change: scroll-position;
}

img,
video {
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  backface-visibility: hidden;
}

/* Header Styles */
.navbar {
  background-color: var(--background-color);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  contain: layout;
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 80px;
  width: auto;
}

.right-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.search-container {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  width: 300px;
}

.search-container input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-size: 0.95rem;
}

.search-button {
  background: none;
  border: none;
  color: var(--grey-light);
  cursor: pointer;
}

.nav-icons {
  display: flex;
  gap: 1rem;
}

.icon-button {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-color);
}

.menu-mobile {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
}

/* Main Content Styles */
main {
  margin-top: 70px;
}

.main-container {
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Profile Section Styles */
.profile-section {
  width: 100%;
}

.cover-section {
  width: 100%;
  position: relative;
}

.cover-image {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats {
  position: absolute;
  bottom: 0.8rem;
  right: 0.6rem;
  color: #fff;
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cover-stats {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 20px;
  color: white;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.profile-info {
  position: absolute;
  bottom: 0;
  left: 2rem;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  transform: translateY(55%);
}

.profile-image {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-text {
  margin-bottom: 1rem;
}

.profile-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.1;
  margin-bottom: 4px;
}

.verified {
  display: inline-flex;
  align-items: center;
  margin-left: -2px;
}

.verified svg {
  width: 18px;
  height: 18px;
  fill: var(--theme-color);
}

.profile-username {
  color: var(--grey-text);
  font-size: 0.95rem;
  letter-spacing: -1px;
  line-height: 1.2;
}

.profile-bio {
  margin-top: 5rem;
  padding-left: 2.5rem;
  padding-right: 2rem;
}

.bio-container {
  position: relative;
  z-index: 10;
  /* Boost z-index to prevent overlapping elements from blocking clicks */
}

.bio-text {
  color: #292d30;
  font-size: 0.95rem;
  line-height: 1.5;
  overflow: hidden;
  max-height: 4.5em;
  /* Altura para 3 linhas (1.5 * 3) */
  transition: max-height 0.3s ease;
  margin-bottom: 0.5rem;
  position: relative;
}

.bio-text:not(.expanded)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
}

.bio-text.expanded {
  max-height: 1000px;
  /* Um valor grande o suficiente para mostrar todo o conteúdo */
}

.bio-text.expanded::after {
  display: none;
}

.bio-toggle {
  background: none;
  border: none;
  color: #727272;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 0;
  font-family: "Montserrat", sans-serif;
  transition: opacity 0.2s;
}

/* Social Links Styles */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  /* Espaço extra abaixo para afastar dos botões de assinatura */
  margin-bottom: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  will-change: transform, background-color;
}

.social-link.twitter {
  color: #ff8c5f;
  border: 1px solid #ff8c5f;
}

.social-link.twitter:hover {
  background-color: #ff8c5f;
  color: var(--background-color);
}

.social-link.tiktok {
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
}

.social-link.tiktok:hover {
  background-color: var(--theme-color);
  color: var(--background-color);
}

.social-link.instagram {
  color: #ff7a4d;
  border: 1px solid #ff7a4d;
}

.social-link.instagram:hover {
  background-color: #ff7a4d;
  color: var(--background-color);
}

.social-link.telegram {
  color: #ff9d6e;
  border: 1px solid #ff9d6e;
}

.social-link.telegram:hover {
  background-color: #ff9d6e;
  color: var(--background-color);
}

.content-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  margin-bottom: -20px;
}

.separator {
  color: var(--grey-light);
  font-size: 2rem;
  transform: translateY(-10%);
}

.toggle-btn.disabled {
  pointer-events: none;
  cursor: default;
}

.toggle-btn {
  background: none;
  border: none;
  color: var(--grey-light);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.toggle-btn.active {
  color: var(--theme-color);
}

.content-sections {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  contain: content;
}

.content-section {
  display: none;
}

.content-section.active {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Video Styles */
.video-container {
  width: 600px;
  margin: 1rem 0;
  border-radius: 12px;
  overflow: hidden;
}

.loop-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Photo Grid Styles */
.photo-container {
  width: 400px;
  margin: 1rem 0;
  border-radius: 12px;
  overflow: hidden;
}

.grid-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.feed-media .locked-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide default play button on iOS/Android - AGGRESSIVE */
.feed-media video::-webkit-media-controls,
.feed-media video::-webkit-media-controls-start-playback-button,
.feed-media video::-webkit-media-controls-play-button,
.feed-media video::-webkit-media-controls-panel,
.feed-media video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Fallback for specific Android versions */
.feed-media video::-webkit-media-controls-enclosure {
  display: none !important;
}

/* Novo container para Garantia e FAQ */
.info-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2rem;
}

.garantia-faq-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.destaque {
  color: #ff2727;
  /* Vermelho */
}

/* FAQ Styles */
.faq-container {
  flex: 1;
  max-width: 600px;
}

.faq-titulo {
  color: var(--theme-color);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  will-change: background-color;
}

.faq-question:hover {
  background-color: var(--search-bg);
}

.faq-icon {
  width: 10px;
  height: 10px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--theme-color);
  transition: all 0.3s ease;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--search-bg);
  font-size: 0.95rem;
  will-change: max-height, padding;
}

.faq-item.active .faq-answer {
  padding: 1rem;
  max-height: 200px;
}

/* Estilos base do botão */
.subscription-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  margin-top: 20px;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(to right, #f58370, #f5a55b);
  color: var(--background-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: visible;
  isolation: isolate;
}

/* Animações da borda */
.subscription-button::before,
.subscription-button::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #f58370, #f5a55b, #f58370);
  background-size: 200% 100%;
  z-index: -1;
  animation: borderAnimation 2s linear infinite;
}

.subscription-button::after {
  filter: blur(10px);
  opacity: 0.7;
}

@keyframes borderAnimation {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

/* Hover effect */
.subscription-button:hover::before,
.subscription-button:hover::after {
  animation-duration: 1s;
}

/* Mantendo os estilos do texto */
.subscription-button span {
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.footer-legal-links {
  font-size: 13px;
  text-align: center;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.footer-legal-links a {
  color: var(--theme-color);
  text-decoration: none;
  transition: opacity 0.2s;
  font-size: 13px;
  font-weight: 400;
}

.footer-legal-links .separator {
  color: var(--grey-light);
  font-size: 13px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-container {
    padding: 0.3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .logo img {
    height: 70px;
  }

  .right-container {
    display: none;
  }

  .menu-mobile {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-mobile svg {
    width: 30px;
    height: 30px;
  }

  .main-container {
    max-width: none;
  }

  main {
    margin-top: 80px;
  }

  .cover-image {
    height: 185px;
  }

  .profile-info {
    left: 1rem;
    transform: translateY(55%);
    gap: 0.5rem;
  }

  .profile-image {
    width: 115px;
    height: 115px;
  }

  .profile-name {
    font-size: 1.2rem;
  }

  .profile-bio {
    margin-top: 4.5rem;
    padding-left: 1.5rem;
    padding-right: 1rem;
  }

  .bio-text {
    font-size: 13px;
  }

  .bio-toggle {
    font-size: 13px;
  }

  .social-links {
    gap: 8px;
    margin-top: 8px;
    /* Um tiquinho mais de espaço no mobile também */
    margin-bottom: 12px;
  }

  .social-link {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  /* Modificações para Garantia e FAQ no Mobile */
  .info-container {
    padding: 1rem;
  }

  .garantia-faq-wrapper {
    flex-direction: column;
    gap: 2rem;
    margin: 1rem 0;
  }

  .faq-container {
    margin: 0;
  }

  .faq-titulo {
    font-size: 1.7rem;
    text-align: center;
  }

  .faq-question {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  .content-toggle {
    margin: 0.45rem 0;
    margin-top: 20px;
    gap: 0.05rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .content-toggle,
  .content-toggle .toggle-btn,
  .content-toggle .count,
  .content-toggle * {
    font-size: 14px !important;
  }

  .separator {
    color: var(--grey-light);
    font-size: 30px !important;
    transform: translateY(-10%);
  }

  .video-container {
    max-width: 100%;
    margin: 0.5rem 0;
  }

  .photo-container {
    max-width: 100%;
    margin: 0.5rem 0;
  }

  .subscription-button {
    padding: 12px 20px;
    margin-top: 15px;
  }

  .subscription-button span {
    font-size: 23px;
  }

  .footer-legal-links {
    font-size: 0.8rem;
    padding: 0.8rem;
  }

  .footer-legal-links .separator {
    font-size: 20px !important;
  }
}

/* Strong blur effect for the second video */
.feed-media {
  position: relative;
  overflow: hidden;
  /* Prevent blur from bleeding outside */
}

.feed-media .locked-media.blur-strong {
  -webkit-filter: blur(7px);
  filter: blur(7px);
  transform: scale(1.03);
  /* Slight scale to compensate blur crop */
  transform-origin: center;
  will-change: filter, transform;
}

/* =========================================
   DARK MODE SUPPORT (Automatic)
   ========================================= */
@media (prefers-color-scheme: dark) {
  :root {
    --bs-body-bg: #121212;
    --bs-body-color: #e2e8f0;
    --color-privacy-5: #f8fafc;
    --color-border-light: #2c2c2c;
    --input-bg-floating: #2c2c2c;

    /* Overriding Compatibility Mappings */
    --background-color: #121212;
    --primary-color: #f8fafc;
    --text-color: #e2e8f0;
    --border-color: #2c2c2c;
    --search-bg: #2d2d2d;
    --grey-light: #64748b;
    --grey-text: #94a3b8;

    --card-bg-1: #1e1e1e;
    --el-color-white: #1e1e1e;
  }

  body {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
  }

  /* Containers background override */
  .nav-container,
  .payment-card,
  .modal-content,
  .feed-card,
  .pricing-panel,
  .plan-outline {
    background-color: #1e1e1e !important;
    border-color: #333 !important;
    color: #e2e8f0 !important;
  }

  .navbar {
    background-color: #1e1e1e !important;
    border-bottom-color: #333 !important;
  }

  /* Text Colors */
  .profile-name,
  .feed-name,
  .pricing-panel h3,
  .plan-outline .left,
  .plan-outline .right,
  .faq-question,
  .popup-profile-username,
  .popup-headline h2,
  .popup-additional-headline h3 {
    color: #f8fafc !important;
  }

  .profile-username,
  .feed-handle,
  .bio-toggle,
  .old-price,
  .footer-text {
    color: #94a3b8 !important;
  }

  .bio-text {
    color: #cbd5e1 !important;
  }

  /* Bio Fade Gradient */
  .bio-text:not(.expanded)::after {
    background: linear-gradient(to bottom,
        rgba(18, 18, 18, 0) 0%,
        rgba(18, 18, 18, 1) 100%);
  }

  /* Inputs and Search */
  .search-container input {
    color: #fff;
    border-color: #444;
  }

  .icon-button {
    color: #fff;
  }

  .icon-button:hover {
    background-color: #333;
  }

  /* Icons and details */
  .toggle-btn {
    color: #64748b;
  }

  .toggle-btn.active {
    color: var(--theme-color);
  }

  .separator {
    color: #444;
  }

  /* Payment Popup specifics */
  .payment-popup-container {
    background: #1e1e1e;
    color: #e2e8f0;
  }

  .pay-user-info h3 {
    color: #fff;
  }

  .pay-user-info p {
    color: #aaa;
  }

  .pay-section-title,
  .pay-benefit-item {
    color: #ddd;
  }

  .pay-price-row {
    color: #ccc;
  }

  .pay-value-lg {
    color: #fff;
  }

  .pay-pix-code {
    background: #333;
    color: #fff;
    border: 1px solid #444;
  }

  /* Notification Toast */
  #notification-container>div {
    background: #2d2d2d !important;
    color: #e2e8f0 !important;
    border-color: #444 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
  }


}

/* Force white stats - VERY AGGRESSIVE (Global) */
.stats-pill,
.stats-pill *,
.stats-pill span,
.stats-pill i,
.stats-pill div {
  color: #fff !important;
}