:root {
  /* Global Investment Theme - Mundo Inversiones */
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #38bdf8;
  --secondary: #64748b;
  --accent: #f59e0b;
  --fg: #0f172a;
  --fg-muted: #475569;
  --bg: #ffffff;
  --bg-secondary: #f0f9ff;
  --bg-tertiary: #e0f2fe;
  --card: #ffffff;
  --border: #bae6fd;
  --border-light: #e0f2fe;
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --gradient: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  --gradient-secondary: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  --global-gradient: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 50%, #7dd3fc 100%);
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
}

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

.container-full {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: var(--spacing-md) 0;
  width: 100%;
  margin: 0;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.brand-icon {
  font-size: 1.5rem;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.nav-dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-sm);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: var(--bg-secondary);
}

.search-box {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: var(--spacing-sm) var(--spacing-md);
  gap: var(--spacing-sm);
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.9rem;
  width: 200px;
}

.search-box input::placeholder {
  color: var(--fg-muted);
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--fg);
}

/* Hero Section */
.hero {
  background: var(--global-gradient);
  color: white;
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-globe {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: rotateGlobe 20s linear infinite;
}

.hero-globe::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-globe::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-markets {
  position: absolute;
  top: 20%;
  right: 20%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.market-indicator {
  font-size: 2rem;
  animation: floatMarket 3s ease-in-out infinite;
}

.market-indicator:nth-child(1) { animation-delay: 0s; }
.market-indicator:nth-child(2) { animation-delay: 0.5s; }
.market-indicator:nth-child(3) { animation-delay: 1s; }
.market-indicator:nth-child(4) { animation-delay: 1.5s; }

@keyframes rotateGlobe {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes floatMarket {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.hero-main {
  text-align: left;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  position: relative;
  overflow: hidden;
}

.badge-icon {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-pulse {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(255,255,255,0.3), transparent, rgba(255,255,255,0.3));
  border-radius: var(--radius-xl);
  opacity: 0;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0 0 var(--spacing-lg);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.title-word {
  display: inline-block;
  animation: wordSlideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateX(-30px);
  margin-right: var(--spacing-sm);
}

.title-word:nth-child(1) { animation-delay: 0.2s; }
.title-word:nth-child(2) { animation-delay: 0.4s; }
.title-word:nth-child(3) { animation-delay: 0.6s; }

.title-word.highlight {
  background: linear-gradient(45deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-word.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.8), transparent);
  border-radius: 2px;
}

@keyframes wordSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin: 0 0 var(--spacing-2xl);
  opacity: 0.9;
  line-height: 1.6;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin: var(--spacing-2xl) 0;
}

.metric-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.metric-card:hover::before {
  left: 100%;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.metric-icon {
  font-size: 2rem;
  opacity: 0.8;
}

.metric-content {
  flex: 1;
}

.metric-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: var(--spacing-xs);
}

.metric-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

.metric-trend {
  font-size: 1.5rem;
  color: #22c55e;
  animation: trendPulse 2s ease-in-out infinite;
}

@keyframes trendPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
}

.global-dashboard {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.global-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.05), transparent, rgba(255,255,255,0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.global-dashboard:hover::before {
  opacity: 1;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.dashboard-icon {
  font-size: 1.2rem;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.market-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: all 0.3s ease;
}

.market-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.market-flag {
  font-size: 1.5rem;
}

.market-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.market-name {
  font-size: 0.8rem;
  opacity: 0.8;
  color: white;
}

.market-value {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.market-change {
  font-size: 0.9rem;
  font-weight: 600;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
}

.market-change.positive {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.2);
}

.market-change.negative {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.2);
}

.dashboard-summary {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.summary-item {
  text-align: center;
}

.summary-label {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
  color: white;
  margin-bottom: var(--spacing-xs);
}

.summary-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

/* Main Content */
.main-content {
  padding: var(--spacing-3xl) 0;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: var(--spacing-md);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Article Section */
.featured-article-section {
  margin-bottom: var(--spacing-3xl);
}

.featured-article {
  background: var(--card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-2xl);
  transition: all 0.3s ease;
}

.featured-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.featured-content {
  padding: var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: var(--bg-tertiary);
  color: var(--primary);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  width: fit-content;
}

.featured-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.featured-excerpt {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.featured-paragraph {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

/* Additional Information Section */
.additional-info-section {
  margin-bottom: var(--spacing-3xl);
}

.info-block {
  background: var(--card);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.info-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: inline-block;
}

.info-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: var(--spacing-sm);
}

.info-header p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

.info-item {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.info-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-md);
}

.info-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: var(--spacing-sm);
}

.info-item p {
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.info-metrics {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.info-metrics .metric {
  background: var(--primary-light);
  color: var(--primary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
}

.info-insights {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid var(--border);
}

.info-insights h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.insights-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.insight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.insight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.insight-content {
  flex: 1;
}

.insight-content strong {
  color: var(--fg);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .info-header h3 {
    font-size: 1.5rem;
  }
  
  .insights-list {
    gap: var(--spacing-md);
  }
  
  .insight-item {
    flex-direction: column;
    text-align: center;
  }
}

.featured-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.meta-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.meta-value {
  font-size: 1rem;
  color: var(--fg);
  font-weight: 600;
}

.featured-stats {
  display: flex;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.featured-cta {
  margin-top: auto;
}

.featured-visual {
  position: relative;
  overflow: hidden;
}

.featured-image {
  height: 100%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.featured-image .image-placeholder {
  font-size: 8rem;
  opacity: 0.6;
}

.image-overlay {
  position: absolute;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  right: var(--spacing-lg);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  color: white;
}

.overlay-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: var(--spacing-xs);
}

.overlay-text {
  font-size: 1rem;
  font-weight: 600;
}

/* Related Articles Section */
.related-articles-section {
  margin-bottom: var(--spacing-3xl);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.related-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.related-image {
  height: 120px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-image .image-placeholder {
  font-size: 2.5rem;
  opacity: 0.6;
}

.related-content {
  padding: var(--spacing-lg);
}

.related-category {
  display: inline-block;
  background: var(--bg-tertiary);
  color: var(--primary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.related-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.related-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
}

.related-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.related-author {
  font-weight: 500;
}

.related-date {
  opacity: 0.8;
}

/* Analysis Section */
.analysis-section {
  margin-bottom: var(--spacing-3xl);
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.analysis-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.analysis-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.analysis-card.featured {
  grid-column: span 2;
}

.card-image {
  height: 200px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.analysis-card.featured .card-image {
  height: 250px;
}

.image-placeholder {
  font-size: 4rem;
  opacity: 0.6;
}

.card-content {
  padding: var(--spacing-xl);
}

.card-category {
  display: inline-block;
  background: var(--bg-tertiary);
  color: var(--primary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.card-content p {
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.card-meta {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.card-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: var(--primary-dark);
}

/* Markets Section */
.markets-section {
  background: var(--bg-secondary);
  padding: var(--spacing-3xl) 0;
  margin-bottom: var(--spacing-3xl);
}

.markets-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.market-region {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.market-region:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.region-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.region-icon {
  font-size: 2rem;
}

.region-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}

.region-stats {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--border-light);
}

.stat:last-child {
  border-bottom: none;
}

.stat-label {
  color: var(--fg-muted);
  font-weight: 500;
}

.stat-value {
  color: var(--primary);
  font-weight: 700;
}

/* CTA Section */
.cta-section {
  background: var(--global-gradient);
  color: white;
  padding: var(--spacing-3xl);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: var(--spacing-sm);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover .btn-shine {
  left: 100%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.footer-brand .brand-icon {
  font-size: 1.5rem;
}

.footer-brand .brand-text {
  font-size: 1.3rem;
  font-weight: 800;
}

.footer-section h4 {
  margin: 0 0 var(--spacing-md);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-section p {
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: var(--spacing-sm);
}

.footer-section a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-newsletter input {
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.footer-newsletter .btn {
  font-size: 0.9rem;
  padding: var(--spacing-sm) var(--spacing-md);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-article {
    grid-template-columns: 1fr;
  }
  
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .analysis-grid {
    grid-template-columns: 1fr;
  }
  
  .analysis-card.featured {
    grid-column: span 1;
  }
  
  .markets-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .header-content {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .search-box input {
    width: 200px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav {
    display: none;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) 0;
  }
  
  .nav.active {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
    padding: 0 var(--spacing-md);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .global-dashboard {
    max-width: 100%;
    margin-top: var(--spacing-xl);
  }
  
  .markets-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .featured-title {
    font-size: 2rem;
  }
  
  .featured-meta {
    grid-template-columns: 1fr;
  }
  
  .featured-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}