/* ===========================
   CSS Variables - Red Theme
   =========================== */
:root {
  --primary: #C41E3A;
  --primary-hover: #A01730;
  --primary-light: #E63950;
  --dark: #0D0D0D;
  --dark-secondary: #1A1A2E;
  --gray-800: #2D2D3D;
  --gray-600: #9397ad;
  --gray-400: #B3B3B3;
  --white: #FFFFFF;
  --body-bg: #0D0D0D;
  --font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --max-width: 1200px;
  --header-height: 70px;
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-family);
  background-color: var(--body-bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2.5rem;
  line-height: 1.3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===========================
   Header
   =========================== */
.app-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}
.logo:hover { opacity: 0.9; }
.logo__img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}
.logo__text {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-link:hover {
  color: var(--primary);
  background: rgba(196, 30, 58, 0.06);
}
.nav-link--active { color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  display: none;
}
.mobile-overlay.active { display: block; }

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--dark);
  z-index: 999;
  overflow-y: auto;
  display: none;
  flex-direction: column;
}
.mobile-sidebar.active { display: flex; }

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-sidebar-header .logo__img { width: 30px; height: 30px; }
.mobile-sidebar-header .logo__text { font-size: 22px; }

.close-btn {
  background: none;
  border: none;
  color: var(--gray-600);
  padding: 4px;
  transition: color 0.2s ease;
}
.close-btn:hover { color: var(--white); }

.mobile-nav { flex: 1; padding: 12px 0; }
.mobile-nav-link {
  display: block;
  padding: 14px 20px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: var(--primary); }

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A2E 40%, #2A1A2E 70%, #0D0D0D 100%);
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero__left { flex: 1; max-width: 520px; }

.hero__tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(196, 30, 58, 0.15);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(196, 30, 58, 0.3);
}

.hero__title { margin-bottom: 24px; }
.hero__title--white {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.hero__title--accent {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero__desc {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__right { flex: 1; max-width: 520px; min-width: 0; }

/* Quote Table */
.quote-table {
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.quote-table__tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: auto;
}
.quote-table__tab {
  flex: 1;
  padding: 12px 8px;
  background: transparent;
  color: var(--gray-600);
  font-size: 0.8125rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.quote-table__tab:hover { color: var(--white); }
.quote-table__tab--active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.quote-table__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 12px 20px;
  background: rgba(196, 30, 58, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.quote-table__body { max-height: 300px; overflow-y: auto; }
.quote-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease;
}
.quote-table__row:last-child { border-bottom: none; }
.quote-table__row:hover { background: rgba(196, 30, 58, 0.05); }
.quote-table__col { font-size: 0.875rem; font-weight: 500; }
.quote-table__col--symbol { color: var(--white); font-weight: 600; }
.quote-table__col--sell { color: #22c55e; }
.quote-table__col--buy { color: #ef4444; }
.quote-table__col--spread { color: var(--gray-400); }

/* ===========================
   Core Data Section
   =========================== */
.core-data {
  padding: 80px 0;
}
.core-data__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.core-data__card {
  text-align: center;
  background: var(--dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 36px 20px;
  transition: all 0.3s ease;
}
.core-data__card:hover {
  border-color: rgba(196, 30, 58, 0.3);
  transform: translateY(-4px);
}
.core-data__value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.core-data__unit {
  font-size: 1rem;
  color: var(--gray-400);
  font-weight: 600;
}
.core-data__label {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-top: 4px;
}

/* ===========================
   Account Types Section
   =========================== */
.accounts {
  padding: 100px 0;
}
.accounts__desc {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: -1.5rem auto 3rem;
  line-height: 1.8;
}
.accounts__table {
  background: var(--dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}
.accounts__table-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  padding: 20px 24px;
  background: rgba(196, 30, 58, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.accounts__table-header span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.accounts__table-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease;
}
.accounts__table-row:last-child { border-bottom: none; }
.accounts__table-row:hover { background: rgba(196, 30, 58, 0.04); }
.accounts__table-label {
  font-size: 0.9375rem;
  color: var(--gray-400);
  font-weight: 500;
}
.accounts__table-value {
  font-size: 0.9375rem;
  color: var(--white);
  font-weight: 600;
}
.accounts__table-value--accent { color: var(--primary); }

/* ===========================
   Products Section
   =========================== */
.products {
  padding: 100px 0;
}
.products__desc {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--gray-400);
  max-width: 720px;
  margin: -1.5rem auto 16px;
  line-height: 1.8;
}
.products__sub-desc {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--gray-600);
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.products__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.products__tab {
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-400);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}
.products__tab:hover {
  border-color: rgba(196, 30, 58, 0.4);
  color: var(--white);
}
.products__tab--active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.products__card {
  background: var(--dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}
.products__card:hover {
  border-color: rgba(196, 30, 58, 0.3);
  transform: translateY(-2px);
}
.products__card-symbol {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.products__card-name {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

/* ===========================
   Highlights Section
   =========================== */
.highlights {
  padding: 100px 0;
}
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.highlights__card {
  background: var(--dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.highlights__card:hover {
  border-color: rgba(196, 30, 58, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.highlights__card-img {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(26, 26, 46, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlights__card-img svg { width: 48px; height: 32px; }
.highlights__card-body { padding: 20px; }
.highlights__card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 8px;
}
.highlights__card-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===========================
   Strength Section
   =========================== */
.strength {
  padding: 100px 0;
}
.strength__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.strength__card {
  background: var(--dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.strength__card:hover {
  border-color: rgba(196, 30, 58, 0.3);
  transform: translateY(-4px);
}
.strength__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 58, 0.1);
  border-radius: 10px;
}
.strength__icon svg { width: 24px; height: 24px; }
.strength__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.strength__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===========================
   News Link Section
   =========================== */
.news-section {
  padding: 100px 0;
}
.news-section__view-all {
  text-align: center;
  margin-top: 48px;
}
.news-section__view-all a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
}
.news-section__view-all a:hover { color: var(--primary-light); }

/* ===========================
   Footer
   =========================== */
.app-footer {
  background: #111122;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.8;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 30px;
}
.footer-section { margin-bottom: 36px; }
.footer-section:last-of-type { margin-bottom: 40px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo__img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
}
.footer-logo h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  letter-spacing: -0.5px;
}
.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}
.footer-subheading {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0 0 16px;
}
.footer-intro {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.9;
  max-width: 900px;
}
.footer-awards {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid rgba(147, 151, 173, 0.15);
  border-bottom: 1px solid rgba(147, 151, 173, 0.15);
}
.footer-awards .footer-heading { margin-bottom: 6px; }
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 28px;
  background: rgba(196, 30, 58, 0.08);
  border: 1px solid rgba(196, 30, 58, 0.2);
  border-radius: 50px;
}
.award-icon { font-size: 24px; }
.award-name { font-size: 16px; font-weight: 600; color: var(--white); }
.footer-regulation-list { list-style: none; margin: 16px 0 0; }
.footer-regulation-list li {
  padding: 6px 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-600);
}
.footer-regulation-list .entity-name { color: var(--white); font-weight: 600; }
.footer-legal {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--gray-600);
  margin: 0 0 10px;
}
.footer-legal:last-child { margin-bottom: 0; }
.footer-legal strong { color: var(--white); font-weight: 600; }
.footer-notice, .footer-risk, .footer-disclaimer {
  border-top: 1px solid rgba(147, 151, 173, 0.15);
  padding-top: 28px;
}
.footer-bottom {
  border-top: 1px solid rgba(147, 151, 173, 0.15);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links { display: flex; align-items: center; gap: 14px; }
.footer-link {
  color: var(--gray-600);
  font-size: 13px;
  transition: color 0.25s ease;
}
.footer-link:hover { color: var(--primary); }
.link-divider { color: #6b6f85; font-size: 12px; }
.copyright { font-size: 12px; color: #6b6f85; margin: 0; }

/* ===========================
   Risk Bar
   =========================== */
.risk-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.risk-bar__container {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.risk-bar__text {
  flex: 1;
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.risk-bar__link { color: var(--primary); font-weight: 600; }
.risk-bar__close {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gray-400);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
}
.risk-bar__close:hover {
  background: rgba(196, 30, 58, 0.2);
  color: var(--primary);
}

/* ===========================
   News Page - Banner
   =========================== */
.news-banner {
  position: relative;
  padding: 140px 0 60px;
  overflow: hidden;
}
.news-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A2E 50%, #2A1A2E 100%);
  z-index: 0;
}
.news-banner__bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.news-banner__container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.news-banner__title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.news-banner__subtitle {
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================
   News Filter
   =========================== */
.news-filter {
  padding: 32px 0 24px;
  background: var(--dark);
}
.news-filter__container {
  display: flex;
  justify-content: center;
}
.news-filter__list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.news-filter__btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-400);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-filter__btn:hover {
  border-color: rgba(196, 30, 58, 0.4);
  color: var(--white);
}
.news-filter__btn--active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===========================
   News Cards Grid
   =========================== */
.news-content {
  padding: 16px 0 80px;
  background: var(--dark);
}
.news-content__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.news-card {
  display: block;
  background: var(--dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  color: inherit;
}
.news-card:hover {
  border-color: rgba(196, 30, 58, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.news-card__img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(26, 26, 46, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.news-card__img svg { width: 60px; height: 40px; }
.news-card__body { padding: 20px; }
.news-card__category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.news-card__category--brand { background: rgba(196, 30, 58, 0.12); color: var(--primary); }
.news-card__category--market { background: rgba(59, 130, 246, 0.12); color: #60A5FA; }
.news-card__category--event { background: rgba(16, 185, 129, 0.12); color: #34D399; }
.news-card__category--notice { background: rgba(168, 85, 247, 0.12); color: #C084FC; }
.news-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}
.news-card__date { font-size: 0.8125rem; color: var(--gray-400); }
.news-card__link { font-size: 0.8125rem; font-weight: 600; color: var(--primary); }

/* Pagination */
.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.news-pagination__btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-pagination__btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}
.news-pagination__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.news-pagination__info { font-size: 0.9375rem; color: var(--gray-400); font-weight: 500; }

/* ===========================
   News Detail Page
   =========================== */
.news-detail__breadcrumb {
  padding: 100px 0 24px;
  background: var(--dark);
}
.news-detail__breadcrumb-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.news-detail__breadcrumb-link {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.3s ease;
}
.news-detail__breadcrumb-link:hover { color: var(--primary); }
.news-detail__breadcrumb-sep { font-size: 0.75rem; color: var(--gray-600); }
.news-detail__breadcrumb-current {
  font-size: 0.875rem;
  color: var(--white);
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-detail__header {
  padding: 0 0 40px;
  background: var(--dark);
}
.news-detail__header-container {
  max-width: 860px;
  margin: 0 auto;
}
.news-detail__category {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.news-detail__category--brand { background: rgba(196, 30, 58, 0.12); color: var(--primary); }
.news-detail__category--market { background: rgba(59, 130, 246, 0.12); color: #60A5FA; }
.news-detail__category--event { background: rgba(16, 185, 129, 0.12); color: #34D399; }
.news-detail__category--notice { background: rgba(168, 85, 247, 0.12); color: #C084FC; }
.news-detail__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 16px;
}
.news-detail__date { font-size: 0.9375rem; color: var(--gray-400); }

.news-detail__body {
  padding: 0 0 80px;
  background: var(--dark);
}
.news-detail__body-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 48px;
}
.news-detail__main { flex: 1; min-width: 0; }
.news-detail__content {
  background: var(--dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 40px 36px;
}
.news-detail__paragraph {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.9;
  margin-bottom: 24px;
}
.news-detail__paragraph:last-child { margin-bottom: 0; }
.news-detail__back { margin-top: 32px; }
.news-detail__back-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.news-detail__back-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.news-detail__sidebar {
  width: 320px;
  flex-shrink: 0;
}
.news-detail__sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.news-detail__related-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-detail__related-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: all 0.3s ease;
  color: inherit;
}
.news-detail__related-card:hover {
  border-color: rgba(196, 30, 58, 0.3);
  transform: translateY(-2px);
}
.news-detail__related-img {
  width: 80px;
  height: 60px;
  min-width: 80px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(26, 26, 46, 0.9));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-detail__related-img svg { width: 40px; height: 28px; }
.news-detail__related-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.news-detail__related-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-detail__related-date { font-size: 0.75rem; color: var(--gray-600); }

.news-detail__not-found {
  padding: 80px 0 120px;
  background: var(--dark);
  text-align: center;
}
.news-detail__not-found-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin: 24px 0 12px;
}
.news-detail__not-found-desc {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 32px;
}
.news-detail__not-found-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  transition: all 0.3s ease;
}
.news-detail__not-found-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* ===========================
   Responsive - Tablet (1024px)
   =========================== */
@media (max-width: 1024px) {
  .hero__container { flex-direction: column; gap: 40px; }
  .hero__left, .hero__right { max-width: 100%; width: 100%; }
  .hero__title--white { font-size: 2.5rem; }
  .hero__title--accent { font-size: 2rem; }
  .core-data__grid { grid-template-columns: repeat(2, 1fr); }
  .news-content__grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.875rem; }
  .news-detail__body-container { flex-direction: column; }
  .news-detail__sidebar { width: 100%; }
  .news-detail__related-list { flex-direction: row; flex-wrap: wrap; }
  .news-detail__related-card { width: calc(50% - 8px); }
  .news-detail__title { font-size: 1.75rem; }
}

/* ===========================
   Responsive - Mobile (768px)
   =========================== */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 1.5rem; margin-bottom: 2rem; }

  .nav-desktop { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding-top: 60px; }
  .hero__container { padding-top: 40px; padding-bottom: 40px; }
  .hero__title--white { font-size: 2rem; }
  .hero__title--accent { font-size: 1.5rem; }
  .hero__desc { font-size: 0.875rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }

  .quote-table__header, .quote-table__row { padding: 10px 12px; }
  .quote-table__col { font-size: 0.75rem; }
  .quote-table__tab { font-size: 0.75rem; padding: 10px 4px; }

  .core-data { padding: 60px 0; }
  .core-data__grid { grid-template-columns: 1fr; }
  .core-data__value { font-size: 2rem; }

  .accounts { padding: 60px 0; }
  .accounts__table-header, .accounts__table-row { padding: 12px 12px; }
  .accounts__table-header span, .accounts__table-label, .accounts__table-value { font-size: 0.75rem; }

  .products { padding: 60px 0; }
  .products__tab { padding: 10px 20px; font-size: 0.875rem; }

  .highlights { padding: 60px 0; }
  .strength { padding: 60px 0; }
  .news-section { padding: 60px 0; }

  .news-banner { padding: 100px 0 36px; }
  .news-banner__title { font-size: 1.75rem; }
  .news-banner__subtitle { font-size: 0.9375rem; }
  .news-filter { padding: 24px 0 16px; }
  .news-filter__btn { padding: 8px 16px; font-size: 0.8125rem; }
  .news-content { padding: 12px 0 60px; }
  .news-content__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 32px; }
  .news-pagination { gap: 12px; }
  .news-pagination__btn { padding: 8px 16px; font-size: 0.8125rem; }
  .news-pagination__info { font-size: 0.8125rem; }

  .news-detail__breadcrumb { padding: 80px 0 20px; }
  .news-detail__breadcrumb-current { max-width: 180px; }
  .news-detail__header { padding: 0 0 28px; }
  .news-detail__title { font-size: 1.375rem; }
  .news-detail__body { padding: 0 0 60px; }
  .news-detail__content { padding: 28px 20px; }
  .news-detail__paragraph { font-size: 0.9375rem; line-height: 1.8; }
  .news-detail__back { margin-top: 24px; text-align: center; }
  .news-detail__back-btn { width: 100%; justify-content: center; }
  .news-detail__related-card { width: 100%; }

  .footer-inner { padding: 40px 16px 24px; }
  .footer-section { margin-bottom: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .risk-bar__text { font-size: 0.75rem; }
  .btn { padding: 12px 24px; font-size: 0.9375rem; }
}
