/* ============================================
   TAKA Alliance UK - Corporate Stylesheet
   Brand Authority & Trust Reference Hub
   Version: 1.0.0
   ============================================ */

/* CSS Custom Properties - 2026 Dark Elegance Theme */
:root {
  /* Primary Colours - Rich Green */
  --primary: #006d32;
  --primary-light: #00a650;
  --primary-dark: #004d23;

  /* Secondary Colours - Deep Black-Green */
  --secondary: #1f2937;
  --secondary-light: #374151;

  /* Accent - Vibrant Gold */
  --accent: #1a1a2e;
  --accent-light: #2d2d44;
  --accent-hover: #000000;

  /* Neutrals - Dark Theme */
  --background: #ffffff;
  --background-alt: #f8f9fa;
  --surface: #ffffff;
  --surface-elevated: #f8f9fa;
  --border: #e5e7eb;
  --border-light: #f3f4f6;

  /* Text - 2026 Elegant White Theme */
  --text: #1a1a2e;
  --text-secondary: #4a5568;
  --text-muted: #64748b;
  --text-light: rgba(0, 0, 0, 0.6);

  /* Gradient Colors */
  --gradient-green: linear-gradient(135deg, #006d32 0%, #00a650 100%);
  --gradient-dark: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-bengali: 'Noto Sans Bengali', 'Kalpurush', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1600px;
  --max-width-content: 1200px;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
}

/* Reset & Base */
*,
*::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-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a2e;
  background-color: var(--background);
}

/* Bengali Language Support */
html[lang="bn"] body,
.lang-bn {
  font-family: var(--font-bengali), var(--font-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a2e !important;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
  color: #1a1a2e;
}

h3 {
  font-size: 1.5rem;
  color: #1a1a2e;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

a {
  color: #1a1a2e;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-light);
}

ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

li {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

strong {
  font-weight: 600;
  color: #1a1a2e !important;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: var(--max-width-content);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--gradient-green);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(13, 110, 63, 0.4);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e !important;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #f1f3f5;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-links a:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
  color: var(--primary-dark);
  background-color: #1a1a2e;
  font-weight: 600;
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

.lang-switch a {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  color: #e9ecef;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.lang-switch a:hover {
  color: #ffffff;
}

.lang-switch a.active {
  background-color: #1a1a2e;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

/* Flag Dropdown Language Switcher (upgraded from .lang-switch) */
.lang-switcher { position: relative; }
.lang-switcher-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px; padding: 6px 12px; color: #fff; cursor: pointer;
  font-size: 0.8125rem; font-weight: 600; font-family: inherit; transition: background 0.2s;
}
.lang-switcher-btn:hover { background: rgba(255,255,255,0.25); }
.lang-switcher-btn .dropdown-arrow { width: 12px; height: 12px; transition: transform 0.2s; }
.lang-switcher.open .dropdown-arrow { transform: rotate(180deg); }
.lang-flag { width: 20px; height: 14px; border-radius: 2px; flex-shrink: 0; display: inline-block; }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  min-width: 180px; overflow: hidden; z-index: 1000;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  text-decoration: none; color: #1a1a2e; font-size: 0.875rem; font-weight: 500;
  transition: background 0.15s;
}
.lang-option:hover { background: #f1f5f9; }
.lang-option.active { background: #f0fdf4; color: #006d32; }
.lang-option.active::after { content: '✓'; margin-left: auto; font-weight: 700; color: #006d32; }
.lang-option-name { display: flex; flex-direction: column; line-height: 1.3; }
.lang-option-name span:first-child { font-weight: 600; font-size: 0.875rem; }
.lang-option-name span:last-child { font-size: 0.75rem; color: #64748b; font-weight: 400; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1a1a2e !important;
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */
.breadcrumb {
  background: linear-gradient(135deg, rgba(13, 110, 63, 0.15) 0%, rgba(16, 168, 94, 0.08) 100%);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(16, 168, 94, 0.2);
  position: relative;
}

.breadcrumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 168, 94, 0.3), transparent);
}

.breadcrumb .container {
  display: flex;
  align-items: center;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
  padding: var(--space-xs) var(--space-md);
  margin: 0;
  font-size: 0.8rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.breadcrumb-item a:hover {
  color: #1a1a2e;
  background: rgba(16, 168, 94, 0.15);
}

.breadcrumb-item a svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}

.breadcrumb-item.active {
  color: #1a1a2e;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(16, 168, 94, 0.1);
  border-radius: var(--radius-sm);
}

.breadcrumb-separator {
  color: var(--text-muted);
  font-size: 0.7rem;
  opacity: 0.5;
  display: flex;
  align-items: center;
}

.breadcrumb-separator svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-muted);
  opacity: 0.6;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--background);
  color: #1a1a2e !important;
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(13, 110, 63, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(16, 168, 94, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #1a1a2e !important;
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffc107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-green);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(13, 110, 63, 0.3);
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

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

.hero-content h1 {
  text-align: left;
}

.hero-content .hero-subtitle {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.hero-description {
  margin-top: var(--space-lg);
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.hero-description p {
  margin-bottom: var(--space-md);
}

.hero-description p:last-child {
  margin-bottom: 0;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-green);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(13, 110, 63, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 63, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #1a1a2e !important;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--primary-light);
  color: var(--primary-light);
}

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

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FEATURED BANNERS GRID
   ============================================ */
.featured-banners {
  padding: var(--space-3xl) 0;
  background-color: var(--background);
}

.banners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.banner-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.banner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.banner-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .banners-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .featured-banners {
    padding: var(--space-2xl) 0;
  }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--space-4xl) 0;
  background-color: var(--background);
  position: relative;
}

.section-alt {
  background-color: var(--background-alt);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(13, 110, 63, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Left-aligned Section Header (for grid layouts) */
.section-header-left {
  text-align: left;
  margin-bottom: var(--space-2xl);
}

.section-header-left h2 {
  font-size: 2.25rem;
  margin-bottom: var(--space-md);
}

.section-header-left p {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.section-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Section Grid Layout (Text + Image) */
.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
  margin-bottom: var(--space-xl);
}

.section-grid .section-content {
  max-width: none;
  margin: 0;
  padding: 0;
}

.section-grid .section-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.section-grid .content-block {
  margin-bottom: var(--space-2xl);
}

.section-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: var(--space-md);
}

.section-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Section Grid Reverse (Image Left, Text Right) */
.section-grid-reverse {
  grid-template-columns: 1fr 1.2fr;
}

.section-text {
  max-width: none;
  margin: 0;
}

.section-text .content-block {
  margin-bottom: var(--space-2xl);
}

.section-text .content-block:last-child {
  margin-bottom: 0;
}

.section-text .section-header-left {
  margin-bottom: var(--space-xl);
}

.section-text .section-header-left h2 {
  font-size: 2rem;
  line-height: 1.3;
}

.section-text .section-header-left p {
  font-size: 1rem;
  max-width: none;
}

@media (max-width: 992px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .section-grid-reverse {
    grid-template-columns: 1fr;
  }

  .section-image {
    order: -1;
  }
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.content-block {
  margin-bottom: var(--space-3xl);
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h3 {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--border);
  text-align: center;
}

.content-block h2 {
  display: inline-block;
  position: relative;
}

.content-block h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-green);
  border-radius: 2px;
}

/* Center content in non-grid sections */
.section-content > .content-block h2 {
  text-align: center;
  display: block;
}

.section-content > .content-block h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-content > .content-block h3 {
  text-align: center;
}

/* Override for grid layouts - keep left aligned */
.section-grid .content-block h3 {
  text-align: left;
}

.section-grid .content-block {
  text-align: left;
}


.section-grid .content-block h2::after {
  left: 0;
  transform: none;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.feature-grid-left {
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--space-xl);
  gap: var(--space-md);
}

.feature-grid-left .feature-card {
  padding: var(--space-md);
}

.feature-grid-left .feature-card h4 {
  font-size: 0.95rem;
}

.feature-grid-left .feature-card p {
  font-size: 0.875rem;
  line-height: 1.5;
}

.feature-card {
  background: var(--gradient-card);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-green);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(13, 110, 63, 0.2);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(13, 110, 63, 0.25);
}

.feature-card h4 {
  margin-bottom: var(--space-sm);
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, rgba(13, 110, 63, 0.15) 0%, rgba(16, 168, 94, 0.08) 100%);
  padding: var(--space-xl) var(--space-2xl);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-light);
  margin: var(--space-xl) 0;
  backdrop-filter: blur(10px);
}

.info-box h4 {
  margin-bottom: var(--space-sm);
  color: var(--primary-light);
  font-size: 1.125rem;
}

.info-box p {
  font-size: 1rem;
  line-height: 1.7;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.section-grid .info-box {
  margin-top: var(--space-xl);
  margin-bottom: 0;
}

/* Platform List */
.platform-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--space-md);
  list-style: none;
  padding: 0;
  margin: var(--space-xl) 0;
}

.platform-list li {
  background: var(--gradient-card);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  color: #1a1a2e !important;
  margin-bottom: 0;
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.platform-list li:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(13, 110, 63, 0.2) 0%, rgba(16, 168, 94, 0.1) 100%);
  transform: scale(1.02);
}

/* Principles List */
.principles-list {
  list-style: none;
  padding: 0;
  margin: var(--space-xl) 0;
}

.principles-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.principles-list li:hover {
  border-color: var(--primary);
  transform: translateX(8px);
}

.principles-list li:last-child {
  margin-bottom: 0;
}

.principle-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 10px rgba(13, 110, 63, 0.3);
}

.principle-icon svg {
  width: 16px;
  height: 16px;
  color: white;
}

.principle-content h4 {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.principle-content p {
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(13, 110, 63, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  gap: var(--space-md);
}

.faq-question h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a1a2e !important;
  margin: 0;
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.faq-answer p + p {
  margin-top: var(--space-sm);
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */
.disclaimer {
  background: linear-gradient(180deg, var(--background-alt) 0%, var(--background) 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--space-3xl) 0;
  position: relative;
}

.disclaimer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.disclaimer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.disclaimer h2 {
  color: #1a1a2e !important;
  margin-bottom: var(--space-lg);
  text-align: center;
  width: 100%;
}

.disclaimer p {
  color: var(--text-secondary);
  max-width: 800px;
  width: 100%;
  text-align: left;
}

.disclaimer ul {
  max-width: 800px;
  width: 100%;
  margin-bottom: var(--space-md);
  text-align: left;
  padding-left: var(--space-2xl);
  list-style-position: outside;
}

.disclaimer li {
  padding-left: var(--space-sm);
}

.disclaimer-highlight {
  background: linear-gradient(135deg, rgba(13, 110, 63, 0.2) 0%, rgba(16, 168, 94, 0.1) 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-xl) 0;
  border-left: 4px solid var(--primary-light);
  max-width: 800px;
  width: 100%;
}

.disclaimer-highlight p {
  margin-bottom: 0;
  font-weight: 500;
  margin-left: 0;
  margin-right: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #e9ecef;
  padding: var(--space-3xl) 0 var(--space-xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-green);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  color: #dee2e6;
  font-size: 0.9375rem;
  max-width: 500px;
}

.footer-nav h5 {
  color: #ffffff;
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-nav li {
  margin-bottom: var(--space-sm);
}

.footer-nav a {
  color: #dee2e6;
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--background);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
}

.footer-bottom p {
  margin-bottom: 0;
  color: #ced4da;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .feature-grid-left {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: var(--space-3xl) 0;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .hero-content {
    text-align: center;
    order: 1;
  }

  .hero-content h1,
  .hero-content .hero-subtitle {
    text-align: center;
  }

  .hero-image {
    order: 2;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid-left {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  /* Mobile Navigation */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    flex-direction: column;
    padding: var(--space-md);
    border-bottom: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 0;
  }

  .nav-links a {
    display: block;
    padding: var(--space-md);
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover,
  .nav-links a.active {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: block;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero h1 {
    font-size: 1.875rem;
  }

  .hero-subtitle {
    font-size: 1.0625rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .platform-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .lang-switch {
    display: none;
  }

  body {
    background: white;
    color: #1a202c;
  }

  .hero {
    background: none;
    color: #1a202c;
    padding: var(--space-xl) 0;
  }

  .hero h1 {
    color: #004d23;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #004d23;
  }

  p, li {
    color: #2d3748;
  }

  .section {
    padding: var(--space-xl) 0;
  }
}

/* ============================================
   Editorial / News Hub Styles
   Platform Documentation Hub
   ============================================ */

/* Editorial Header */
.editorial-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.editorial-label {
  display: inline-block;
  background: var(--gradient-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

/* Editorial Notice */
.editorial-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.editorial-notice svg {
  flex-shrink: 0;
  color: var(--primary-light);
  margin-top: 2px;
}

.editorial-notice p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-light);
}

.editorial-notice strong {
  color: #1a1a2e !important;
}

/* Articles Header */
.articles-header {
  margin-bottom: var(--space-2xl);
}

.articles-header h2 {
  color: #1a1a2e;
  margin-bottom: var(--space-sm);
}

.articles-header p {
  color: var(--text-light);
  margin: 0;
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* Article Card */
.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Article Meta */
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  font-size: 0.75rem;
}

.article-category {
  background: rgba(13, 110, 63, 0.2);
  color: var(--primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-date {
  color: var(--text-muted);
  opacity: 0.7;
}

/* Article Title */
.article-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a2e !important;
  line-height: 1.4;
  margin-bottom: var(--space-md);
  transition: color var(--transition-fast);
}

.article-card:hover .article-title {
  color: #1a1a2e;
}

/* Article Excerpt */
.article-excerpt {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

/* Article Footer */
.article-footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.article-tag {
  font-size: 0.6875rem;
  color: var(--text-muted);
  background: var(--background);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Editorial Content */
.editorial-content {
  max-width: 1000px;
  margin: 0 auto;
}

.editorial-content h2 {
  color: #1a1a2e;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.editorial-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}

.editorial-column h4 {
  color: #1a1a2e !important;
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
}

.editorial-column p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.editorial-column p:last-child {
  margin-bottom: 0;
}

/* Disclaimer Box */
.disclaimer-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid #c53030;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box h3 {
  color: #fc8181;
  margin-bottom: var(--space-lg);
  font-size: 1.25rem;
}

.disclaimer-box p {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.disclaimer-box li {
  color: var(--text-light);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
}

.disclaimer-box li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #fc8181;
  font-weight: bold;
}

/* Related Resources */
.related-resources {
  text-align: center;
}

.related-resources h2 {
  color: #1a1a2e;
  margin-bottom: var(--space-sm);
}

.related-resources > p {
  color: var(--text-light);
  margin-bottom: var(--space-2xl);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

.resource-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.resource-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.resource-card h4 {
  color: #1a1a2e;
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.resource-card p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   MOSTDOMAIN-STYLE BLOG LAYOUT
   Featured Hero + Thumbnail Article Cards
   ============================================ */

/* Featured Hero Article */
.featured-article {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  margin-bottom: var(--space-3xl);
}

.featured-article-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.featured-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.featured-article:hover .featured-article-image img {
  transform: scale(1.03);
}

.featured-article-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 13, 0) 0%,
    rgba(10, 15, 13, 0.4) 40%,
    rgba(10, 15, 13, 0.95) 100%
  );
  z-index: 2;
}

.featured-article-content {
  position: relative;
  z-index: 3;
  padding: var(--space-2xl);
  width: 100%;
  max-width: 700px;
}

.featured-article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.featured-category {
  background: var(--gradient-green);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-sm);
}

.featured-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
}

.featured-article-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.featured-article-excerpt {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 600px;
}

/* Blog Grid Layout - Article Cards with Thumbnails */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

/* Blog Card Thumbnail */
.blog-card-thumbnail {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.blog-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.blog-card:hover .blog-card-thumbnail img {
  transform: scale(1.08);
}

.blog-card-category {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--gradient-green);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  z-index: 2;
}

/* Blog Card Content */
.blog-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
  font-size: 0.75rem;
}

.blog-card-date {
  color: var(--text-muted);
  opacity: 0.7;
}

.blog-card-author {
  color: var(--primary-light);
  font-weight: 500;
}

.blog-card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a1a2e !important;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card:hover .blog-card-title {
  color: #1a1a2e;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}

.blog-tag {
  font-size: 0.625rem;
  color: var(--text-muted);
  background: var(--background);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section Heading with Divider */
.section-heading {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.section-heading h2 {
  white-space: nowrap;
  margin-bottom: 0;
}

.section-heading-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* Blog Grid Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-article {
    min-height: 400px;
  }

  .featured-article-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .featured-article {
    min-height: 350px;
  }

  .featured-article-content {
    padding: var(--space-xl);
  }

  .featured-article-title {
    font-size: 1.5rem;
  }

  .featured-article-excerpt {
    font-size: 0.9375rem;
  }

  .blog-card-thumbnail {
    height: 160px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .section-heading-line {
    display: none;
  }
}

/* Editorial Responsive */
@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .editorial-columns {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .editorial-notice {
    flex-direction: column;
    text-align: center;
  }

  .editorial-notice svg {
    margin: 0 auto;
  }

  .article-card {
    padding: var(--space-lg);
  }

  .disclaimer-box {
    padding: var(--space-xl);
  }
}

/* ============================================
   SINGLE ARTICLE PAGE - MOSTDOMAIN STYLE
   Full-width hero with overlay + article body
   ============================================ */

/* Article Hero - Full Width */
.article-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.article-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.article-hero-image img,
.article-hero-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 13, 0) 0%,
    rgba(10, 15, 13, 0.3) 30%,
    rgba(10, 15, 13, 0.85) 70%,
    rgba(10, 15, 13, 0.98) 100%
  );
  z-index: 2;
}

.article-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

/* Article Category Label */
.article-category-label {
  display: inline-block;
  background: var(--gradient-green);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
}

/* Article Title */
.article-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  max-width: 900px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* Article Meta - Author & Date */
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-hero-meta .author {
  font-weight: 600;
  color: #fff;
}

.article-hero-meta .separator {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.article-hero-meta .date {
  color: rgba(255, 255, 255, 0.7);
}

/* Article Body Container */
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

/* Article Lead Paragraph */
.article-lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border);
}

/* Article Content Sections */
.article-content h2 {
  font-size: 1.75rem;
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.article-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article-content h3 {
  font-size: 1.375rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.article-content p {
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
}

.article-content ul,
.article-content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.article-content li {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

/* Article Info Box */
.article-info-box {
  background: linear-gradient(135deg, rgba(13, 110, 63, 0.12) 0%, rgba(16, 168, 94, 0.06) 100%);
  border: 1px solid rgba(16, 168, 94, 0.2);
  border-left: 4px solid var(--primary-light);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.article-info-box h4 {
  color: var(--primary-light);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.article-info-box p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Article Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.article-tags-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: var(--space-sm);
}

.article-tag-link {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--text-light);
  background: var(--surface);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
}

.article-tag-link:hover {
  border-color: var(--primary);
  color: var(--primary-light);
}

/* Article Disclaimer Box */
.article-disclaimer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid #e53e3e;
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin-top: var(--space-3xl);
}

.article-disclaimer h4 {
  color: #fc8181;
  font-size: 1rem;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.article-disclaimer p {
  font-size: 0.9375rem;
  margin-bottom: 0;
  color: var(--text-light);
}

/* Related Articles Section */
.related-articles {
  background: var(--background-alt);
  padding: var(--space-3xl) 0;
  margin-top: var(--space-3xl);
}

.related-articles h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Article Navigation */
.article-nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: var(--space-xl);
  max-width: 800px;
  margin: var(--space-3xl) auto 0;
  padding: var(--space-xl) var(--space-lg);
  border-top: 1px solid var(--border);
}

.article-nav-item {
  flex: 1;
  padding: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.article-nav-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.article-nav-item.prev {
  text-align: left;
}

.article-nav-item.next {
  text-align: right;
}

.article-nav-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.article-nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e !important;
  line-height: 1.4;
}

.article-nav-item:hover .article-nav-title {
  color: #1a1a2e;
}

/* Article Hero Responsive */
@media (max-width: 1024px) {
  .article-hero {
    min-height: 450px;
  }

  .article-hero-title {
    font-size: 2.25rem;
  }

  .related-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .article-hero {
    min-height: 380px;
  }

  .article-hero-content {
    padding: var(--space-2xl) var(--space-lg);
  }

  .article-hero-title {
    font-size: 1.75rem;
  }

  .article-hero-meta {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .article-hero-meta .separator {
    display: none;
  }

  .article-body {
    padding: var(--space-2xl) var(--space-lg);
  }

  .article-lead {
    font-size: 1.125rem;
  }

  .article-content h2 {
    font-size: 1.5rem;
  }

  .article-content h3 {
    font-size: 1.25rem;
  }

  .article-content p,
  .article-content li {
    font-size: 1rem;
  }

  .related-articles-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .article-nav {
    flex-direction: column;
    gap: var(--space-md);
  }

  .article-nav-item.next {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .article-hero {
    min-height: 320px;
  }

  .article-hero-title {
    font-size: 1.5rem;
  }

  .article-category-label {
    font-size: 0.625rem;
    padding: 0.375rem 0.75rem;
  }
}

/* ============================================
   NEWS PORTAL HOMEPAGE LAYOUT
   Casino/Gambling News Style Design
   ============================================ */

/* News Portal Header */
.news-header {
  background: var(--primary);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.news-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 56px;
}

.news-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-decoration: none;
}

.news-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.news-logo-text {
  display: flex;
  flex-direction: column;
}

.news-logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.news-logo-subtitle {
  font-size: 0.75rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* News Category Navigation (Enhanced Casino.org style) */
.news-categories {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 56px;
  z-index: 90;
  width: 100%;
  overflow: visible;
  min-height: 44px;
}

.news-categories-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.news-categories-inner::-webkit-scrollbar {
  display: none;
}

.news-cat-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 1.5rem;
  gap: 0;
  flex-wrap: nowrap;
  width: max-content;
  min-width: 100%;
}

.news-cat-list li {
  margin: 0;
  flex-shrink: 0;
}

.news-cat-list a {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
  box-sizing: border-box;
}

.news-cat-list a:hover {
  color: var(--primary);
  background: rgba(0,109,50,0.05);
  border-bottom-color: var(--primary-light);
}

.news-cat-list a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: rgba(0,109,50,0.05);
}

.news-search {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.news-search-btn {
  background: none;
  border: none;
  color: var(--text-light);
  padding: var(--space-sm);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.news-search-btn:hover {
  color: var(--primary-light);
}

/* News Portal Main Layout */
.news-portal {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-2xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}

.news-main {
  min-width: 0;
}

.news-sidebar {
  align-self: start;
}

/* News Hero Section - Large Featured Article */
.news-hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.news-hero-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 450px;
}

.news-hero-main .news-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news-hero-main .news-card-image img,
.news-hero-main .news-card-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-hero-main .news-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2xl);
  background: linear-gradient(180deg, transparent 0%, rgba(10, 15, 13, 0.95) 100%);
  z-index: 2;
}

.news-hero-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* News Card - Horizontal Style */
.news-card-horizontal {
  display: flex;
  gap: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.news-card-horizontal:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.news-card-horizontal .news-card-thumb {
  width: 140px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
}

.news-card-horizontal .news-card-thumb img,
.news-card-horizontal .news-card-thumb .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-horizontal .news-card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.news-card-horizontal .news-card-cat {
  font-size: 0.625rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.news-card-horizontal .news-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a2e !important;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-horizontal:hover .news-card-title {
  color: #1a1a2e;
}

/* News Section with Heading - Modern 2026 Style */
.news-section {
  margin-bottom: var(--space-2xl);
}

.news-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.news-section-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 120px;
  height: 3px;
  background: var(--gradient-green);
  border-radius: 2px;
}

.news-section-title {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a2e !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}

.news-section-title .section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-green);
  border-radius: var(--radius-md);
  color: #fff;
}

.news-section-title .section-icon svg {
  width: 20px;
  height: 20px;
}

.news-section-title .highlight {
  color: #1a1a2e;
}

.news-section-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: #fff;
  font-weight: 600;
  background: var(--gradient-green);
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-section-link:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(13, 110, 63, 0.3);
}

.news-section-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.news-section-link:hover svg {
  transform: translateX(3px);
}

/* News Grid - 2 Column */
.news-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

/* News Card - Vertical Style - Casino.org (Simpler, Flatter) */
.news-card-vertical {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.15s ease;
  text-decoration: none;
  display: block;
}

.news-card-vertical:hover {
  border-color: var(--primary);
}

.news-card-vertical .news-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.news-card-vertical .news-card-image img,
.news-card-vertical .news-card-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-vertical .news-card-cat-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}

.news-card-vertical .news-card-body {
  padding: 1rem;
}

.news-card-vertical .news-card-meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
}

.news-card-vertical .news-card-author {
  color: var(--primary);
  font-weight: 500;
}

.news-card-vertical .news-card-date {
  color: #6b7280;
}

.news-card-vertical .news-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a2e !important;
  line-height: 1.35;
  margin: 0 0 0.625rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-vertical .news-card-excerpt {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.sidebar-widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--primary);
}

/* Trending Articles Widget */
.trending-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trending-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-fast);
  margin: 0;
}

.trending-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trending-item:first-child {
  padding-top: 0;
}

.trending-item:hover {
  padding-left: var(--space-sm);
}

.trending-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  width: 32px;
  flex-shrink: 0;
}

.trending-content {
  flex: 1;
}

.trending-cat {
  font-size: 0.625rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.trending-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a2e !important;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trending-item:hover .trending-title {
  color: #1a1a2e;
}

/* Categories Widget */
.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-item {
  margin: 0;
}

.category-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  color: var(--text-light);
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.category-item a:hover {
  background: rgba(13, 110, 63, 0.15);
  color: #1a1a2e;
}

.category-count {
  background: var(--background);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* Editorial Notice Widget */
.sidebar-notice {
  background: linear-gradient(135deg, rgba(13, 110, 63, 0.15) 0%, rgba(16, 168, 94, 0.08) 100%);
  border: 1px solid rgba(16, 168, 94, 0.2);
  border-left: 4px solid var(--primary-light);
}

.sidebar-notice p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.sidebar-notice strong {
  color: #1a1a2e !important;
}

/* News Portal Responsive */
@media (max-width: 1200px) {
  .news-portal {
    grid-template-columns: 1fr 280px;
  }
}

@media (max-width: 1024px) {
  .news-portal {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .news-hero {
    grid-template-columns: 1fr;
  }

  .news-hero-main {
    min-height: 350px;
  }

  .news-hero-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .news-categories-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .news-cat-list a {
    padding: var(--space-md);
    white-space: nowrap;
  }

  .news-grid-2 {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    grid-template-columns: 1fr;
  }

  .news-hero-side {
    grid-template-columns: 1fr;
  }

  .news-hero-main {
    min-height: 280px;
  }

  .news-card-horizontal {
    flex-direction: column;
  }

  .news-card-horizontal .news-card-thumb {
    width: 100%;
    height: 120px;
  }

  /* News Section Header - Tablet */
  .news-section-header {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .news-section-title {
    font-size: 1.125rem;
  }

  .news-section-title .section-icon {
    width: 36px;
    height: 36px;
  }

  .news-section-title .section-icon svg {
    width: 18px;
    height: 18px;
  }

  .news-section-link {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .news-section-link svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  /* Header stays as row on mobile - overridden by new mobile styles */
  .news-logo-title {
    font-size: 1.25rem;
  }

  .news-portal {
    padding: var(--space-lg);
  }

  .news-hero-main .news-card-overlay {
    padding: var(--space-lg);
  }

  /* News Section Header - Mobile */
  .news-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .news-section-header::after {
    width: 80px;
  }

  .news-section-title {
    font-size: 1rem;
    gap: var(--space-sm);
  }

  .news-section-title .section-icon {
    width: 32px;
    height: 32px;
  }

  .news-section-title .section-icon svg {
    width: 16px;
    height: 16px;
  }

  .news-section-link {
    font-size: 0.6875rem;
    padding: 0.4375rem 0.875rem;
    gap: 0.375rem;
  }

  .news-section-link svg {
    width: 12px;
    height: 12px;
  }
}

/* ============================================
   CATEGORY ARCHIVE PAGE STYLES
   OKVIP + Casino.org Inspired Design
   ============================================ */

/* Category Page Header */
.category-header {
  background: linear-gradient(135deg, #003d20 0%, #006d32 50%, #004d29 100%);
  border-bottom: 4px solid #00c853;
  padding: var(--space-2xl) 0;
  padding-top: 3.5rem;
  margin-top: 0;
}

.category-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.category-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.8125rem;
}

.category-breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}

.category-breadcrumb a:hover {
  color: #fff;
}

.category-breadcrumb span {
  color: rgba(255,255,255,0.5);
}

.category-breadcrumb .current {
  color: #fff;
  font-weight: 500;
}

.category-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff !important;
  margin: 0 0 var(--space-md);
  line-height: 1.2;
}

.category-title .highlight {
  color: #00ff7f;
}

.category-description {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
}

.category-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.2);
}

.category-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

.category-meta-item svg {
  width: 18px;
  height: 18px;
  color: #00ff7f;
}

.category-meta-value {
  font-weight: 600;
  color: #fff;
}

/* Article List Card - OKVIP Style with Date Badge */
.article-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.article-list-card {
  display: flex;
  gap: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.article-list-card:hover {
  border-color: var(--primary);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.article-list-thumb {
  position: relative;
  width: 280px;
  min-height: 180px;
  flex-shrink: 0;
  overflow: hidden;
}

.article-list-thumb img,
.article-list-thumb .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.article-list-card:hover .article-list-thumb img,
.article-list-card:hover .article-list-thumb .placeholder-img {
  transform: scale(1.08);
}

/* Date Badge Overlay - OKVIP Style */
.article-date-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--gradient-green);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 55px;
  box-shadow: 0 4px 12px rgba(13, 110, 63, 0.4);
}

.article-date-badge .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.article-date-badge .month {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* Category Badge on Thumbnail */
.article-cat-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: rgba(10, 15, 13, 0.85);
  color: var(--primary-light);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary);
}

/* Article List Content */
.article-list-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.article-list-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a2e !important;
  line-height: 1.4;
  margin: 0 0 var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-list-card:hover .article-list-title {
  color: #1a1a2e;
}

.article-list-excerpt {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0 0 var(--space-lg);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-list-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: auto;
}

.article-list-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.article-list-author svg {
  width: 16px;
  height: 16px;
  color: var(--primary-light);
}

.article-list-author span {
  color: var(--primary-light);
  font-weight: 500;
}

.article-list-read-time {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.article-list-read-time svg {
  width: 16px;
  height: 16px;
}

/* Sidebar - Recent Posts Widget for Category Page */
.recent-posts-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.recent-post-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-fast);
  margin: 0;
}

.recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-item:first-child {
  padding-top: 0;
}

.recent-post-item:hover {
  padding-left: var(--space-sm);
}

.recent-post-thumb {
  width: 70px;
  height: 50px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.recent-post-thumb img,
.recent-post-thumb .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-content {
  flex: 1;
}

.recent-post-title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1a1a2e !important;
  line-height: 1.4;
  margin: 0 0 var(--space-xs);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post-item:hover .recent-post-title {
  color: #1a1a2e;
}

.recent-post-date {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-2xl) 0;
  margin-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.pagination-item:hover {
  border-color: var(--primary);
  color: #1a1a2e;
  background: rgba(13, 110, 63, 0.1);
}

.pagination-item.active {
  background: var(--gradient-green);
  border-color: var(--primary);
  color: #fff;
}

.pagination-item.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.pagination-item svg {
  width: 20px;
  height: 20px;
}

.pagination-ellipsis {
  color: var(--text-muted);
  padding: 0 var(--space-sm);
}

/* Category Sidebar - Active Category Highlight */
.category-item.active a {
  background: rgba(13, 110, 63, 0.2);
  color: #1a1a2e;
}

.category-item.active .category-count {
  background: var(--primary);
  color: #fff;
}

/* Category Page Responsive */
@media (max-width: 1024px) {
  .article-list-thumb {
    width: 220px;
    min-height: 160px;
  }

  .article-list-title {
    font-size: 1.125rem;
  }

  .category-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .category-header {
    padding: var(--space-xl) 0;
  }

  .category-title {
    font-size: 1.75rem;
  }

  .category-meta {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .article-list-card {
    flex-direction: column;
  }

  .article-list-thumb {
    width: 100%;
    min-height: 200px;
  }

  .article-date-badge {
    top: var(--space-sm);
    left: var(--space-sm);
  }

  .article-date-badge .day {
    font-size: 1.25rem;
  }

  .pagination {
    flex-wrap: wrap;
  }

  .pagination-item {
    min-width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .category-title {
    font-size: 1.5rem;
  }

  .category-description {
    font-size: 0.9375rem;
  }

  .article-list-content {
    padding: var(--space-md);
  }

  .article-list-title {
    font-size: 1rem;
  }

  .article-list-excerpt {
    font-size: 0.875rem;
    -webkit-line-clamp: 2;
  }

  .article-list-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}

/* ============================================
   ARTICLE DETAIL PAGE STYLES
   Modern Editorial Design 2026
   ============================================ */

/* Article Header */
.article-header {
  background: #fff;
  padding: var(--space-2xl) 0 var(--space-xl);
}

.article-header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Aligned header (inside grid - synced with content) */
.article-header-aligned {
  padding-bottom: var(--space-xl);
}

.article-main-column {
  min-width: 0;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  font-size: 0.8125rem;
}

.article-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.article-breadcrumb .separator {
  color: var(--text-muted);
}

.article-breadcrumb .current {
  color: #1a1a2e;
}

.article-category-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gradient-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}

.article-category-tag svg {
  width: 14px;
  height: 14px;
}

.article-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e !important;
  line-height: 1.25;
  margin: 0 0 var(--space-xl);
}

.article-main-title .highlight {
  color: #1a1a2e;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.article-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.article-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
}

.article-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.article-author-name {
  font-weight: 600;
  color: #1a1a2e !important;
  font-size: 0.9375rem;
}

.article-author-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-light);
}

.article-meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-light);
}

/* Article Featured Image */
.article-featured-image {
  margin-bottom: 24px;
}

.article-featured-image .image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.article-featured-image img,
.article-featured-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-featured-image .image-caption {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  font-style: italic;
}

/* Article Content Body */
.article-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-2xl);
}

.article-content {
  min-width: 0;
}

.article-content p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.article-content p:first-of-type {
  font-size: 1.1875rem;
  color: #1a1a2e !important;
  line-height: 1.75;
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e !important;
  margin: var(--space-2xl) 0 var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--primary);
  position: relative;
}

.article-content h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
}

.article-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a2e !important;
  margin: var(--space-xl) 0 var(--space-md);
}

.article-content ul,
.article-content ol {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
}

.article-content li {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.article-content li::marker {
  color: var(--primary);
}

/* Summary Points - Green Bullets */
.summary-points {
  background: #f0fdf4;
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  margin: 0;
  list-style: none;
}

.summary-points li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #1a1a2e;
}

.summary-points li:last-child {
  margin-bottom: 0;
}

.summary-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary) !important;
  -webkit-text-fill-color: var(--primary) !important;
  font-weight: 700;
  font-size: 1.2em;
}

.article-content blockquote {
  margin: var(--space-xl) 0;
  padding: var(--space-lg) var(--space-xl);
  background: var(--surface);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-content blockquote p {
  font-size: 1.125rem;
  font-style: italic;
  color: #1a1a2e !important;
  margin: 0;
}

.article-content .info-box {
  background: linear-gradient(135deg, rgba(13, 110, 63, 0.1) 0%, rgba(26, 159, 92, 0.05) 100%);
  border: 1px solid rgba(13, 110, 63, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.article-content .info-box h4 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-light);
  margin: 0 0 var(--space-md);
}

.article-content .info-box p {
  margin: 0;
  font-size: 0.9375rem;
}

.article-content .warning-box {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.1) 0%, rgba(251, 146, 60, 0.05) 100%);
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.article-content .warning-box h4 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 var(--space-md);
}

.article-content .warning-box p {
  margin: 0;
  font-size: 0.9375rem;
}

/* Article Sidebar */
.article-sidebar {
  position: sticky;
  top: var(--space-xl);
  height: fit-content;
}

.article-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.article-toc-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a2e !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.article-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-toc-list li {
  margin-bottom: var(--space-sm);
}

.article-toc-list a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: var(--space-sm) 0;
  border-left: 2px solid transparent;
  padding-left: var(--space-md);
  transition: all var(--transition-fast);
}

.article-toc-list a:hover,
.article-toc-list a.active {
  color: var(--primary-light);
  border-left-color: var(--primary);
}

/* Article Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.article-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.8125rem;
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.article-tag:hover {
  border-color: var(--primary);
  color: var(--primary-light);
}

/* Article Share */
.article-share {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.article-share-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a2e !important;
  margin: 0 0 var(--space-md);
}

.article-share-buttons {
  display: flex;
  gap: var(--space-sm);
}

.article-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.article-share-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.article-share-btn svg {
  width: 18px;
  height: 18px;
}

/* Related Articles */
.related-articles {
  background: var(--secondary);
  padding: var(--space-2xl) 0;
  margin-top: var(--space-2xl);
}

.related-articles-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.related-articles-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e !important;
  margin: 0 0 var(--space-xl);
  text-align: center;
}

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

/* Article Responsive */
@media (max-width: 1024px) {
  .article-content-wrapper {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .related-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .article-main-title {
    font-size: 1.75rem;
  }

  .article-meta-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-content p {
    font-size: 1rem;
  }

  .article-content p:first-of-type {
    font-size: 1.0625rem;
  }

  .related-articles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .article-header {
    padding: var(--space-xl) 0 var(--space-lg);
  }

  .article-main-title {
    font-size: 1.5rem;
  }

  .article-content-wrapper {
    padding: var(--space-xl) var(--space-md);
  }

  .article-content h2 {
    font-size: 1.25rem;
  }

  .article-content h3 {
    font-size: 1.125rem;
  }
}

/* ============================================
   NEWS PORTAL - CASINO.ORG STYLE LAYOUT
   ============================================ */

/* Fixed Header */
.news-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/* Header Search */
.header-search {
  flex: 1;
  max-width: 400px;
  margin: 0 var(--space-xl);
}

.header-search-form {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.header-search-input {
  flex: 1;
  padding: 0.625rem 1rem;
  background: transparent;
  border: none;
  color: #1a1a2e !important;
  font-size: 0.875rem;
  outline: none;
}

.header-search-input::placeholder {
  color: var(--text-light);
}

.header-search-btn {
  padding: 0.625rem 1rem;
  background: var(--primary);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.header-search-btn:hover {
  background: var(--primary-light);
}

/* Header Right - Social & Language */
.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header-social {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.header-social a:hover {
  color: var(--primary-light);
  background: var(--surface);
}

/* Breadcrumb */
.news-breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
  margin-top: 120px; /* Space for fixed header + nav */
}

.news-breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  font-size: 0.8125rem;
  color: var(--text-light);
}

.news-breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.news-breadcrumb a:hover {
  color: var(--primary-light);
}

.news-breadcrumb .separator {
  margin: 0 var(--space-sm);
  color: var(--border);
}

.news-breadcrumb .current {
  color: #1a1a2e !important;
}

/* Main Content Layout - Casino.org Style (Compact) */
.news-main-content {
  padding: var(--space-lg) 0 var(--space-2xl);
}

.news-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.news-content-area {
  width: 100%;
  min-width: 0;
}

/* Full Width Sections - Outside Grid, Centered */
.news-fullwidth-sections {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  margin-top: var(--space-2xl);
}

.news-fullwidth-container {
  width: 100%;
}

/* Pagination - CMS Ready */
.news-pagination,
#news-pagination .pagination-controls,
#category-pagination .pagination-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.pagination-info {
  text-align: center;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.75rem;
}

.pagination-btn {
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a2e;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-num:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination-num.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.pagination-dots {
  padding: 0 0.5rem;
  color: #6b7280;
}

@media (max-width: 640px) {
  .news-pagination,
  #news-pagination .pagination-controls,
  #category-pagination .pagination-controls {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .pagination-btn {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }

  .pagination-num {
    width: 36px;
    height: 36px;
    font-size: 0.8125rem;
  }
}

.news-sidebar {
  width: 100%;
  min-width: 0;
  align-self: start;
  margin-top: 0;
  padding-top: 0;
}

/* Sidebar Most Recent Widget - Casino.org Style */
.sidebar-most-recent {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 1.25rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.sidebar-most-recent h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e !important;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
}

.sidebar-recent-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-recent-list li {
  padding: 0.875rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.sidebar-recent-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-recent-list li:first-child {
  padding-top: 0;
}

.sidebar-recent-list a {
  display: block;
  text-decoration: none;
  color: #1a1a2e !important;
  transition: color 0.15s ease;
}

.sidebar-recent-list a:hover {
  color: var(--primary) !important;
}

.sidebar-recent-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.375rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-recent-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  color: #6b7280;
}

.sidebar-recent-meta .author {
  color: var(--primary);
  font-weight: 500;
}

.sidebar-recent-meta .separator {
  color: #d1d5db;
}

/* Featured Hero - Casino.org Style (Image with Overlay - Keep for Main Hero) */
.news-featured-hero {
  margin-bottom: var(--space-xl);
}

.featured-hero-card {
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.featured-hero-image {
  aspect-ratio: 16/9;
  background: var(--surface);
  position: relative;
}

.featured-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

.featured-hero-cat {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.featured-hero-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.featured-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
}

.featured-hero-meta .separator {
  color: rgba(255,255,255,0.5);
}

/* Enhanced Hero with Split Layout - Casino.org Style (Simpler) */
.news-featured-hero-enhanced {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: 1rem;
  margin-bottom: var(--space-xl);
}

.hero-main-feature {
  position: relative;
}

.hero-secondary-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-secondary-card {
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid #e5e7eb;
  transition: border-color 0.15s ease;
  text-decoration: none;
}

.hero-secondary-card:hover {
  border-color: var(--primary);
}

.hero-secondary-card .featured-hero-image {
  aspect-ratio: 16/9;
}

.hero-secondary-card .featured-hero-overlay {
  padding: 1rem;
}

.hero-secondary-card .featured-hero-title {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.hero-secondary-card .featured-hero-meta {
  font-size: 0.6875rem;
}

/* News Section Headers - Casino.org Style (Simpler) */
.news-section {
  margin-bottom: var(--space-xl);
}

/* Full Width Section - Centered within content area */
.news-section.section-fullwidth {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.news-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.news-section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e !important;
  letter-spacing: -0.01em;
}

.news-section-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.news-section-link:hover {
  color: var(--primary-light);
}

/* News Grid - Casino.org Style (Compact Spacing) */
.news-grid-5 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 0.75rem;
}

/* News Grid - 4 Columns */
.news-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

/* News Grid - 3 Columns */
.news-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 0.75rem;
}

/* Compact Card - Casino.org Style (Image on Top + White Body) */
.news-card-compact {
  display: block;
  text-decoration: none;
  color: #1a1a2e !important;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.news-card-compact:hover {
  border-color: var(--primary);
}

.news-card-compact .news-card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}

.news-card-compact .news-card-body {
  padding: 1rem;
}

.news-card-compact .news-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #1a1a2e !important;
}

.news-card-compact .news-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  color: #6b7280;
}

/* Horizontal Cards List - Casino.org Style (Compact) */
.news-list-horizontal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.news-card-horizontal {
  display: flex;
  gap: 1rem;
  padding: 0.875rem;
  background: #fff;
  border-radius: 4px;
  text-decoration: none;
  color: #1a1a2e !important;
  transition: background-color 0.15s ease;
  border: 1px solid #e5e7eb;
}

.news-card-horizontal:hover {
  background: #f9fafb;
}

.news-card-horizontal .news-card-thumb {
  flex-shrink: 0;
  width: 140px;
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface-elevated);
  border: 1px solid #e5e7eb;
}

.news-card-horizontal .news-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.news-card-horizontal .news-card-cat {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.375rem;
}

.news-card-horizontal .news-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-horizontal .news-card-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #6b7280;
}

/* Popular Section - Casino.org Style (Compact) */
.news-popular-section {
  background: transparent;
  padding: 0;
  margin-bottom: var(--space-xl);
}

.news-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.news-popular-col {
  background: #fff;
  padding: 1.25rem;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  transition: border-color 0.15s ease;
}

.news-popular-col:hover {
  border-color: var(--primary);
}

.news-popular-col:last-child {
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
}

.news-popular-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a2e !important;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.news-popular-list {
  list-style: none;
}

.news-popular-list li {
  margin-bottom: 0.875rem;
}

.news-popular-list li:last-child {
  margin-bottom: 0;
}

.news-popular-list a {
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  color: #1a1a2e !important;
  transition: opacity 0.15s ease;
}

.news-popular-list a:hover {
  opacity: 0.7;
}

.news-popular-list .num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  line-height: 1;
}

.news-popular-list .title {
  font-size: 0.8125rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Newsletter Widget */
.sidebar-newsletter {
  background: var(--gradient-green);
  color: #fff;
  border-radius: 4px;
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.sidebar-newsletter h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff !important;
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255,255,255,0.3);
}

.sidebar-newsletter .sidebar-widget-title {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.3);
}

.sidebar-newsletter p {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

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

.newsletter-form input {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  background: rgba(255,255,255,0.95);
  color: var(--secondary);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  padding: 0.75rem 1rem;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--surface-elevated);
}

/* Integrated Newsletter Section - Casino.org Style (Compact) */
.newsletter-section-integrated {
  background: var(--gradient-green);
  padding: 2rem 0;
  margin: 2rem 0;
  text-align: center;
  border-radius: 0;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.newsletter-content h3 {
  color: #fff !important;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.newsletter-content p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.newsletter-form-inline {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0.5rem;
}

.newsletter-form-inline input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  background: #fff;
}

.newsletter-form-inline button {
  padding: 0.75rem 1.5rem;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease;
  white-space: nowrap;
}

.newsletter-form-inline button:hover {
  background: #1a1a2e;
}

/* Casino.org Style News Grid - Hero + Small Cards */
.casino-news-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Hero Card - Large Featured Article */
.news-hero-card {
  display: block;
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s ease;
  text-decoration: none;
  height: 100%;
}

.news-hero-card:hover {
  border-color: var(--primary-light);
}

.news-hero-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-hero-content {
  padding: 1.5rem;
}

.news-hero-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.news-hero-excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 1rem;
}

.news-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #9ca3af;
}

/* Small Cards Grid */
.news-small-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.news-small-card {
  display: block;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s ease;
  text-decoration: none;
}

.news-small-card:hover {
  border-color: var(--primary-light);
}

.news-small-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-small-content {
  padding: 1rem;
}

.news-small-title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-small-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Trending + Categories Side-by-Side Section - Casino.org Style (Compact) */
.trending-categories-section {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  margin-bottom: var(--space-xl);
}

.trending-col,
.categories-col {
  min-width: 0;
}

.trending-col .sidebar-widget-title,
.categories-col .sidebar-widget-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a2e !important;
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}

/* Editorial Notice Banner - Casino.org Style (Simpler) */
.editorial-notice-banner {
  background: rgba(0,109,50,0.04);
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.editorial-notice-banner p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

.editorial-notice-banner strong {
  color: var(--primary) !important;
  font-weight: 600;
}

/* Footer - 4 Column Grid */
.news-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-brand-col {
  padding-right: var(--space-xl);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  text-decoration: none;
  margin-bottom: var(--space-lg);
}

.footer-logo img {
  width: 48px;
  height: 48px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo-subtitle {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
}

.footer-nav-col {
  padding-top: var(--space-sm);
}

.footer-nav-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-lg);
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: var(--space-sm);
}

.footer-nav-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
  color: var(--primary-light);
}

.news-footer .footer-notice {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-lg);
}

.news-footer .footer-notice p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.news-footer .footer-notice strong {
  color: rgba(255,255,255,0.8);
}

.news-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.news-footer .footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.footer-bottom-right span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom-right .lang-switch {
  background: rgba(255,255,255,0.1);
}

/* Responsive - News Portal - Casino.org Style (Compact) */
@media (max-width: 1200px) {
  .news-container {
    max-width: 100%;
    padding: 0 var(--space-lg);
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .news-sidebar {
    order: 2;
  }

  .news-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-featured-hero-enhanced {
    grid-template-columns: 1.5fr 1fr;
  }

  .trending-categories-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trending-col {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
  }

  .news-popular-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .news-popular-col {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
  }

  .news-popular-col:last-child {
    padding-bottom: 1rem;
    border-bottom: none;
  }

  .sidebar-most-recent {
    position: static;
  }
}

@media (max-width: 1024px) {
  .news-breadcrumb {
    margin-top: 110px;
  }

  .news-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .news-sidebar {
    order: 2;
  }

  .news-featured-hero-enhanced {
    grid-template-columns: 1fr;
  }

  .hero-secondary-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sidebar-most-recent {
    position: static;
  }

  .news-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .footer-brand-col {
    grid-column: span 2;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .header-search {
    display: none;
  }

  .header-social {
    display: none;
  }

  .news-breadcrumb {
    margin-top: 60px;
  }

  .news-container {
    padding: 0 1rem;
  }

  /* Casino.org layout mobile adjustments */
  .casino-news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .news-small-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .news-hero-title {
    font-size: 1.25rem;
  }

  .news-hero-excerpt {
    font-size: 0.875rem;
  }

  .news-main-content {
    padding: 1rem 0 1.5rem;
  }

  .news-featured-hero-enhanced {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-secondary-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .featured-hero-image {
    aspect-ratio: 16/9;
  }

  .featured-hero-title {
    font-size: 1.125rem;
  }

  .featured-hero-overlay {
    padding: 1rem;
  }

  .news-grid-5,
  .news-grid-4,
  .news-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .news-grid-2 {
    grid-template-columns: 1fr;
  }

  .news-section {
    margin-bottom: 1.5rem;
  }

  .news-section-header {
    margin-bottom: 0.75rem;
  }

  .newsletter-form-inline {
    flex-direction: column;
  }

  .newsletter-form-inline button {
    width: 100%;
  }

  .trending-categories-section {
    padding: 1rem;
    gap: 1rem;
  }

  .news-card-horizontal {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .news-card-horizontal .news-card-thumb {
    width: 100%;
  }

  .news-sidebar {
    grid-template-columns: 1fr;
  }

  .news-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-brand-col {
    grid-column: span 1;
  }

  .news-footer .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .news-main-content {
    padding: 0.75rem 0 1.25rem;
  }

  .news-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .news-grid-5,
  .news-grid-4,
  .news-grid-3 {
    grid-template-columns: 1fr;
  }

  .newsletter-section-integrated {
    padding: 1.5rem 0;
    margin: 1.5rem 0;
  }

  .newsletter-content h3 {
    font-size: 1.125rem;
  }

  .newsletter-content p {
    font-size: 0.875rem;
  }

  .trending-categories-section {
    padding: 0.875rem;
  }

  .news-popular-section {
    padding: 0;
  }

  .news-popular-col {
    padding: 1rem;
  }
}

/* ============================================
   FOOTER - CASINO.ORG STYLE
   ============================================ */

.footer-casino-style {
  margin-top: auto;
}

/* Footer Top - Dark Section */
.footer-top {
  background: var(--primary);
  padding: var(--space-2xl) 0;
}

.footer-top-inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3xl);
}

/* Footer Brand (Left) */
.footer-casino-style .footer-brand {
  max-width: 400px;
}

.footer-casino-style .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  text-decoration: none;
  margin-bottom: var(--space-lg);
}

.footer-casino-style .footer-logo img {
  width: 48px;
  height: 48px;
}

.footer-casino-style .footer-logo-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Footer Controls (Right) */
.footer-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-lg);
}

/* Top Nav Links */
.footer-top-nav {
  display: flex;
  gap: var(--space-xl);
}

.footer-top-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-top-nav a:hover {
  color: var(--primary-light);
}

/* Controls Row */
.footer-controls-row {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.footer-dropdowns {
  display: flex;
  gap: var(--space-md);
}

.footer-dropdown select {
  padding: 0.625rem 2rem 0.625rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.875rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  min-width: 160px;
}

.footer-dropdown select:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-dropdown select option {
  background: var(--secondary);
  color: #fff;
}

/* Language & Social */
.footer-lang-social {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.footer-social-inline {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-social-inline a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-social-inline a:hover {
  color: var(--primary-light);
}

/* Footer Middle - Legal Links */
.footer-middle {
  background: var(--primary-dark);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer-legal-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-legal-nav a:hover {
  color: #fff;
}

/* Footer Bottom Bar - Badges & Copyright */
.footer-bottom-bar {
  background: var(--surface);
  padding: var(--space-lg) 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.badge-label {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.footer-badge-icons {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: #1a1a2e !important;
}

.badge-item svg {
  stroke: var(--primary-light);
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin: 0;
}

/* Responsive - Casino Style Footer */
@media (max-width: 1024px) {
  .footer-top-inner {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .footer-controls {
    align-items: flex-start;
  }

  .footer-casino-style .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-top-nav {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .footer-controls-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .footer-dropdowns {
    flex-wrap: wrap;
  }

  .footer-lang-social {
    flex-wrap: wrap;
  }

  .footer-legal-nav {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }

  .footer-badges {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .footer-top {
    padding: var(--space-xl) 0;
  }

  .footer-top-nav {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .footer-dropdown select {
    min-width: 100%;
  }

  .footer-badge-icons {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =====================================================
   NEW FOOTER - Casino.org Style with Dropdowns
   ===================================================== */
.footer-casino-style {
  background: var(--primary);
  color: #fff;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  flex-direction: column;
}

/* Footer Top - Two Column Grid */
.footer-top {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  padding: 3rem 0 2rem;
  align-items: start;
  width: 100%;
}

/* Left Column - Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.footer-logo img {
  width: 48px;
  height: 48px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* Right Column - Nav, Dropdowns, Social */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.footer-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer-nav-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Footer Controls Row (Dropdowns + Social) */
.footer-casino-style .footer-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

/* Dropdown Menus */
.footer-dropdowns {
  display: flex;
  gap: 1rem;
}

.footer-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 180px;
  justify-content: space-between;
}

.dropdown-toggle:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

.dropdown-toggle svg {
  transition: transform 0.2s ease;
}

.footer-dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
  margin-bottom: 0.5rem;
}

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

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #1a1a2e;
  text-decoration: none;
  font-size: 0.875rem;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s ease;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: rgba(0,109,50,0.05);
  color: var(--primary);
}

/* Follow Us */
.footer-follow {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-follow span {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  color: #fff;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.2);
}

/* Footer Bottom - Full Width Row */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 0;
  width: 100%;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  white-space: nowrap;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-nav-links {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-controls {
    width: 100%;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-dropdowns {
    flex: 1;
    min-width: 300px;
  }

  .footer-dropdown {
    flex: 1;
    min-width: 150px;
  }

  .dropdown-toggle {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 2rem 0 1.5rem;
  }

  .footer-nav-links {
    gap: 1rem;
  }

  .footer-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer-dropdowns {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }

  .dropdown-menu {
    bottom: auto;
    top: 100%;
    margin-bottom: 0;
    margin-top: 0.5rem;
  }

  .footer-follow {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-follow {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* =====================================================
   MOBILE RESPONSIVE STYLES - Casino.org Style
   ===================================================== */

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-inverse);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger animation when menu open */
.mobile-menu-open .mobile-menu-toggle .hamburger-line:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-open .mobile-menu-toggle .hamburger-line:nth-of-type(2) {
  opacity: 0;
}
.mobile-menu-open .mobile-menu-toggle .hamburger-line:nth-of-type(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hide mobile search button on desktop */
.mobile-search-btn {
  display: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-open .mobile-menu-overlay {
  display: block;
  opacity: 1;
}

/* Mobile Slide Menu */
.mobile-slide-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--secondary);
  z-index: 1000;
  overflow-y: auto;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu-open .mobile-slide-menu {
  right: 0;
}

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

.mobile-menu-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-inverse);
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--text-inverse);
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-close:hover {
  color: var(--primary-light);
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li a {
  display: block;
  padding: var(--space-md) var(--space-lg);
  color: var(--text-inverse);
  text-decoration: none;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-list li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-light);
}

.mobile-menu-divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-sm) 0;
}

.mobile-menu-lang {
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-top: 1px solid var(--border);
}

.mobile-menu-lang span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.mobile-menu-lang a {
  color: var(--text-inverse);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.mobile-menu-lang a.active {
  background: var(--primary);
  color: var(--text-inverse);
}

/* Prevent body scroll when menu open */
.mobile-menu-open {
  overflow: hidden;
}

/* =====================================================
   MOBILE BREAKPOINTS
   ===================================================== */

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
  /* Casino.org layout adjustments */
  .casino-news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-small-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* News Grid adjustments */
  .news-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Main content layout */
  .news-main-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  /* Sidebar goes below on tablet */
  .news-sidebar {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .sidebar-widget {
    margin-bottom: 0;
  }
}

/* Mobile Controls - Hidden on desktop */
.header-mobile-controls {
  display: none;
}

/* Ensure mobile buttons and icons are properly hidden on desktop */
.header-mobile-controls .mobile-search-btn,
.header-mobile-controls .mobile-menu-toggle {
  display: none;
}

/* Mobile (768px) - Casino.org Style */
@media (max-width: 768px) {
  /* Header container */
  .news-header {
    overflow: visible;
  }

  /* Header layout */
  .news-header-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-sm);
  }

  /* Logo */
  .news-logo {
    flex: 0 0 auto;
  }

  .news-logo-subtitle {
    display: none;
  }

  .news-logo-icon {
    width: 36px;
    height: 36px;
  }

  .news-logo-title {
    font-size: 1.125rem;
  }

  /* Hide desktop elements */
  .header-search-desktop {
    display: none !important;
  }

  .header-right > a {
    display: none !important;
  }

  /* Show mobile controls */
  .header-mobile-controls {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center;
    gap: 16px;
    margin-left: auto;
  }

  .header-mobile-controls .mobile-search-btn,
  .header-mobile-controls .mobile-menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .header-mobile-controls .mobile-search-icon,
  .header-mobile-controls .mobile-burger {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Mobile Search Button - Casino.org Style */
  .header-mobile-controls .mobile-search-btn {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    min-width: 44px;
  }

  /* Search Icon using pseudo-elements */
  .mobile-search-icon {
    position: relative;
    display: block !important;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }

  .mobile-search-icon::before {
    content: "" !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    border: 2px solid #ffffff !important;
    border-radius: 50%;
    box-sizing: border-box;
  }

  .mobile-search-icon::after {
    content: "" !important;
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 8px;
    height: 2px;
    background-color: #ffffff !important;
    transform: rotate(45deg);
  }

  /* Mobile button label */
  .mobile-btn-label {
    display: block !important;
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    text-transform: capitalize;
  }

  /* Mobile Menu Toggle - Casino.org Style */
  .header-mobile-controls .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    min-width: 44px;
  }

  /* Hamburger Icon using pseudo-elements - Casino.org approach */
  .mobile-burger {
    position: relative;
    display: block !important;
    width: 20px;
    height: 16px;
    min-width: 20px;
    min-height: 16px;
  }

  /* Middle line */
  .mobile-burger::before {
    content: "" !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #ffffff !important;
    box-shadow: 0 7px 0 #ffffff, 0 14px 0 #ffffff;
  }

  /* Hide category nav on mobile - it's in hamburger menu */
  .news-categories {
    display: none;
  }

  /* Hide breadcrumb on mobile */
  .news-breadcrumb {
    display: none;
  }

  /* Hero section - full width card style */
  .hero-section {
    margin: var(--space-md);
    padding: 0;
    min-height: 220px;
    border-radius: var(--radius-md);
  }

  .hero-content {
    padding: var(--space-lg);
  }

  .hero-tag {
    font-size: 0.6875rem;
  }

  .hero-title {
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .hero-excerpt {
    display: none;
  }

  .hero-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.75rem;
  }

  /* News grids - 2 columns on mobile like casino.org */
  .news-grid-4,
  .news-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .news-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  /* News section */
  .news-section {
    padding: var(--space-lg) var(--space-md);
  }

  .section-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
  }

  .section-title {
    font-size: 1.125rem;
  }

  /* Sidebar - single column on mobile */
  .news-sidebar {
    grid-template-columns: 1fr;
    padding: 0 var(--space-md);
  }

  /* Card adjustments for 2-column mobile */
  .news-card-image {
    height: 100px;
  }

  .news-card-content {
    padding: var(--space-sm);
  }

  .news-card-tag {
    font-size: 0.5625rem;
    padding: 2px 6px;
    margin-bottom: var(--space-xs);
  }

  .news-card-title {
    font-size: 0.8125rem;
    line-height: 1.3;
    -webkit-line-clamp: 3;
  }

  .news-card-excerpt {
    display: none;
  }

  .news-card-meta {
    font-size: 0.6875rem;
    margin-top: var(--space-xs);
  }

  /* Tabbed sections */
  .section-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .section-tabs button {
    white-space: nowrap;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8125rem;
  }

  /* Featured list */
  .featured-list-item {
    flex-direction: column;
  }

  .featured-list-image {
    width: 100%;
    height: 120px;
  }

  /* Horizontal cards - 2 column */
  .news-card-horizontal {
    flex-direction: column;
  }

  .news-card-horizontal .news-card-image {
    width: 100%;
    height: 100px;
  }
}

/* Small Mobile (480px) - iPhone SE etc */
@media (max-width: 480px) {
  /* Header */
  .news-header-inner {
    padding: var(--space-sm);
  }

  .news-logo-title {
    font-size: 1rem;
  }

  .news-logo-icon {
    width: 32px;
    height: 32px;
  }

  /* Hero */
  .hero-section {
    margin: var(--space-sm);
    min-height: 180px;
  }

  .hero-content {
    padding: var(--space-md);
  }

  .hero-tag {
    font-size: 0.5625rem;
  }

  .hero-title {
    font-size: 1.125rem;
  }

  /* Keep 2 columns but smaller gap */
  .news-grid-4,
  .news-grid-3,
  .news-grid-2 {
    gap: var(--space-sm);
  }

  /* Cards - smaller for 2-column on small screen */
  .news-card-image {
    height: 80px;
  }

  .news-card-content {
    padding: var(--space-xs);
  }

  .news-card-tag {
    font-size: 0.5rem;
    padding: 1px 4px;
  }

  .news-card-title {
    font-size: 0.75rem;
    -webkit-line-clamp: 2;
  }

  .news-card-meta {
    font-size: 0.625rem;
  }

  /* News sections */
  .news-section {
    padding: var(--space-md) var(--space-sm);
  }

  .section-title {
    font-size: 1rem;
  }

  /* Trending list */
  .trending-item {
    padding: var(--space-sm) 0;
  }

  .trending-number {
    font-size: 0.875rem;
    min-width: 24px;
  }

  .trending-title {
    font-size: 0.75rem;
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  /* Sidebar widgets */
  .sidebar-widget {
    padding: var(--space-md);
  }

  .sidebar-widget-title {
    font-size: 0.9375rem;
  }
}

/* FORCE BLACK TEXT FOR NEWS PAGE - HIGHEST PRIORITY */
.news-section .news-section-title,
h2.news-section-title,
.news-section-header .news-section-title,
.news-card-title,
h3.news-card-title,
.news-card-horizontal .news-card-title,
.news-card-vertical .news-card-title,
.news-card-compact .news-card-title,
.news-popular-title,
h3.news-popular-title,
.sidebar-widget-title,
h3.sidebar-widget-title {
  color: #1a1a2e !important;
}

/* FORCE BLACK FOR LINK WRAPPED TITLES - NUCLEAR OPTION */
a .news-card-title,
a h3.news-card-title,
.news-card-compact .news-card-title,
.news-card-horizontal .news-card-title,
.news-card-vertical .news-card-title,
.news-section-title,
.news-popular-title,
.sidebar-widget-title {
  color: #1a1a2e !important;
}

/* Override link colors */
a:link .news-card-title,
a:visited .news-card-title,
a:hover .news-card-title,
a:active .news-card-title {
  color: #1a1a2e !important;
}

/* Fix navigation menu colors - make white (exclude lang-dropdown) */
.news-header a:not(.lang-option),
.news-header-inner a:not(.lang-option) {
  color: rgba(255, 255, 255, 0.9) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
}
.lang-option {
  color: #1a1a2e !important;
  -webkit-text-fill-color: #1a1a2e !important;
}
.lang-option.active {
  color: #006d32 !important;
  -webkit-text-fill-color: #006d32 !important;
}
.lang-option-name span:last-child {
  color: #64748b !important;
  -webkit-text-fill-color: #64748b !important;
}

/* Category navigation - DARK text on white background */
.news-categories a,
.news-cat-list a {
  color: #64748b !important;
  -webkit-text-fill-color: #64748b !important;
}

.news-categories a:hover,
.news-cat-list a:hover {
  color: var(--primary) !important;
  -webkit-text-fill-color: var(--primary) !important;
}

.news-categories a.active,
.news-cat-list a.active {
  color: var(--primary) !important;
  -webkit-text-fill-color: var(--primary) !important;
}

/* Override white color for mega menu links - they need to be dark on light background */
.mega-menu a,
.mega-menu-col a {
  color: #4a5568 !important;
  -webkit-text-fill-color: #4a5568 !important;
}

.mega-menu a:hover,
.mega-menu-col a:hover {
  color: var(--casino-green) !important;
  -webkit-text-fill-color: var(--casino-green) !important;
}

.news-header a:not(.lang-option):hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* White text for hero/featured sections on dark backgrounds */
.featured-hero-title,
.news-featured-hero h1,
.news-featured-hero h2,
.news-featured-hero h3,
.featured-hero-overlay h1,
.featured-hero-overlay h2,
.featured-hero-card h1 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* White text for section headings on dark/colored backgrounds */
.news-section-title {
  color: #1a1a2e !important;
}

/* But if section is on dark background, make it white */
.news-featured-hero .news-section-title,
.dark-section .news-section-title {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Newsletter widget has dark background - make title white */
.sidebar-newsletter .sidebar-widget-title,
.sidebar-newsletter h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.sidebar-newsletter p,
.sidebar-newsletter {
  color: #ffffff !important;
}

/* Reduce top spacing on news page */
.news-main-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.news-breadcrumb {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.news-featured-hero {
  margin-top: 1rem !important;
}

/* Reduce spacing after header */
main.news-main-content,
.news-container {
  padding-top: 1rem !important;
}

/* AGGRESSIVE spacing reduction */
body {
  padding-top: 0 !important;
}

/* removed - consolidated below */

.news-breadcrumb-inner {
  padding: 0.5rem 0 !important;
}

/* Remove extra spacing */
main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.news-container {
  margin-top: 0 !important;
  padding-top: 1rem !important;
}

.news-featured-hero {
  margin-top: 0 !important;
}

/* Header spacing */
.news-header {
  margin-bottom: 0 !important;
}

.news-categories {
  margin-bottom: 0 !important;
}

/* removed - consolidated below */

.news-breadcrumb-inner {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  display: flex !important;
  align-items: center !important;
}

.news-breadcrumb a,
.news-breadcrumb span {
  font-size: 0.875rem !important;
  line-height: 1 !important;
}

.news-breadcrumb .current {
  color: #1a1a2e !important;
  font-weight: 500 !important;
}

/* Breadcrumb like Casino.org - subtle and lower position */
.news-breadcrumb {
  background: #f5f5f5 !important;
  border-bottom: 1px solid #e0e0e0 !important;
  margin-top: 0 !important;
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
}

.news-breadcrumb-inner {
  max-width: 1400px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  display: flex !important;
  align-items: center !important;
  min-height: 40px !important;
}

.news-breadcrumb a {
  color: #666 !important;
  font-size: 0.813rem !important;
  text-decoration: none !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.news-breadcrumb a:hover {
  color: var(--primary) !important;
  text-decoration: underline !important;
}

.news-breadcrumb .separator {
  color: #999 !important;
  margin: 0 0.5rem !important;
  font-size: 0.813rem !important;
  line-height: 1 !important;
}

.news-breadcrumb .current {
  color: #333 !important;
  font-size: 0.813rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
}

/* Add spacing after navigation */
.news-categories {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

/* Make VIEW ALL buttons solid white background */
.news-section-link,
a.news-section-link,
button.view-all,
.view-all-btn {
  background: #ffffff !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-block !important;
  opacity: 1 !important;
}

.news-section-link:hover {
  background: var(--primary) !important;
  color: #ffffff !important;
}

/* ============================================
   Article Content Tables — Responsive 2026
   AI Overview Optimized + Mobile-First
   Added 2026-04-12 — Multimodal SEO boost
   ============================================ */

.article-content .table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 28px 0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #fff;
  border: 1px solid #e2e8f0;
}

.article-content table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.5;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.article-content table caption {
  padding: 14px 18px;
  font-weight: 700;
  color: #1a1a2e;
  text-align: left;
  background: #f0fdf4;
  border-bottom: 2px solid #006d32;
  caption-side: top;
  font-size: 0.9375rem;
}

.article-content table thead {
  background: linear-gradient(135deg, #006d32 0%, #00a650 100%);
  color: #fff;
}

.article-content table thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #005226;
  white-space: nowrap;
}

.article-content table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
  color: #334155;
}

.article-content table tbody td:first-child {
  font-weight: 600;
  color: #1a1a2e;
}

.article-content table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.article-content table tbody tr:hover {
  background: #f0fdf4;
  transition: background 0.2s ease;
}

.article-content table tbody tr:last-child td {
  border-bottom: none;
}

.article-content table strong {
  color: #006d32;
  font-weight: 700;
}

/* Mobile optimization (375px-768px) */
@media (max-width: 768px) {
  .article-content .table-wrapper {
    margin: 20px -8px;
    border-radius: 8px;
  }

  .article-content .table-wrapper::after {
    content: "← Swipe to see more →";
    display: block;
    text-align: center;
    padding: 8px;
    font-size: 0.6875rem;
    color: #64748b;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
  }

  .article-content table {
    font-size: 0.875rem;
  }

  .article-content table caption {
    padding: 12px 14px;
    font-size: 0.875rem;
  }

  .article-content table thead th,
  .article-content table tbody td {
    padding: 12px 14px;
  }
}
