/* ==========================================================================
   CryptoTradeForecast - Master Design System & Stylesheet
   Theme: Luxury Brownish & Light Brown / Warm Cream & Bronze Palette
   Inspired by SoloWealthPro & LawFocal Authority Portals
   Compliant with YMYL E-E-A-T Quality Standards
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Master Palette - Rich Warm Espresso, Caramel Bronze, Latte & Cream */
  --bg-primary: #1C1512;        /* Deep Espresso Base */
  --bg-secondary: #2C221C;      /* Dark Roasted Coffee */
  --bg-tertiary: #3D312A;       /* Warm Bronze Dark */
  --bg-light: #FAF7F2;          /* Light Cream / Sand Background */
  --bg-card: #FFFFFF;           /* Crisp White Card Surface */
  --bg-card-subtle: #F4EFEA;     /* Soft Latte / Warm Cream Sub-surface */
  
  --text-main: #1E1815;         /* Deep Warm Charcoal */
  --text-muted: #73645A;        /* Warm Muted Walnut */
  --text-light: #A39387;        /* Soft Tan / Stone */
  --text-inverse: #FFFFFF;
  --text-heading: #1C1512;

  --border-light: #E7DFD7;      /* Warm Light Border */
  --border-subtle: #D8CCC0;     /* Warm Medium Border */
  --border-dark: #3D312A;       /* Dark Espresso Border */

  /* Brand Accents - Rich Cognac, Bronze & Golden Tan */
  --brand-primary: #A26938;     /* Rich Cognac Bronze */
  --brand-hover: #8B5528;       /* Deep Roast Bronze */
  --brand-light: #F8ECE1;       /* Light Latte Pill / Badge BG */
  --brand-dark: #6D3E1A;        /* Deep Auburn */
  --brand-accent: #C68B59;      /* Golden Ochre */
  --brand-tan: #D4A373;         /* Warm Sand Tan */

  /* Indicators */
  --emerald-growth: #16A34A;
  --emerald-bg: #F0FDF4;
  --emerald-border: #BBF7D0;
  
  --crimson-risk: #DC2626;
  --crimson-bg: #FEF2F2;
  --crimson-border: #FECACA;

  --amber-alert: #D97706;
  --amber-bg: #FFFBEB;
  --amber-border: #FDE68A;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows with Warm Amber Undertone */
  --shadow-sm: 0 1px 3px 0 rgba(28, 21, 18, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(28, 21, 18, 0.07), 0 2px 4px -2px rgba(28, 21, 18, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(28, 21, 18, 0.08), 0 4px 6px -4px rgba(28, 21, 18, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(28, 21, 18, 0.12), 0 8px 10px -6px rgba(28, 21, 18, 0.05);
  --shadow-glow: 0 0 25px rgba(162, 105, 56, 0.25);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s ease;

  /* Layout */
  --container-width: 1280px;
  --header-height: 74px;
  --ticker-height: 40px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   Top Header & Live Crypto Ticker Bar (Beige & Light Brown Theme)
   ========================================================================== */
.top-bar-ticker {
  background-color: #EDE3D7;
  color: #5C4B3E;
  font-size: 0.8125rem;
  border-bottom: 1px solid #DFD2C4;
  overflow: hidden;
  height: var(--ticker-height);
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
}

.ticker-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.ticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(162, 105, 56, 0.15);
  color: #8B5528;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 1rem;
  border: 1px solid rgba(162, 105, 56, 0.3);
}

.ticker-badge .pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #16A34A;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.ticker-track-wrapper {
  overflow: hidden;
  flex: 1;
  white-space: nowrap;
  position: relative;
}

.ticker-track {
  display: inline-flex;
  gap: 2rem;
  animation: tickerSlide 35s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #2C221C;
  font-weight: 600;
}

.ticker-item .coin-symbol {
  font-weight: 800;
  color: #1C1512;
}

.ticker-item .coin-price {
  color: #4A3B31;
}

.price-up {
  color: #15803D !important;
  font-weight: 700;
}

.price-down {
  color: #DC2626 !important;
  font-weight: 700;
}

/* ==========================================================================
   Main Navigation Header (Beige & Light Brown Style)
   ========================================================================== */
.main-header {
  background-color: #F5EEE6;
  border-bottom: 1px solid #DFD2C4;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(50, 35, 25, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.18rem;
  color: #1C1512;
  letter-spacing: -0.025em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.brand-logo svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.brand-logo span.highlight {
  color: #A26938;
}

.brand-tagline {
  display: block;
  font-size: 0.62rem;
  color: #7A6657;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  flex: 1;
}

.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  color: #3D2F25;
  font-weight: 600;
  font-size: 0.865rem;
  padding: 0.45rem 0.15rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  letter-spacing: 0.005em;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.nav-link i {
  font-size: 0.8rem;
  color: #7A6657;
  transition: color var(--transition-fast);
}

.nav-link .dropdown-chevron {
  font-size: 0.6rem;
  margin-left: 0.2rem;
  color: #8A7668;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #A26938;
}

.nav-link:hover i, .nav-link.active i,
.nav-link:hover .dropdown-chevron, .nav-link.active .dropdown-chevron {
  color: #A26938;
}

.nav-item-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #A26938;
  border-radius: 2px;
}

/* Dropdown Sub-Menu (Warm Cream & Light Beige Theme) */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: #FAF6F0;
  border: 1px solid #DFD2C4;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(50, 35, 25, 0.15);
  padding: 0.5rem 0;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 1.15rem;
  color: #2C221C;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-item:hover {
  background: #EFE4D6;
  color: #1C1512;
}

.dropdown-item i {
  font-size: 0.95rem;
  color: #A26938;
  margin-top: 3px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.dropdown-item .item-text {
  display: flex;
  flex-direction: column;
}

.dropdown-item .item-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1C1512;
  line-height: 1.3;
}

.dropdown-item .item-desc {
  font-size: 0.72rem;
  color: #73645A;
  line-height: 1.3;
  margin-top: 2px;
}

.dropdown-item:hover .item-title {
  color: #8B5528;
}

.dropdown-divider {
  height: 1px;
  background: #E5D7C9;
  margin: 0.4rem 0;
}

.btn-search-trigger {
  background: #FAF6F0;
  border: 1px solid #DFD2C4;
  color: #5C4B3E;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.btn-search-trigger:hover {
  border-color: #A26938;
  color: #1C1512;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(162, 105, 56, 0.12);
}

.btn-search-trigger kbd {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  background: #EDE3D7;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #D8C8B8;
  color: #5C4B3E;
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #1C1512;
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1.05rem;
}

.btn-primary {
  background-color: #A26938;
  color: #FFFFFF;
  border: 1px solid #B87D4B;
  box-shadow: 0 2px 8px rgba(162, 105, 56, 0.35);
}

.btn-primary:hover {
  background-color: #8B5528;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(162, 105, 56, 0.45);
}

.btn-secondary {
  background-color: #2C221C;
  color: #E7DFD7;
  border-color: #3D312A;
}

.btn-secondary:hover {
  background-color: #3D312A;
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: #A26938;
  border-color: #A26938;
}

.btn-outline:hover {
  background-color: #A26938;
  color: #FFFFFF;
}

.btn-white {
  background-color: #FFFFFF;
  color: #1C1512;
  border: 1px solid #E7DFD7;
}

.btn-white:hover {
  background-color: #FAF7F2;
  box-shadow: var(--shadow-md);
}



/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #1C1512;
  border-left: 1px solid #2C221C;
  z-index: 9999;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 35px rgba(0,0,0,0.7);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #2C221C;
  padding-bottom: 0.85rem;
  margin-bottom: 0.5rem;
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: #A39387;
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--transition-fast);
}

.mobile-drawer-close:hover {
  color: #FFFFFF;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.drawer-category-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8A7668;
  font-weight: 800;
  margin: 1rem 0 0.4rem;
  padding-left: 0.5rem;
  border-left: 2px solid #A26938;
}

.mobile-nav-list a {
  color: #D8CCC0;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  background: rgba(162, 105, 56, 0.15);
  color: #D4A373;
}

.mobile-nav-list a i {
  width: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: #A26938;
}

/* ==========================================================================
   Hero Section (Warm Medium Mocha / Roasted Sand Tone)
   ========================================================================== */
.hero-section {
  background: linear-gradient(180deg, #EDE2D3 0%, #DBCBBA 100%);
  color: #140D0A;
  padding: 2.5rem 0 2.25rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #C8B6A2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #DFD0C0;
  border: 1px solid #C4B29E;
  color: #613816;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
  color: #140D0A;
}

.hero-title .gradient-text {
  background: linear-gradient(90deg, #8B4A1A 0%, #B86E36 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 0.95rem;
  color: #382B22;
  line-height: 1.6;
  margin-bottom: 1.35rem;
  max-width: 540px;
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid #C8B6A2;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #382B22;
  font-size: 0.78rem;
  font-weight: 700;
}

.trust-item i {
  color: #8B4A1A;
  font-size: 0.85rem;
}

.hero-card-preview {
  background: #FFFFFF;
  border: 1px solid #C8B6A2;
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 14px 35px rgba(45, 30, 20, 0.12);
  max-width: 420px;
  margin-left: auto;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #EAE0D3;
}

.hero-card-title-group {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-card-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: #140D0A;
}

.market-status-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

@keyframes priceFlashGreen {
  0% { color: #16A34A; transform: scale(1.04); }
  100% { color: #140D0A; transform: scale(1); }
}

@keyframes priceFlashRed {
  0% { color: #DC2626; transform: scale(1.04); }
  100% { color: #140D0A; transform: scale(1); }
}

.price-flash-up {
  animation: priceFlashGreen 0.75s ease-out;
}

.price-flash-down {
  animation: priceFlashRed 0.75s ease-out;
}

.hero-card-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.hero-card-sublabel {
  font-size: 0.72rem;
  color: #6B5B50;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
  font-weight: 700;
}

.hero-card-price {
  font-size: 1.55rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #140D0A;
  line-height: 1.1;
}

.hero-card-change {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.price-badge-sm {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  background: #ECFDF5;
  color: #15803D !important;
  border: 1px solid #BBF7D0;
}

.hero-card-momentum {
  font-size: 0.68rem;
  color: #6B5B50;
  font-weight: 600;
}

.hero-card-levels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  background: #F7EFE6;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  border: 1px solid #EAE0D3;
}

.hero-level-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-level-item .level-lbl {
  font-size: 0.68rem;
  color: #6B5B50;
  font-weight: 700;
}

.hero-level-item .level-val {
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.hero-level-item .level-val.resistance {
  color: #DC2626;
  font-weight: 700;
}

.hero-level-item .level-val.support {
  color: #16A34A;
  font-weight: 700;
}

.hero-card-note {
  font-size: 0.72rem;
  color: #382B22;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  background: #F7EFE6;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  border-left: 3px solid #8B4A1A;
}

.hero-card-note strong {
  color: #140D0A;
}

/* ==========================================================================
   Page Banners (Inner Pages Warm Light Header Banner)
   ========================================================================== */
.page-banner {
  background: linear-gradient(180deg, #EDE2D3 0%, #DBCBBA 100%);
  color: #140D0A;
  padding: 2.25rem 0 2rem;
  border-bottom: 1px solid #C8B6A2;
}

.page-banner h1 {
  color: #140D0A !important;
}

.page-banner p {
  color: #382B22 !important;
}

/* ==========================================================================
   Section Headers & Common Layout (Light Cream Backgrounds)
   ========================================================================== */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background-color: #FFFFFF;
}

.section-header {
  margin-bottom: 2.75rem;
}

.section-header.text-center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: #A26938;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: #1C1512;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: #73645A;
  line-height: 1.65;
}

/* ==========================================================================
   Automated Daily Forecast Grid & Cards
   ========================================================================== */
.forecast-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-pill.active, .filter-pill:hover {
  background: #1C1512;
  color: #FFFFFF;
  border-color: #1C1512;
}

.forecast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}

.forecast-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.forecast-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-primary);
}

.forecast-card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FBF9F5;
}

.coin-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.coin-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #FFFFFF;
}

.coin-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1C1512;
}

.coin-sub {
  font-size: 0.75rem;
  color: #73645A;
  text-transform: uppercase;
  font-weight: 600;
}

.sentiment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sentiment-bullish {
  background-color: var(--emerald-bg);
  color: #15803D;
  border: 1px solid var(--emerald-border);
}

.sentiment-bearish {
  background-color: var(--crimson-bg);
  color: #DC2626;
  border: 1px solid var(--crimson-border);
}

.sentiment-neutral {
  background-color: var(--amber-bg);
  color: #B45309;
  border: 1px solid var(--amber-border);
}

.forecast-card-body {
  padding: 1.5rem;
  flex: 1;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.current-price {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #1C1512;
}

.price-change-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.price-change-badge.positive {
  background-color: #F0FDF4;
  color: #15803D;
}

.price-change-badge.negative {
  background-color: #FEF2F2;
  color: #DC2626;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  background: var(--bg-card-subtle);
  padding: 0.875rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.metric-val {
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text-main);
}

.levels-section {
  margin-bottom: 1.25rem;
}

.levels-header {
  font-size: 0.75rem;
  font-weight: 700;
  color: #73645A;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.levels-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-family: var(--font-mono);
}

.support-box {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #14532D;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
}

.resistance-box {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
}

.algorithmic-summary {
  font-size: 0.85rem;
  color: #4A3E39;
  line-height: 1.55;
  padding: 0.75rem;
  background: #FAF7F2;
  border-left: 3px solid var(--brand-primary);
  border-radius: 0 4px 4px 0;
  margin-bottom: 1.25rem;
}

.card-disclaimer-box {
  font-size: 0.7rem;
  color: #8C7B70;
  line-height: 1.4;
  border-top: 1px solid var(--border-light);
  padding: 0.75rem 1.5rem;
  background: #FBF9F5;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.card-disclaimer-box i {
  color: #C68B59;
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ==========================================================================
   Article Grid & Cards (Blog Directory)
   ========================================================================== */
.article-categories-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.cat-tab {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #73645A;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.cat-tab.active, .cat-tab:hover {
  color: #A26938;
  border-color: #A26938;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.article-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary);
}

.article-card-thumb {
  height: 95px;
  background: linear-gradient(135deg, #1C1512 0%, #2C221C 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-card-thumb svg {
  width: 44px;
  height: 44px;
  opacity: 0.9;
  transition: transform var(--transition-slow);
}

.article-card:hover .article-card-thumb svg {
  transform: scale(1.1);
}

.article-category-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.65rem;
  background: rgba(162, 105, 56, 0.9);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.article-card-content {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  color: #8C7B70;
  margin-bottom: 0.5rem;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.article-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1C1512;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.article-card:hover .article-card-title {
  color: var(--brand-primary);
}

.article-excerpt {
  font-size: 0.8125rem;
  color: #73645A;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.78rem;
}

.author-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #3D312A;
}

.author-avatar-sm {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F4EFEA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A26938;
  font-size: 0.7rem;
  border: 1px solid #D8CCC0;
}

.read-more-link {
  color: var(--brand-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
}

.read-more-link:hover {
  color: var(--brand-hover);
}

/* ==========================================================================
   Article Detail & Reader Page (High E-E-A-T Retention)
   ========================================================================== */
.article-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #A26938, #D4A373);
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease-out;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  padding: 2.5rem 0;
}

.article-main-content {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #73645A;
  margin-bottom: 1.25rem;
}

.article-breadcrumb a:hover {
  color: var(--brand-primary);
}

.article-hero-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1C1512;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.article-eeat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #FAF7F2;
  border: 1px solid #E7DFD7;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.author-credentials-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-photo-md {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1C1512;
  color: #D4A373;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  border: 2px solid #A26938;
}

.author-info-text .author-name {
  font-weight: 700;
  color: #1C1512;
  font-size: 0.9rem;
}

.author-info-text .author-title {
  font-size: 0.75rem;
  color: #73645A;
}

.fact-check-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #15803D;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
}

.article-vector-banner {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #1C1512 0%, #2C221C 100%);
  border-radius: 8px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.article-vector-banner svg {
  max-height: 100%;
  max-width: 100%;
}

.key-takeaways-card {
  background: #FDF9F5;
  border: 1px solid #EFE4DA;
  border-left: 4px solid #A26938;
  padding: 1.5rem 1.75rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}

.key-takeaways-card h4 {
  color: #6D3E1A;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.key-takeaways-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.key-takeaways-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: #3D312A;
  line-height: 1.5;
}

.key-takeaways-card li i {
  color: #A26938;
  margin-top: 4px;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3D312A;
}

.article-body h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #1C1512;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
  letter-spacing: -0.015em;
}

.article-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1C1512;
  margin: 1.75rem 0 0.75rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-body ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
}

.article-body ol li {
  list-style: decimal;
  margin-bottom: 0.5rem;
}

.article-infobox {
  background: #FAF7F2;
  border: 1px solid #E7DFD7;
  border-left: 4px solid var(--brand-primary);
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.article-infobox strong {
  color: #1C1512;
  display: block;
  margin-bottom: 0.35rem;
}

.author-bio-footer {
  margin-top: 3.5rem;
  padding: 2rem;
  background: #FAF7F2;
  border: 1px solid #E7DFD7;
  border-radius: 10px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.author-bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1C1512;
  color: #D4A373;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 3px solid #A26938;
}

.author-bio-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1C1512;
  margin-bottom: 0.25rem;
}

.author-bio-content .author-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #A26938;
  margin-bottom: 0.5rem;
}

.author-bio-content p {
  font-size: 0.875rem;
  color: #73645A;
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

/* Sidebar Widgets */
.sidebar-sticky {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.sidebar-widget {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1C1512;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget-title i {
  color: var(--brand-primary);
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toc-link {
  font-size: 0.85rem;
  color: #73645A;
  line-height: 1.4;
  padding: 0.25rem 0;
  transition: all var(--transition-fast);
  display: block;
}

.toc-link:hover, .toc-link.active {
  color: var(--brand-primary);
  font-weight: 600;
  padding-left: 0.35rem;
}

.related-articles-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-article-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.related-article-item a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2C221C;
  line-height: 1.35;
}

.related-article-item a:hover {
  color: var(--brand-primary);
}

.related-article-meta {
  font-size: 0.72rem;
  color: #A39387;
}

/* ==========================================================================
   Interactive Tools & Financial Calculators
   ========================================================================== */
.calculators-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.calc-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.calc-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.calc-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1C1512;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.calc-header h3 i {
  color: var(--brand-primary);
}

.calc-header p {
  font-size: 0.875rem;
  color: #73645A;
  margin-top: 0.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #3D312A;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.875rem;
  font-size: 0.95rem;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  background-color: #FFFFFF;
  color: #1C1512;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(162, 105, 56, 0.2);
}

.input-with-addon {
  display: flex;
}

.input-addon {
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  background-color: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  border-right: none;
  border-radius: 6px 0 0 6px;
  color: #73645A;
  font-size: 0.9rem;
  font-weight: 600;
}

.input-with-addon .form-control {
  border-radius: 0 6px 6px 0;
}

.calc-result-box {
  background: #FAF7F2;
  border: 1px solid #E7DFD7;
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.calc-result-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #73645A;
  margin-bottom: 0.5rem;
}

.calc-result-value {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #1C1512;
}

.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #E7DFD7;
  font-size: 0.8125rem;
}

/* ==========================================================================
   Analytics Dashboard & Fear/Greed Index
   ========================================================================== */
.analytics-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #73645A;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1C1512;
  font-family: var(--font-mono);
}

.stat-trend {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.fear-greed-meter-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.meter-gauge-wrapper {
  position: relative;
  width: 240px;
  height: 120px;
  margin: 1.5rem auto 1rem;
}

.meter-score-display {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #1C1512;
}

.meter-status-text {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   E-E-A-T Authority Showcase (About & Editorial Team)
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary);
}

.team-photo-lg {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #1C1512;
  color: #D4A373;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  border: 4px solid #F4EFEA;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C1512;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #A26938;
  margin-bottom: 0.75rem;
}

.team-credentials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.cred-badge {
  background: #F4EFEA;
  border: 1px solid #E7DFD7;
  color: #4A3E39;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.team-bio {
  font-size: 0.875rem;
  color: #73645A;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  color: #A39387;
  font-size: 1.1rem;
}

.team-socials a:hover {
  color: var(--brand-primary);
}

/* ==========================================================================
   Compliance & Policy Standards Box
   ========================================================================== */
.policy-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.policy-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1C1512;
  margin-bottom: 1rem;
}

.policy-card p {
  color: #4A3E39;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}


/* ==========================================================================
   Footer Structure (Rich Espresso & Warm Tan)
   ========================================================================== */
.main-footer {
  background-color: #140E0C;
  color: #A39387;
  padding-top: 4.5rem;
  border-top: 1px solid #2C221C;
  margin-top: auto;
}

.main-footer .brand-logo {
  color: #FFFFFF !important;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.main-footer .brand-logo span.highlight {
  color: #D4A373 !important;
}

.main-footer .brand-tagline {
  color: #A39387;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-desc {
  font-size: 0.875rem;
  color: #A39387;
  line-height: 1.65;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.footer-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #D8CCC0;
}

.footer-trust-badge i {
  color: var(--brand-accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #A39387;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5mm;
  transition: color var(--transition-fast);
}

.footer-links a i {
  color: #F59E0B;
  font-size: 0.72rem;
  margin-right: 0.5mm;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links a:hover {
  color: #D4A373;
  padding-left: 2px;
}

.footer-links a:hover i {
  color: #FCD34D;
  transform: translateX(1.5px);
}

.footer-bottom-disclaimer {
  background-color: #0E0A08;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid #2C221C;
}

.disclaimer-text {
  font-size: 0.75rem;
  color: #73645A;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  text-align: justify;
}

.disclaimer-text strong {
  color: #A39387;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid #2C221C;
  font-size: 0.8125rem;
  color: #73645A;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 1.25rem;
  font-size: 1.1rem;
}

.social-links a {
  color: #A39387;
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: #D4A373;
}

/* ==========================================================================
   Modals, Search & Cookie Consent
   ========================================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 580px;
  background: #1C1512;
  border: 1px solid #3D312A;
  color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-xl);
  z-index: 999;
  display: none;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-consent-content p {
  font-size: 0.8125rem;
  color: #A39387;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

/* Search Modal */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(28, 21, 18, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 1.5rem;
}

.search-modal.active {
  display: flex;
}

.search-dialog {
  background: #FFFFFF;
  border-radius: 12px;
  width: 100%;
  max-width: 640px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.search-input-wrapper {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.search-input-wrapper i {
  color: #A39387;
  font-size: 1.2rem;
}

.search-input {
  border: none;
  font-size: 1.1rem;
  width: 100%;
  outline: none;
  color: #1C1512;
}

.search-results {
  max-height: 380px;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-result-item {
  padding: 0.75rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  transition: background var(--transition-fast);
}

.search-result-item:hover {
  background: #F4EFEA;
}

.search-result-item .res-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1C1512;
}

/* ==========================================================================
   Newsletter Subscription Banner (Light Warm Cream Theme)
   ========================================================================== */
.newsletter-section {
  background: linear-gradient(180deg, #FAF6F0 0%, #EDE3D7 100%);
  color: #1C1512;
  border-top: 1px solid #DFD2C4;
  border-bottom: 1px solid #DFD2C4;
  padding: 3.5rem 0;
}

.newsletter-section h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1C1512;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.newsletter-section p {
  color: #5C4B3E;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.newsletter-input {
  flex: 1;
  min-width: 260px;
  background: #FFFFFF !important;
  border: 1.5px solid #D8C8B8 !important;
  color: #1C1512 !important;
  border-radius: 8px;
  padding: 0.75rem 1.15rem;
  font-size: 0.9rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

.newsletter-input:focus {
  border-color: #A26938 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(162, 105, 56, 0.15) !important;
}

.newsletter-disclaimer {
  font-size: 0.75rem;
  color: #7A6657;
  margin-top: 0.85rem;
}

.newsletter-disclaimer a {
  color: #A26938;
  font-weight: 600;
  text-decoration: underline;
}

.search-result-item .res-cat {
  font-size: 0.72rem;
  color: #A26938;
  font-weight: 600;
  text-transform: uppercase;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .sidebar-sticky {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .analytics-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calculators-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .forecast-grid, .articles-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .analytics-stats-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .article-main-content {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   Live Navigation Badges & Ticker Pulses
   ========================================================================== */
.nav-pill-live {
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  background: #10B981;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  margin-left: 0.35rem;
  vertical-align: middle;
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.price-tick-up {
  color: #10B981 !important;
  transition: color 0.15s ease;
}

.price-tick-down {
  color: #EF4444 !important;
  transition: color 0.15s ease;
}

/* ==========================================================================
   Live Crypto Signals Grid & Cards
   ========================================================================== */
.signals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.signal-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.signal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #A26938;
}

.signal-card-header {
  padding: 1.25rem 1.5rem;
  background: #FAF7F2;
  border-bottom: 1px solid #E7DFD7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.signal-coin-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.signal-coin-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: var(--shadow-xs);
}

.signal-action-badge {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.signal-strong-buy {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.signal-buy {
  background: #F0FDF4;
  color: #15803D;
  border: 1px solid #BBF7D0;
}

.signal-caution {
  background: #FFFBEB;
  color: #92400E;
  border: 1px solid #FDE68A;
}

.signal-neutral {
  background: #F1F5F9;
  color: #334155;
  border: 1px solid #CBD5E1;
}

.signal-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.signal-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.signal-spot-val {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #1C1512;
}

.signal-targets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.signal-target-box {
  background: #FAF7F2;
  border: 1px solid #E7DFD7;
  border-radius: 6px;
  padding: 0.65rem;
  text-align: center;
}

.signal-target-lbl {
  font-size: 0.68rem;
  color: #73645A;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}

.signal-target-val {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

.signal-target-val.target-green {
  color: #15803D;
}

.signal-target-val.target-red {
  color: #991B1B;
}

.signal-confidence-wrapper {
  margin-bottom: 1.25rem;
}

.signal-conf-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4A3E39;
  margin-bottom: 0.35rem;
}

.signal-conf-bar {
  height: 6px;
  background: #E2E8F0;
  border-radius: 3px;
  overflow: hidden;
}

.signal-conf-fill {
  height: 100%;
  background: linear-gradient(90deg, #A26938, #10B981);
  border-radius: 3px;
}

.signal-rationale-box {
  background: #FDFBF7;
  border-left: 3px solid #A26938;
  padding: 0.75rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.8125rem;
  color: #4A3E39;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.signal-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: #73645A;
}

.signal-disclaimer-card {
  background: #FAF7F2;
  border: 1px solid #E7DFD7;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  font-size: 0.8125rem;
  color: #73645A;
  line-height: 1.6;
}

