:root {
  --bg-main: #0a0a0c;
  --bg-surface: #111216;
  --bg-surface-glass: rgba(17, 18, 22, 0.65);
  --border-color: rgba(255, 255, 255, 0.08);
  --accent-gold: #D4AF37;
  --accent-gold-hover: #E5C354;
  --accent-teal: #0D9488;
  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.15);
  
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

::selection {
  background-color: var(--accent-gold);
  color: #000;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

html {
  scroll-behavior: smooth;
}

/* =========================================
   PREMIUM EYE-CATCHING FOOTER 
   ========================================= */
.premium-footer {
    position: relative;
    background: linear-gradient(135deg, #090e17 0%, #030712 100%);
    border-top: 3px solid var(--accent-gold);
    padding: 6rem 0 2rem;
    margin-top: 2rem;
    color: #fff;
    overflow: hidden;
}
.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 50%),
                radial-gradient(circle at bottom left, rgba(13, 148, 136, 0.1), transparent 50%);
    pointer-events: none;
}
.premium-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}
.premium-footer h3 {
    color: #fff;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}
.premium-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}
.premium-footer .footer-brand {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.premium-footer .footer-brand::after {
    display: none;
}
.premium-footer .footer-desc {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.premium-footer .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.premium-footer .footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}
.premium-footer .footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-fast);
}
.premium-footer .footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}
.premium-footer .footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}
.premium-footer .footer-socials {
    justify-content: flex-start;
    gap: 1rem;
}
.premium-footer .social-link {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
}
.premium-footer .social-link:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}
.premium-footer .newsletter-form {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-fast);
}
.premium-footer .newsletter-form:focus-within {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}
.premium-footer .newsletter-form input {
    background: transparent;
    border: none;
    color: #fff;
    flex: 1;
    padding: 1rem;
    outline: none;
}
.premium-footer .newsletter-form input::placeholder {
    color: #64748b;
}
.premium-footer .newsletter-form .btn {
    border-radius: 0;
    padding: 0 1.5rem;
}
.premium-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Reading Progress Bar */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 2000;
}
.reading-progress-bar {
    height: 100%;
    background: var(--accent-gold);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Floating Elements */
.floating-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition-fast);
    opacity: 0;
    visibility: hidden;
}
.floating-btn.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top {
    bottom: 30px;
    left: 30px;
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.scroll-to-top:hover {
    background: var(--accent-gold);
    color: #fff;
}
.ai-chat-btn {
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-teal));
    color: #fff;
    opacity: 1;
    visibility: visible;
}
.ai-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(13, 148, 136, 0.4);
}
.ai-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: #fff;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
}

/* AI Chat Window */
.ai-chat-window {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 350px;
    height: 450px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(212,175,55,0.1);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
}
.ai-chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ai-chat-header {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-teal));
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ai-chat-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ai-chat-footer {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
}
.ai-msg {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.ai-msg.received {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.ai-msg.sent {
    background: var(--bg-main);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* Premium Light Mode Overrides */
body.light-mode {
  --bg-main: #FAFAFA;
  --bg-surface: #FFFFFF;
  --bg-surface-glass: rgba(255, 255, 255, 0.85);
  --border-color: rgba(212, 175, 55, 0.25);
  --text-primary: #1A1C23;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --accent-gold: #C59B27;
  --accent-gold-hover: #A37E1E;
  --accent-teal: #0D7A70;
  --shadow-glow: 0 10px 30px rgba(197, 155, 39, 0.15);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.05), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(13, 148, 136, 0.05), transparent 25%);
}

body.light-mode .main-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

body.light-mode .hero-bg-glow-2, body.light-mode .hero-bg-glow, body.light-mode .cta-glow {
  opacity: 0.8;
  filter: blur(80px);
}

body.light-mode .article-card {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: #ffffff;
}

body.light-mode .article-card:hover { 
  border-color: var(--accent-gold); 
  box-shadow: 0 20px 40px rgba(197, 155, 39, 0.12), 0 0 20px rgba(13, 148, 136, 0.05);
  transform: translateY(-8px);
}

body.light-mode .btn-primary { color: #fff; box-shadow: 0 8px 20px rgba(197, 155, 39, 0.3); }
body.light-mode .btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 25px rgba(197, 155, 39, 0.4); }

body.light-mode .post-body blockquote { 
  background: linear-gradient(to right, rgba(197, 155, 39, 0.05), transparent); 
  border-left-color: var(--accent-gold);
  color: var(--text-primary); 
}

body.light-mode .post-body h2, 
body.light-mode .post-body h3, 
body.light-mode .post-body h4 { 
  color: var(--text-primary); 
}

body.light-mode .post-body p, body.light-mode .post-body li { color: var(--text-secondary); }
body.light-mode .mobile-overlay { background: #FAFAFA; border-left: 1px solid rgba(212, 175, 55, 0.15); }

/* Pages specific light mode overrides */
body.light-mode .donation-card {
  background: linear-gradient(145deg, #ffffff, #fcfcfc);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-mode .donation-card.featured {
  background: #ffffff;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 20px 40px rgba(197, 155, 39, 0.15);
}

body.light-mode .contact-info-card, body.light-mode .policy-card {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
}

body.light-mode .contact-info-card:hover, body.light-mode .policy-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(197, 155, 39, 0.1);
  transform: translateY(-5px);
}

body.light-mode .form-control {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
}

body.light-mode .form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(197, 155, 39, 0.1);
  background: #ffffff;
}

body.light-mode .category-icon {
  background: rgba(197, 155, 39, 0.1);
  color: var(--accent-gold);
}

body.light-mode .category-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition-fast);
}

body.light-mode .category-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle:hover {
  color: var(--accent-gold);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

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

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

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

ul {
  list-style: none;
}

/* Base Layout & Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gold { color: var(--accent-gold); }
.text-teal { color: var(--accent-teal); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

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

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Header & Glassmorphism Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
}

.main-header.scrolled {
  background: var(--bg-surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-accent {
  color: var(--accent-gold);
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

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

/* Mobile Menu Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-main);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  transform: translateY(-20px);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-overlay ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-overlay a {
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.mobile-close {
  display: none !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, rgba(10, 10, 12, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(50px);
}

.hero-bg-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 12, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(60px);
}

.hero-content {
  max-width: 800px;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--accent-gold);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-title {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

/* Article Cards */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.article-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.02);
}

.article-image {
  width: 100%;
  height: 220px;
  background: #1a1d24; /* Placeholder */
  position: relative;
  overflow: hidden;
}

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

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.1);
}

.article-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.article-title a {
  color: var(--text-primary);
}

.article-title a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.article-card a:not(.article-title a) {
  position: relative;
  z-index: 11;
}

.article-card:hover .article-title a {
  color: var(--accent-gold);
}

.article-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.read-more {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more i {
  transition: var(--transition-fast);
}

.article-card:hover .read-more i {
  transform: translateX(6px);
}

.article-card:hover .read-more {
  color: var(--accent-gold);
}

.article-card:hover .read-more i {
  transform: translateX(4px);
}

/* Category Cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(17,18,22,0.4) 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.category-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

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

.category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.category-card:hover .category-icon {
  background: var(--accent-gold);
  color: #000;
  transform: scale(1.1);
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.category-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CTA / Donations Section */
.cta-section {
  position: relative;
  border-radius: 20px;
  padding: 5rem 3rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(8, 145, 178, 0.1) 0%, rgba(10, 10, 12, 0) 100%);
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 0;
}

.cta-glow {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.15);
  filter: blur(60px);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-desc {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
  color: var(--text-secondary);
}

/* Footer Element */
.main-footer {
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
  background-color: var(--bg-main);
}

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

.footer-about .logo-text {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.fa-x-twitter {
  color: #ffffff;
  font-size: 1.1em;
}

.social-link:hover .fa-x-twitter {
  color: #000;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Post Content Styling */
.post-header {
  padding-top: 3rem;
  padding-bottom: 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.post-meta-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.post-meta-top .category {
  color: var(--accent-gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-title {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
}

.author-name {
  font-weight: 600;
  color: #fff;
}

.post-featured-image {
  max-width: 1000px;
  margin: 0 auto 4rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border-color);
}

.post-featured-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

.post-body {
  max-width: 800px;
  margin: 0 auto 6rem;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.post-body h2 {
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
  color: #fff;
}

.post-body h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.post-body p {
  margin-bottom: 1.5rem;
  color: #d1d5db;
}

.post-body blockquote {
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: var(--bg-surface);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 1.25rem;
  color: #fff;
}

.post-body ul, .post-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: #d1d5db;
}

.post-body li {
  margin-bottom: 0.5rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.60s; }

/* Responsive */
@media (max-width: 992px) {
  .hero-title { font-size: 3.5rem; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
  .post-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-title { font-size: 2.5rem; }
  .hero-desc { font-size: 1.1rem; }
  .section { padding: 4rem 0; }
  .section-title { font-size: 2rem; }
  .footer-grid { gap: 1.5rem; }
  .premium-footer h3 { font-size: 1.1rem; }
  .footer-links a { font-size: 0.85rem; }
  .post-title { font-size: 2.2rem; }
  .cta-title { font-size: 2.2rem; }
  .cta-section { padding: 3rem 1.5rem; }
}
