/* ==========================================================================
   1. 基础变量与全局复位 (Variables & Reset)
   ========================================================================== */
:root {
  --orange-hw-gradient: linear-gradient(135deg, #FF8F00 0%, #FF5500 50%, #E63C00 100%);
  --hw-btn-gold: linear-gradient(180deg, #FFE866 0%, #FFAA00 100%);
  --gold-title-hw: linear-gradient(180deg, #ffffff 10%, #FFCC00 100%);
  --brand-orange: #FF5500;
  --brand-orange-hover: #E64400;
  --brand-orange-light: #FFF2EB;
  --chart-dark-bg: #1A1F2A;
  --card-dark-bg: #242B3A;
  --border-dark: #2F374A;
  --text-dark: #1f2937;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased; 
}

body {
  background-color: #f7f9fc;
  color: #374151;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   2. 第一屏：黄金大气的 Banner 区 (Gold Banner)
   ========================================================================== */
.gold-banner {
  width: 100%;
  padding: 85px 0 120px 0;
  min-height: 750px;
  background-color: #FF5500; 
  position: relative;
  z-index: 5;
}

.gold-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF9400 0%, #FF5500 60%, #E63C00 100%);
  opacity: 0.85; 
  z-index: -1;
}

.banner-inner-wrap {
  position: relative;
}

.banner-content {
  max-width: 1050px; 
  text-align: center;
  margin: 0 auto;
}

.banner-title {
  display: block;
  text-align: center;
  font-size: 64px;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 24px;
  white-space: nowrap;
  word-break: keep-all;
}

.banner-title em {
  font-style: normal;
  font-weight: 800;
  display: inline;
  background: linear-gradient(180deg, #FFFFFF 15%, #FFF999 50%, #FFF200 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: none;
  -webkit-text-stroke: 0px transparent;
  margin: 0;
  padding: 0;
}

.banner-subtitle {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
}

.banner-btns {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-bottom: 45px;
}

.btn-invest {
  background: linear-gradient(180deg, #FFE866 0%, #FFCC00 50%, #FFAA00 100%);
  color: #4A2300; 
  width: 240px;
  padding: 18px 0; 
  text-align: center;
  font-size: 22px; 
  font-weight: 900; 
  border-radius: 8px; 
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(255, 150, 0, 0.5), inset 0 2px 0 rgba(255,255,255,0.6);
  text-decoration: none;
}

.btn-invest:hover {
  transform: translateY(-5px) scale(1.03); 
  box-shadow: 0 15px 35px rgba(255, 150, 0, 0.8), inset 0 -4px 0 rgba(0,0,0,0.15);
}

.btn-product {
  background: #ffffff; 
  color: #E65500; 
  width: 240px;
  padding: 18px 0; 
  text-align: center;
  font-size: 22px; 
  font-weight: 900;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(230, 85, 0, 0.15);
  border: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
}

.btn-product:hover {
  background: #FFF9F5; 
  color: #FF3300;
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 12px 28px rgba(230, 85, 0, 0.3);
}

.banner-data {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-width: 850px;
  margin: 0 auto;
}

.banner-data .data-item {
  flex: 1;
  display: flex;
  align-items: center;     
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 4px 20px rgba(230, 80, 0, 0.1);
}

.banner-data .data-icon {
  width: 36px;
  height: 36px;            
  margin-right: 12px;
  flex-shrink: 0;
}

.banner-data .data-box {
  display: flex;
  flex-direction: column;
  text-align: left;        
}

.data-num {
  display: block;
  font-size: 36px; 
  font-weight: 800;
  margin-bottom: 2px;
  color: #FFE666;
}

.data-text {
  font-size: 16px; 
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.banner-right-holder { display: none; }


/* ==========================================================================
   3. 第二屏：六大核心优势数据区 (Advantage Box)
   ========================================================================== */
.gold-advantage {
  position: relative;       
  margin-top: -70px;         
  z-index: 10;
  padding: 0;
  background: transparent;
  border-bottom: none;
}

/* 核心解锁：大盒子不限制 1200px 钢铁宽度，完全自适应 */
.advantage-wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(230, 80, 0, 0.12);
  border-radius: 16px;
  padding: 20px; 
  gap: 12px;
}

.advantage-item {
  text-align: center;
  padding: 24px 4px; 
  position: relative;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
}

.advantage-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 20%;
  width: 1px; height: 60%;
  background: #eaeef2;
}

.adv-num {
  display: block;
  font-size: 36px;
  font-weight: 600;
  color: var(--brand-orange, #FF5500);  
  margin-bottom: 5px;
  font-family: Arial, sans-serif;
}

.advantage-item:nth-child(2) .adv-num,
.advantage-item:nth-child(4) .adv-num,
.advantage-item:nth-child(6) .adv-num {
  color: #1f2937;
}

.adv-text {
  font-size: 16px; 
  color: #475569;
  font-weight: 400;
  white-space: nowrap;
}

/* ==========================================================================
   4. 第三屏：专业平台排行榜单区 (Rank List)
   ========================================================================== */
.rank-wrap {
  padding: 55px 0 65px 0;
  background-color: #f9fafb;
}

.rank-title {
  text-align: center;
  margin-bottom: 40px;
}

.rank-title h2 {
  font-size: 32px; 
  font-weight: 700;
  color: var(--text-dark, #1f2937);
  margin-bottom: 15px;
}

.rank-title p {
  font-size: 18px;
  color: #64748b;
}

.rank-list {
  max-width: 1040px; 
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rank-item {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 22px 28px; 
  border-radius: 14px; 
  gap: 20px;
  transition: all 0.3s ease; 
  border: 1px solid transparent;
}

.rank-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border-color: var(--brand-orange, #FF5500);
}

.rank-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.rank-num.num1 {
  background: linear-gradient(135deg, #FFD700 0%, #EA9A00 100%);
  color: #fff;
}

.rank-num.num2 {
  background: #cbd5e1;
  color: #fff;
}

.rank-logo {
  width: 65px; 
  height: 65px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-info {
  flex: 1;
  min-width: 0;
}

.rank-info h3 {
  margin-top: 0;    
  margin-bottom: 6px;  
  line-height: 1.3;   
}

.rank-desc {
  margin-top: 0;
  margin-bottom: 0; 
  line-height: 1.5;
}

.rank-name {
  font-size: 20px; 
  font-weight: 700;
  color: var(--text-dark, #1f2937);
  text-decoration: none;
  display: inline-block;
  vertical-align: top; 
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  will-change: color; 
  transition: color 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.rank-name:hover { 
  color: var(--brand-orange, #FF5500);
}

.rank-btn {
  padding: 10px 26px;
  background: var(--orange-hw-gradient);
  color: #ffffff;
  border-radius: 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.rank-btn:hover { background: #E63C00; }

.rank-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;            
  margin-top: 4px;
  margin-bottom: 8px;
}

.rank-tags span {
  font-size: 12px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;  
  display: inline-block;
  line-height: 1.2;
}

.tag-orange {
  background-color: #FFF3EB;
  color: #FF6600;
}

.tag-blue {
  background-color: #EEF4FF;
  color: #3377FF;
}

.pc-text { display: block; }
.mobile-text { display: none; }

/* ==========================================================================
   5. 第四屏：国际实时走势看盘区 (Chart Section)
   ========================================================================== */
.chart-section {
  padding: 50px 0;
  background: var(--chart-dark-bg, #1A1F2A);
}

.chart-header {
  text-align: center;
  margin-bottom: 20px;
}

.chart-header h2 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.chart-header h2 i {
  color: var(--brand-orange, #FF5500);
  margin-right: 6px;
}

.chart-header p {
  font-size: 18px;
  color: #94A3B8;
}

.chart-main {
  width: 100%;
  height: 500px; 
  background: #1e222d; 
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border-dark, #2F374A); 
  overflow: hidden;
}

.chart-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.stat-card {
  background: var(--card-dark-bg, #242B3A);
  padding: 15px;
  border-radius: 8px;
  text-align: center; 
  border: 1px solid transparent;
  transition: 0.3s;
}

.stat-card:hover {
  border-color: rgba(255, 102, 0, 0.3);
}

.stat-label {
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.stat-desc {
  font-size: 12px;
  color: #64748B;
  margin-top: 4px;
}

.stat-value.high, .stat-value.up { color: #ef4444; }
.stat-value.low, .stat-value.down { color: #10b981; }

.chart-tip {
  text-align: center;
  font-size: 13px;
  color: #64748B;
  margin-bottom: 20px;
}

.chart-btn-wrap {
  text-align: center;
  margin-top: 24px;
}

.main-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FF8800, var(--brand-orange, #FF5500)); 
  color: #fff;
  font-weight: bold;
  padding: 14px 50px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-btn:hover {
  background: var(--brand-orange-hover, #E64400);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}

/* ==========================================================================
   6. 第五屏：核心可投资产品网格区 (Products Section)
   ========================================================================== */
.pro-wrap {
  padding: 60px 0;
  background: #ffffff;
}

.pro-title {
  text-align: center;
  margin-bottom: 45px;
}

.pro-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.pro-title h2 i {
  margin-right: 8px;
}

.pro-title p {
  font-size: 18px;
  color: #6B7280;
  max-width: 1100px;
  margin: 0 auto;
}

.pro-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pro-item {
  display: flex;
  flex-direction: column;
  padding: 32px 26px;
  border-radius: 16px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pro-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 85, 0, 0.08);
}

.pro-item.orange1 { background: var(--brand-orange-light, #FFF2EB); border-left: 5px solid var(--brand-orange, #FF5500);
  border-color: transparent transparent transparent var(--brand-orange, #FF5500); }
.pro-item.orange2 { background: #F0F6FF; border-left: 5px solid #3B82F6; border-color: transparent transparent transparent #3B82F6; }
.pro-item.orange3 { background: #FAF9F6; border-left: 5px solid #78716C; border-color: transparent transparent transparent #78716C; }

.pro-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.pro-code {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 24px;
  font-weight: 500;
}

.pro-info {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.pro-info li {
  font-size: 13px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  text-align: left;
}

.pro-info li::before {
  content: "✓"; 
  position: absolute;
  left: 0; top: 1px;
  font-weight: 900;
  font-size: 13px;
}
.pro-item.orange1 .pro-info li::before { color: var(--brand-orange, #FF5500); }
.pro-item.orange2 .pro-info li::before { color: #3B82F6; }
.pro-item.orange3 .pro-info li::before { color: #78716C; }

.pro-info li strong {
  color: #111827;
  font-weight: 600;
  display: inline-block;
  margin-right: 3px;
}

.pro-risk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #4B5563;
}

.pro-risk em {
  font-style: normal;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
}
.risk-medium { background: #F59E0B; }
.risk-high { background: #EF4444; }

.pro-btn {
  display: block;
  text-align: center;
  padding: 13px 0;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.pro-item.orange1 .pro-btn { background: var(--brand-orange, #FF5500); }
.pro-item.orange1 .pro-btn:hover { background: var(--brand-orange-hover, #E64400); box-shadow: 0 5px 15px rgba(255, 85, 0, 0.3); }
.pro-item.orange2 .pro-btn { background: #3B82F6; }
.pro-item.orange2 .pro-btn:hover { background: #2563EB; box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3); }
.pro-item.orange3 .pro-btn { background: #78716C; }
.pro-item.orange3 .pro-btn:hover { background: #57534E; box-shadow: 0 5px 15px rgba(120, 113, 108, 0.3); }

/* ==========================================================================
   7. 第六屏：深色底六大平台优势 (Advantage Grid)
   ========================================================================== */
.adv-wrap {
  padding: 60px 0;
  background: #0F172A;
}

.adv-title {
  text-align: center;
  margin-bottom: 45px;
}

.adv-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.adv-title p {
  font-size: 18px;
  color: #94A3B8;
}

.adv-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.adv-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 26px;
  transition: all 0.3s ease;
}

.adv-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 85, 0, 0.3);
}

.adv-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-orange, #FF5500); 
  margin-bottom: 12px;
}

.adv-item p {
  font-size: 16px;
  color: #94A3B8;
  line-height: 1.75;
}

/* ==========================================================================
   8. 第九屏：常见问题 FAQ 折叠面板区 (FAQ Section)
   ========================================================================== */
.faq-wrap {
    padding: 60px 0;
    background: #F9FAFB;
}

.faq-title {
    text-align: center;
    margin-bottom: 45px;
}

.faq-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.faq-title p {
    font-size: 18px;
    color: #6B7280;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
}

.faq-btn {
    width: 100%;
    padding: 20px 26px;
    background: #ffffff;
    border: none;
    text-align: left;
    font-size: 15.5px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s;
}

.faq-btn:hover {
    background: #FAFAFA;
    color: var(--brand-orange, #FF5500);
}

.faq-content {
    padding: 0 26px 22px 26px;
    display: none;
    background: #ffffff;
    border-top: 1px dashed #F3F4F6;
}

.faq-content p {
    margin: 14px 0 0 0;
    font-size: 13.5px;
    color: #4B5563;
    line-height: 1.85;
}


/* ==========================================================================
   9. 第十屏：品牌实力背书玻璃卡片区 (Brokers Section)
   ========================================================================== */
.broker-wrap .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.broker-wrap {
    padding: 75px 0;
    background: linear-gradient(165deg, #FFAA00 0%, #FF7700 60%, #FF5500 100%);
    box-sizing: border-box;
    font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", sans-serif;
}

.broker-wrap .broker-title {
    text-align: center;
    margin-bottom: 45px;
}
.broker-wrap .broker-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(189, 30, 0, 0.4);
}
.broker-wrap .broker-title p {
    font-size: 18px;
    color: #ffffff; 
    opacity: 0.95;
    margin: 0;
    line-height: 1.5;
}

.broker-wrap .broker-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.broker-wrap .broker-item {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 290px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35); 
    border-radius: 16px;
    padding: 40px 24px 35px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.broker-wrap .broker-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(230, 61, 0, 0.35);
}
.broker-wrap .broker-logo {
    width: 65px;
    height: 65px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}
.broker-wrap .broker-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
}
.broker-wrap .broker-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}
.broker-wrap .broker-user-tag {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 12px 0;
}
.broker-wrap .broker-score {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}
.broker-wrap .broker-suit {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.92;
    line-height: 1.6;
    margin: 0 0 24px 0;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 65px;
}
.broker-wrap .broker-suit strong {
    color: #ffffff;
    font-weight: 700;
}
.broker-wrap .broker-item .badge {
    display: inline-block;
    font-size: 12.5px;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 8px;
}
.broker-wrap .broker-btn {
    width: 100%;
    padding: 13px 0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: block;
    margin-top: auto;
    transition: all 0.25s ease;
    box-sizing: border-box;
    text-align: center;
}
/* 各平台定制色彩方案 */
.broker-wrap .badge-eet { background: linear-gradient(180deg, #FFE866 0%, #FFCC00 50%, #FFAA00 100%); color: #4A2300; }
.broker-wrap .broker-btn.btn-eet { background: linear-gradient(180deg, #FFE866 0%, #FFCC00 50%, #FFAA00 100%); color: #4A2300; box-shadow: 0 4px 14px rgba(255, 204, 0, 0.4); }
.broker-wrap .broker-btn.btn-eet:hover { background: linear-gradient(180deg, #FFF099 0%, #E6B800 50%, #D48D00 100%); box-shadow: 0 6px 18px rgba(255, 204, 0, 0.6); }
.broker-wrap .badge-hk { background: linear-gradient(135deg, #FF8800, var(--brand-orange, #FF5500)); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.6); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); }
.broker-wrap .broker-btn.btn-hk { background: linear-gradient(135deg, #FF8800, var(--brand-orange, #FF5500)); color: #ffffff; border: 1px solid #ffffff; box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15); }
.broker-wrap .broker-btn.btn-hk:hover { background: linear-gradient(135deg, #FF9922, var(--brand-orange, #FF6611)); box-shadow: 0 6px 18px rgba(255, 85, 0, 0.5); opacity: 0.95; }
.broker-wrap .badge-yt { background: rgba(255, 255, 255, 0.2); color: #ffffff; }
.broker-wrap .broker-btn.btn-yt { background: #EEF4FF; color: #2563EB; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
.broker-wrap .broker-btn.btn-yt:hover { background: #DCE7FF; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); }
.broker-wrap .broker-footer-tips { margin-top: 45px; text-align: center; }
.broker-wrap .broker-footer-tips .main-tip { font-size: 13px; color: rgba(255, 255, 255, 0.9); margin: 0 0 25px 0; }
.broker-wrap .trust-tags { display: flex; justify-content: center; gap: 30px; margin-bottom: 25px; flex-wrap: wrap; }
.broker-wrap .trust-tags span { font-size: 14px; color: #ffffff; display: inline-flex; align-items: center; font-weight: 500; }
.broker-wrap .trust-tags span svg { width: 16px; height: 16px; margin-right: 6px; vertical-align: middle; fill: #FFE600; }
.broker-wrap .trust-tags span i { color: #FFE600; margin-right: 6px; font-size: 14px; }
.broker-wrap .risk-warning-box { max-width: 850px; margin: 0 auto; padding: 12px 24px; border: 1px solid rgba(255, 255, 255, 0.4); background: rgba(0, 0, 0, 0.25); border-radius: 6px; color: #ffffff; font-size: 12.5px; line-height: 1.6; text-align: center; }
.broker-wrap .risk-warning-box strong { color: #FFEA00; font-weight: 700; }

/* ==========================================================================
   10. 第十一屏：实时金融新闻资讯板块 (News Section)
   ========================================================================== */
.news-wrap { padding: 60px 0; background-color: #ffffff; box-sizing: border-box; font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", sans-serif; }
.news-header { text-align: center; margin-bottom: 35px; }
.news-header h2 { font-size: 28px; font-weight: 700; color: #1F2937; margin: 0 0 10px 0; display: inline-flex; align-items: center; }

