/* =====================================================
   DIGITAL SCORPION INTERACTIVE - BLOG REFINED
   =====================================================
   Professional, content-focused design with subtle
   gaming aesthetics. Clean, readable, and sophisticated.
   ===================================================== */

/* Import professional fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;500;700&family=Rajdhani:wght@400;500;600&display=swap');

/* =====================================================
   CSS VARIABLES & ROOT
   ===================================================== */
:root {
    /* Color Palette */
    --scorpion-orange: #FF6B35;
    --royal-gold: #D4AF37;
    --deep-purple: #7C3AED;
    --tech-teal: #00D4AA;
    --deep-void: #1A202C;
    --steel-gray: #2D3748;
    --content-gray: #4A5568;
    --silver-mist: #718096;
    --pure-light: #F7FAFC;
    --border-light: #E2E8F0;
    --background-subtle: #F8F9FA;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--scorpion-orange) 0%, var(--royal-gold) 100%);
    --accent-gradient: linear-gradient(135deg, var(--deep-purple) 0%, var(--tech-teal) 100%);
    --shadow-gradient: linear-gradient(to bottom, rgba(26, 32, 44, 0.97) 0%, rgba(45, 55, 72, 0.95) 100%);
    
    /* Typography */
    --font-primary: 'Inter', system-ui, sans-serif;
    --font-display: 'Orbitron', monospace;
    --font-tech: 'Rajdhani', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =====================================================
   GLOBAL STYLES & RESETS
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--deep-void);
    color: var(--pure-light);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =====================================================
   LOADING SPINNER
   ===================================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--shadow-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(15px);
}

.spinner {
    text-align: center;
}

.spinner-ring {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 107, 53, 0.2);
    border-top: 4px solid var(--scorpion-orange);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner-text {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--silver-mist);
    font-weight: 500;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    background: var(--shadow-gradient);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.navbar__logo img {
    height: 50px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.4));
}

.navbar__logo:hover img {
    filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.6));
    transform: scale(1.05);
}

.navbar__links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navbar__links a {
    color: var(--pure-light);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--scorpion-orange);
    transition: transform 0.3s ease;
}

.navbar__links a:hover,
.navbar__links a.active {
    color: var(--scorpion-orange);
    background: rgba(255, 107, 53, 0.1);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger i {
    color: var(--pure-light);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.hamburger:hover i {
    color: var(--scorpion-orange);
}

/* =====================================================
   BLOG HERO SECTION
   ===================================================== */
.blog-hero {
    margin-top: 80px;
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, var(--deep-void) 0%, rgba(45, 55, 72, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.blog-hero__content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.blog-hero__content h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--pure-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.blog-hero__content p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--silver-mist);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.blog-hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(45, 55, 72, 0.6);
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition-elegant);
    min-width: 180px;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--scorpion-orange);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    background: rgba(45, 55, 72, 0.8);
}

.stat-number {
    display: block;
    font-family: var(--font-tech);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--scorpion-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--pure-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* =====================================================
   FEATURED ARTICLES SECTION
   ===================================================== */
.featured-section {
    padding: 5rem 0;
    background: rgba(45, 55, 72, 0.3);
    position: relative;
}

.featured-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--pure-light);
    text-align: center;
    margin-bottom: 3rem;
}

.featured-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-card {
    background: rgba(26, 32, 44, 0.8);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition-elegant);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--scorpion-orange);
}

.featured-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.featured-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gradient);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.featured-date {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    color: var(--pure-light);
    font-weight: 600;
}

.featured-content {
    padding: 2rem;
}

.featured-content h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--pure-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-content p {
    color: var(--silver-mist);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gradient);
    color: var(--pure-light);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-elegant);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
    color: var(--pure-light);
}

.no-content {
    text-align: center;
    color: var(--silver-mist);
    font-size: 1.1rem;
    padding: 3rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 16px;
    border: 2px dashed rgba(255, 107, 53, 0.2);
}

/* =====================================================
   ARTICLES SECTION
   ===================================================== */
.articles-section {
    padding: 5rem 0;
    background: var(--deep-void);
}

.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.articles-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--pure-light);
}

.articles-filters {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.filter-select {
    background: rgba(45, 55, 72, 0.8);
    color: var(--pure-light);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.filter-select:focus {
    outline: none;
    border-color: var(--scorpion-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: rgba(45, 55, 72, 0.6);
    padding: 0.5rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.view-btn {
    background: transparent;
    border: none;
    color: var(--silver-mist);
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-gradient);
    color: var(--pure-light);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: rgba(26, 32, 44, 0.8);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition-elegant);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--scorpion-orange);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.article-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gradient);
    color: var(--pure-light);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-family: var(--font-tech);
    font-size: 0.75rem;
    font-weight: 600;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pure-light);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-content p {
    color: var(--silver-mist);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--scorpion-orange);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.article-link:hover {
    color: var(--royal-gold);
    transform: translateX(3px);
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    background: var(--accent-gradient);
    color: var(--pure-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-elegant);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(124, 58, 237, 0.3);
}

.no-content-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 20px;
    border: 2px dashed rgba(124, 58, 237, 0.2);
}

.no-content-message i {
    font-size: 3rem;
    color: var(--deep-purple);
    margin-bottom: 1.5rem;
}

.no-content-message h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--pure-light);
    margin-bottom: 1rem;
}

.no-content-message p {
    color: var(--silver-mist);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* =====================================================
   NEWSLETTER SECTION
   ===================================================== */
.newsletter-section {
    padding: 5rem 0;
    background: rgba(45, 55, 72, 0.3);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(26, 32, 44, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(15px);
}

.newsletter-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--pure-light);
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: var(--silver-mist);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    background: rgba(45, 55, 72, 0.8);
    color: var(--pure-light);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.newsletter-input::placeholder {
    color: var(--silver-mist);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--scorpion-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: var(--pure-light);
    border: none;
    border-radius: 25px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-elegant);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--shadow-gradient);
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
}

.footer__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer__content p {
    color: var(--pure-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer__links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    gap: 2rem;
}

.footer__links a {
    color: var(--royal-gold);
    text-decoration: none;
    font-family: var(--font-tech);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.footer__links a:hover {
    color: var(--scorpion-orange);
    background: rgba(255, 107, 53, 0.1);
}

/* =====================================================
   ERROR HANDLING
   ===================================================== */
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.error-message i {
    font-size: 3rem;
    color: var(--scorpion-orange);
    margin-bottom: 1.5rem;
}

.error-message h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--pure-light);
    margin-bottom: 1rem;
}

.error-message p {
    color: var(--silver-mist);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.retry-btn {
    background: var(--primary-gradient);
    color: var(--pure-light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-elegant);
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* =====================================================
   PLACEHOLDER ANIMATIONS
   ===================================================== */
.featured-placeholder,
.articles-placeholder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.placeholder-card,
.article-placeholder {
    height: 400px;
    background: rgba(45, 55, 72, 0.4);
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.placeholder-card::before,
.article-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.1) 50%, 
        transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 768px) {
    .navbar__links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--shadow-gradient);
        padding: 2rem;
        gap: 1rem;
        border-top: 2px solid rgba(255, 107, 53, 0.3);
    }

    .navbar__links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .blog-hero {
        padding: 4rem 0 3rem;
    }

    .blog-hero__stats {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 280px;
    }

    .featured-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .articles-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1.5rem;
    }

    .newsletter-input {
        min-width: auto;
    }

    .footer__links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .blog-hero {
        padding: 3rem 0 2rem;
    }

    .featured-section,
    .articles-section,
    .newsletter-section {
        padding: 4rem 0;
    }

    .newsletter-content {
        padding: 2rem 1.5rem;
    }
}

/* =====================================================
   ACCESSIBILITY & POLISH
   ===================================================== */
*:focus {
    outline: 3px solid rgba(212, 175, 55, 0.5);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Selection styling */
::selection {
    background: var(--scorpion-orange);
    color: var(--pure-light);
    text-shadow: none;
}

::-moz-selection {
    background: var(--scorpion-orange);
    color: var(--pure-light);
    text-shadow: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--deep-void);
    border: 1px solid var(--steel-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 6px;
    border: 2px solid var(--deep-void);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gradient);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

/* Enhanced glow effects - refined */
.red-glow {
    position: relative;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4),
                0 0 40px rgba(212, 175, 55, 0.2),
                inset 0 0 20px rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.6);
    animation: refined-glow 3s ease-in-out infinite;
}

@keyframes refined-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.4),
                    0 0 40px rgba(212, 175, 55, 0.2),
                    inset 0 0 20px rgba(255, 107, 53, 0.1);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 107, 53, 0.6),
                    0 0 50px rgba(212, 175, 55, 0.3),
                    inset 0 0 25px rgba(255, 107, 53, 0.15);
    }
}

.red-glow:hover {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6),
                0 0 60px rgba(212, 175, 55, 0.4),
                inset 0 0 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

/* Performance optimizations */
.featured-card,
.article-card,
.stat-item {
    will-change: transform;
}

.featured-image img,
.article-image img {
    will-change: transform;
}

/* Smooth page transitions */
body {
    animation: page-reveal 0.8s ease-out;
}

@keyframes page-reveal {
    from {
        opacity: 0;
        filter: blur(3px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}