
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: #ffffff;
            color: #111;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            width: 92%;
            max-width: 1400px;
            margin: auto;
        }

        /* --------------------------------------------------
           HEADER
        -------------------------------------------------- */

        header {
            border-bottom: 1px solid #eee;
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 32px;
            font-weight: 900;
            letter-spacing: -1px;
        }

        .logo span {
            color: #8b0000;
        }

        nav {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }

        nav a {
            font-size: 15px;
            font-weight: bold;
            transition: 0.2s;
        }

        nav a:hover {
            color: #8b0000;
        }

        /* --------------------------------------------------
           HERO SECTION
        -------------------------------------------------- */

        .hero {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            margin-top: 40px;
            margin-bottom: 60px;
            align-items: center;
        }

        .hero-image img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            border-radius: 18px;
        }

        .hero-category {
            display: inline-block;
            background: #8b0000;
            color: white;
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 56px;
            line-height: 1.05;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 20px;
            color: #555;
            margin-bottom: 30px;
        }

        .hero-button {
            display: inline-block;
            background: #8b0000;
            color: white;
            padding: 16px 24px;
            border-radius: 12px;
            font-weight: bold;
            transition: 0.2s;
        }

        .hero-button:hover {
            background: #5f0000;
        }

        /* --------------------------------------------------
           SECTION TITLE
        -------------------------------------------------- */

        .section-title {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 30px;
        }

        .section-title h2 {
            font-size: 34px;
        }

        .section-title .line {
            flex: 1;
            height: 4px;
            background: #8b0000;
            border-radius: 999px;
        }

        /* --------------------------------------------------
           ARTICLE GRID
        -------------------------------------------------- */

        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-bottom: 80px;
        }

        .card {
            background: white;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid #eee;
            transition: 0.25s;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }

        .card-content {
            padding: 24px;
        }

        .card-category {
            color: #8b0000;
            font-size: 13px;
            font-weight: bold;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .card h3 {
            font-size: 26px;
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .card p {
            color: #666;
            font-size: 16px;
        }

        /* --------------------------------------------------
           FOOTER
        -------------------------------------------------- */

        footer {
            background: #111;
            color: white;
            padding: 50px 0;
            margin-top: 60px;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 900;
        }

        .footer-logo span {
            color: #b30000;
        }

        .footer-text {
            color: #aaa;
        }

        /* --------------------------------------------------
           MOBILE
        -------------------------------------------------- */

        @media (max-width: 1100px) {

            .hero {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 42px;
            }

            .grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 700px) {

            .header-inner {
                flex-direction: column;
                gap: 20px;
            }

            nav {
                justify-content: center;
            }

            .hero h1 {
                font-size: 34px;
            }

            .hero p {
                font-size: 18px;
            }

            .hero-image img {
                height: 320px;
            }

            .grid {
                grid-template-columns: 1fr;
            }

            .card h3 {
                font-size: 22px;
            }

            .section-title h2 {
                font-size: 28px;
            }
        }
/* =========================
   ARTICLE PAGE
========================= */

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 720px) 320px;
    gap: 60px;
    align-items: start;
    padding: 40px 0;
}

/* MAIN */

.article-main {
    min-width: 0;
}

.article-category {
    color: #8B0000;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.article-title {
    font-size: 52px;
    line-height: 1.1;
    margin: 0 0 20px;
    font-weight: 800;
}

.article-meta {
    color: #777;
    font-size: 14px;
    margin-bottom: 30px;
}

.article-excerpt {
    font-size: 24px;
    line-height: 1.7;
    color: #444;
    margin: 40px 0;
    font-weight: 300;
}

/* HERO */

.article-hero {
    margin-bottom: 40px;
}

.article-hero img,
.article-inline-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* CONTENT */

.article-content {
    font-size: 20px;
    line-height: 2;
    color: #111;
    max-width: 680px;
}

.article-content p {
    margin-bottom: 32px;
}

.article-content img {
    max-width: 100%;
    height: auto;
}

/* INLINE IMAGE */

.article-inline-image {
    margin: 60px 0;
}

/* SIDEBAR */

.article-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-box {
    border: 1px solid #eee;
    padding: 24px;
    margin-bottom: 24px;
    background: #fafafa;
}

.sidebar-box h3 {
    margin-top: 0;
    margin-bottom: 18px;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    color: #111;
    font-weight: 600;
}

.ad-placeholder {
    height: 250px;
    background: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 14px;
}

/* RELATED */

.related-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.related-section h2 {
    margin-bottom: 24px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    display: block;
    color: inherit;
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.related-card h3 {
    font-size: 17px;
    line-height: 1.4;
    margin: 0;
}

/* MOBILE */

@media (max-width: 1000px) {

    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-sidebar {
        position: static;
    }

    .article-title {
        font-size: 36px;
    }

    .article-content {
        font-size: 18px;
        line-height: 1.9;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================
   CATEGORY PAGE
========================= */

.category-header {
    padding: 50px 0 30px;
}

.category-header h1 {
    font-size: 52px;
    margin-bottom: 10px;
}

.category-header p {
    color: #666;
    font-size: 18px;
}

/* FEATURED */

.category-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    color: inherit;
    align-items: center;
}

.category-featured img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
}

.featured-label {
    color: #8B0000;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.category-featured h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.category-featured p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

/* GRID */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* PAGINATION */

.pagination {
    margin: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination a {
    color: #8B0000;
    font-weight: bold;
}

/* MOBILE */

@media (max-width: 1000px) {

    .category-featured {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-header h1 {
        font-size: 38px;
    }

    .category-featured h2 {
        font-size: 32px;
    }

}


/* =========================
   ADS
========================= */

.top-ad {
    width: 728px;
    height: 90px;
    margin: 30px auto;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}

.sidebar-ad {
    width: 300px;
    height: 250px;
    background: #ececec;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inline-ad {
    width: 300px;
    height: 250px;
    margin: 50px auto;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MOBILE */

@media (max-width: 1000px) {

    .top-ad {
        width: 320px;
        height: 50px;
    }

    .sidebar-ad {
        width: 320px;
        height: 50px;
    }

}