* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --white: #ffffff;
            --off-white: #fafafa;
            --light-gray: #f5f5f5;
            --orange: #ff6b35;
            --orange-light: #ff8c61;
            --orange-glow: rgba(255, 107, 53, 0.2);
            --orange-subtle: rgba(255, 107, 53, 0.08);
            --text-dark: #1a1a1a;
            --text-gray: #6b7280;
            --border-light: #e8e8e8;
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.3);
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-orange: 0 8px 24px var(--orange-glow);
        }

        body.dark-theme {
            --white: #0f0f14;
            --off-white: #1a1a22;
            --light-gray: #252530;
            --text-dark: #ffffff;
            --text-gray: #b0b0c0;
            --border-light: #2a2a35;
            --glass-bg: rgba(26, 26, 34, 0.7);
            --glass-border: rgba(255, 255, 255, 0.1);
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
        }

        body {
            font-family: 'General Sans', sans-serif;
            background: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
        }

        body.dark-theme .glow-orb {
            opacity: 0.08;
        }

        body.dark-theme nav {
            background: rgba(15, 15, 20, 0.85);
        }

        /* Background Glow */
        .bg-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: float 20s ease-in-out infinite;
        }

        .glow-1 {
            width: 500px;
            height: 500px;
            background: var(--orange);
            top: -10%;
            right: -5%;
            animation-delay: 0s;
        }

        .glow-2 {
            width: 400px;
            height: 400px;
            background: #a8d735;
            bottom: -10%;
            left: -5%;
            animation-delay: -7s;
        }

        .glow-3 {
            width: 350px;
            height: 350px;
            background: var(--orange);
            top: 50%;
            left: 50%;
            animation-delay: -14s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -50px) scale(1.1); }
            66% { transform: translate(-20px, 30px) scale(0.9); }
        }
/* Hero Section */
.articles-hero {
    padding: 150px 60px;
    background: linear-gradient(135deg, var(--orange) 100%, var(--teal-light) 100%);
    color: --orange;
    text-align: center;
}

.articles-hero h1 {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;

}


.articles-hero p {
    font-size: 20px;
    opacity: 0.9;


}

/* Filter Section */
.filter-section {
    padding: 40px 60px;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 80px;
    z-index: 100;
    transition: background-color 0.3s;
}

.filter-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-gray);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}

.search-box {
    display: flex;
    gap: 10px;
}

.search-box input {
    padding: 10px 20px;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-family: 'General Sans', sans-serif;
    font-size: 15px;
    min-width: 250px;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--orange);
}

.search-box input::placeholder {
    color: var(--text-gray);
}

/* Articles Grid */
.articles-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--border-light);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.article-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.article-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-image-container img {
    transform: scale(1.1);
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    background: var(--orange);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content {
    padding: 25px;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 12px;
}

.article-card h3 {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.3;
}

.article-description {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.article-views {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-gray);
    font-size: 14px;
}

.read-more {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

/* Article Modal */
.article-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
}

.article-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transition: background-color 0.3s;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border-light);
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
}

.modal-body {
    padding: 40px;
}

.modal-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--orange-subtle);
    color: var(--orange);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-dark);
}

.modal-meta {
    display: flex;
    gap: 20px;
    color: var(--text-gray);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.modal-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    white-space: pre-wrap;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 100px 20px;
}

.empty-state h3 {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.empty-state p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Dark Theme Specific Adjustments */
body.dark-theme .modal-content {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

body.dark-theme .article-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-theme .article-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .articles-hero {
        padding: 60px 25px;
    }

    .articles-hero h1 {
        font-size: 36px;
    }

    .filter-section {
        padding: 20px 25px;
    }

    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box input {
        width: 100%;
        min-width: auto;
    }

    .articles-container {
        padding: 40px 25px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .modal-body {
        padding: 30px 25px;
    }

    .modal-title {
        font-size: 32px;
    }

    .modal-image {
        height: 250px;
    }
}