:root {
  --bg-dark: #020c1b;
  --card-bg: #0a192f;
  --gold: #fbbf24;
  --green: #4ade80;
  --white: #ffffff;
  --text-gray: #8892b0;
  --whatsapp: #25d366;
}

body {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--white);
  margin: 0;
  padding: 0;
  direction: rtl;
  text-align: right;
  padding-bottom: 120px; /* 底部留空给悬浮条 */
}

/* 1. 顶部横幅 */
.marquee-banner {
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-ltr 25s linear infinite;
}
@keyframes scroll-ltr {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* 2. 导师头部 */
.compact-header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--card-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 15px;
}
.avatar-small {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  flex-shrink: 0;
}
.mentor-text h1 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.mentor-text p {
  margin: 0;
  font-size: 12px;
  color: var(--gold);
}

.live-status {
  margin-left: auto; /* LTR: 靠右对齐 */
  background: rgba(74, 222, 128, 0.1);
  color: var(--green);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1s infinite;
}

/* 3. 核心区域 */
.hero-section {
  padding: 20px 15px;
  max-width: 500px;
  margin: 0 auto;
}

/* 神秘股票卡片 */
.mystery-card {
  background: radial-gradient(circle at center, #112240 0%, #0a192f 100%);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.2);
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.mystery-card::before {
  content: "CONFIDENCIAL";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 40px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  white-space: nowrap;
}

.card-header {
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 数据行 */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}
.label-text {
  color: var(--text-gray);
  font-size: 14px;
}
.price-text {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.forecast-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}
.forecast-val {
  text-align: left;
}
.val-num {
  font-size: 26px;
  font-weight: bold;
  color: var(--gold);
  display: block;
}

.val-tag {
  font-size: 12px;
  background: #3e2c08;
  color: var(--gold);
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 4px;
  display: inline-block;
  font-weight: bold;
}
.val-tag-green {
  background: rgba(74, 222, 128, 0.15);
  color: var(--green);
}
.green-txt {
  color: var(--green);
}

.disclaimer-small {
  font-size: 11px;
  color: #6a7696;
  margin-top: 15px;
  font-style: italic;
}

/* 利润图表区 */
.chart-section {
  text-align: center;
  margin-bottom: 30px;
}
.chart-title {
  font-size: 15px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: bold;
}
.chart-container {
  background: #0a192f;
  border-radius: 12px;
  padding: 8px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.chart-img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* 核心话术区 */
.daily-update-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  margin: 30px auto;
  max-width: 450px;
}
.daily-title {
  color: var(--green);
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.daily-text {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.5;
}

/* 评价墙 */
.reviews-section {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}
.reviews-title {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.review-card {
  background-color: #112240;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 15px;
  flex-direction: row; /* LTR */
}
.reviewer-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.review-content {
  flex: 1;
  text-align: right;
}
.reviewer-name {
  font-size: 14px;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 2px;
  display: block;
}
.review-stars {
  color: #f59e0b;
  font-size: 12px;
  margin-bottom: 5px;
  display: block;
}
.review-text {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.4;
}
.profit-highlight {
  color: var(--green);
  font-weight: bold;
}

/* 底部悬浮 CTA (修复版) */
.floating-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 25, 47, 0.95);
  padding: 15px;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.timer-text {
  color: var(--gold);
  font-size: 12px;
  font-weight: bold;
}
.btn-whatsapp-main {
  background-color: var(--whatsapp);
  color: #fff;
  text-decoration: none;
  width: 100%;
  max-width: 400px;
  padding: 12px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

/* 页脚 */
.legal-footer {
  text-align: center;
  font-size: 10px;
  color: #4a5568;
  margin-top: 30px;
  padding: 20px;
}
.legal-footer a {
  color: #64748b;
  text-decoration: none;
  margin: 0 5px;
}
