    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: Arial, Helvetica, sans-serif;
        color: var(--text);
    }

    a {
        text-decoration: none;
        color: inherit;
        transition:
            color .3s,
            transform .3s;
    }

    img {
        display: block;
        width: 100%;
         transition:
    transform .4s;
    }

    ul {
        list-style: none;
    }

    .container {

        width: 92%;

        max-width: 1400px;

        margin: auto;

    }
    button{

    transition:
    .3s;

}




    /* hero */
    .hero {
        background: #000;
        padding: 60px 0;
    }

    .hero-grid {

        display: grid;

        grid-template-columns:
            1.6fr 1fr;

        gap: 40px;
    }

    .featured-card {

        background: #111;

        border-radius: 24px;

        overflow: hidden;

        box-shadow:
            0 0 40px rgba(255, 180, 0, .3);
    }

    .featured-card img {

        width: 100%;

        height: 520px;

        object-fit: cover;
    }

    .featured-content {

        padding: 30px;

        text-align: center;
    }

    .featured-content h2 {

        color: white;

        font-size: 38px;

        line-height: 1.2;

        margin-bottom: 15px;
    }

    .featured-content p {

        color: #bbb;
    }

    .latest-posts {

        color: white;
    }

    .latest-posts h3 {

        font-size: 34px;

        margin-bottom: 30px;

        position: relative;
    }

    .latest-posts h3::after {

        content: "";

        display: block;

        width: 180px;

        height: 1px;

        background: #666;

        margin-top: 15px;
    }

    .latest-post {

        padding: 25px 0;

        border-bottom:
            1px solid rgba(255, 255, 255, .15);
    }

    .latest-post span {

        color: #999;

        font-size: 14px;
    }

    .latest-post h4 {

        margin-top: 10px;

        font-size: 28px;

        line-height: 1.3;
    }

    /* topics */
    .topics {
        background: #f5f5f5;
        padding: 80px 0;
    }

    .brand-grid {

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 30px;

        margin-bottom: 60px;
    }

    .brand-card {

        background: white;

        border-radius: 16px;

        overflow: hidden;
    }

    .brand-card img {

        width: 100%;

        height: 280px;

        object-fit: cover;
    }

    .topics-header {

        display: flex;

        justify-content: space-between;

        align-items: center;
    }

    .topics-header h2 {

        font-size: 72px;

        font-weight: 900;
    }

    .topic-buttons {

        display: flex;

        gap: 15px;

        flex-wrap: wrap;
    }

    .topic-btn {

        padding: 16px 30px;

        background: white;

        border: 2px solid #111;

        border-radius: 12px;

        font-weight: 700;

        cursor: pointer;

        transition: .3s;
    }

    .topic-btn:hover {

        background: #111;

        color: white;
    }


    /* category-section */
    .category-section {

        padding: 90px 0;

        background: #f5f5f5;

        border-top: 1px solid #ddd;
    }

    .section-title {

        font-size: 72px;

        font-weight: 900;

        margin-bottom: 50px;
    }

    .post-grid {

        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        gap: 30px;
    }

    .post-card {

        display: flex;

        flex-direction: column;

        text-decoration: none;

        color: inherit;



        transition:
            transform .3s ease,
            box-shadow .3s ease;
        overflow: hidden;


    }

    .post-card:hover {

        transform: translateY(-6px);
        box-shadow:
            0 20px 50px rgba(0, 0, 0, .12);

    }

    .post-content h3 {

        line-height: 1.4;

    }

    .post-content p {

        line-height: 1.8;

    }

    .post-card img {

        width: 100%;

        height: 260px;

        border-radius: 12px;

        object-fit: cover;

        transition: .4s;

    }

    .post-card:hover img {

        transform: scale(1.04);

    }

    .post-card h3 {

        margin: 16px 0 10px;

        font-size: 24px;

        line-height: 1.4;

        color: #222;

        transition: .3s;

    }

    .post-card:hover h3 {

        color: #d89b2b;

    }

    .section-btn {

        text-align: center;

        margin-top: 50px;
    }

    .section-btn button {

        background: #f5a623;

        border: none;

        padding: 18px 50px;

        border-radius: 10px;

        font-weight: 700;

        cursor: pointer;
    }


    .latest-section {

        background: #f5f5f5;

        padding: 100px 0;
    }

    .latest-grid {

        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        gap: 35px;
    }

    .latest-card {

        overflow: hidden;

        transition: .3s;

    }

    .latest-card:hover {

        transform: translateY(-6px);

    }

    .latest-card img {

        width: 100%;

        height: 260px;

        object-fit: cover;

        border-radius: 16px;

        transition: transform .3s ease;
    }

    .latest-content {

        padding: 20px;

    }

    .latest-content h3 {

        font-size: 28px;

        line-height: 1.4;

        color: var(--heading);

    }

    .newsletter {

        background: #f5f5f5;

        padding: 100px 0;

        border-top: 1px solid #ddd;
    }

    .newsletter-grid {

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 40px;

        align-items: center;
    }

    .newsletter h2 {

        font-size: 72px;

        font-weight: 900;
    }

    .newsletter-form {

        display: flex;
    }

    .newsletter-form input {

        flex: 1;

        height: 70px;

        padding: 0 20px;

        border: 2px solid #111;
    }

    .newsletter-form button {

        width: 220px;

        border: none;

        background: #111;

        color: white;

        font-weight: 700;
    }

    /* footer */
    /* .footer {

        background: #000;

        color: white;

        padding: 80px 0 20px;
    }

    .footer-grid {

        display: grid;

        grid-template-columns:
            2fr 1fr 1fr 1fr;

        gap: 50px;
    }

    .footer-brand h2 {

        font-size: 48px;

        margin-bottom: 20px;

        color: #f5a623;
    }

    .footer-links {

        display: flex;

        flex-direction: column;

        gap: 15px;
    }

    .footer-links h3 {

        margin-bottom: 15px;
    }

    .footer-links a {

        color: #ccc;
    }

    .footer-bottom {

        margin-top: 50px;

        padding-top: 20px;

        border-top:
            1px solid rgba(255, 255, 255, .15);

        text-align: center;
    } */

    /* .menu a.active{

        color:#f5a623;
    } */



    /* HOVER CHO CARD */

    .post-card,
    .latest-card,
    .brand-card {

        transition: .3s;
    }

    .post-card:hover,
    .latest-card:hover,
    .brand-card:hover {

        transform:
            translateY(-8px);
    }

    .post-card img,
    .latest-card img {

        transition: .3s;
    }

    .post-card:hover img,
    .latest-card:hover img {

        transform: scale(1.03);
    }









    /* logo */
    .logo img {

        height: 60px;
    }


    .post-meta {

        margin: 10px 0;

        display: flex;

        gap: 15px;

        color: #888;

        font-size: 14px;
    }

    .post-card p {

        margin-top: 10px;

        line-height: 1.6;

        color: #555;
    }

    /* latest-post */

    .latest-post {

        display: block;

        text-decoration: none;

        color: #fff;

        padding: 22px 0;

        border-bottom: 1px solid rgba(255, 255, 255, .1);

        transition: .3s;
    }

    .latest-post:hover {

        color: #ff9f1c;

        padding-left: 10px;
    }

    .latest-post span {

        color: #9c9c9c;

        font-size: 13px;

        display: block;

        margin-bottom: 10px;
    }

    .latest-post h4 {

        font-size: 20px;

        line-height: 1.4;
    }


    /* category */
    .category-hero {

        padding: 80px 0 40px;
    }

    .category-hero h1 {

        font-size: 64px;

        font-weight: 800;

        margin-bottom: 20px;
    }

    .category-hero p {

        font-size: 18px;

        color: #666;

        max-width: 700px;
    }

    .category-featured {

        margin: 40px 0 70px;
    }

    .category-posts {

        margin-bottom: 80px;
    }

    .pagination {

        display: flex;

        justify-content: center;

        gap: 10px;

        margin-bottom: 80px;
    }

    .page-btn {

        width: 48px;

        height: 48px;

        border: 1px solid #ddd;

        background: #fff;

        cursor: pointer;

        border-radius: 8px;

        transition: .3s;

    }

    .page-btn:hover {

        background: #111;

        color: #fff;

        .page-btn:hover {

            transform: translateY(-2px);

        }

    }

    .page-btn.active {

        transform: scale(1.05);

    }

    .page-btn:focus {

        outline: none;

    }


    .category-layout {

        display: grid;

        grid-template-columns:
            3fr 1fr;

        gap: 50px;

    }

    .category-sidebar {

        position: sticky;

        top: 120px;

        height: max-content;

    }

    .sidebar-box {

        background: #fff;

        border: 1px solid #ddd;

        border-radius: 12px;
        transition: .3s;

        padding: 25px;

        margin-bottom: 30px;

        box-shadow:

            0 10px 30px rgba(0, 0, 0, .05);


    }

    .sidebar-box:hover {

        box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

        .sidebar-box:hover {

            transform: translateY(-3px);

        }

    }

    .sidebar-box h3 {

        margin-bottom: 20px;

        font-size: 22px;

    }

    .category-sidebar .latest-post {

        color: #222;

        border-bottom: 1px solid #e5e5e5;

    }

    .category-sidebar .latest-post span {

        color: #888;

    }

    .category-sidebar .latest-post:hover {

        color: #f5a623;

    }

    .view-more-btn {

        display: inline-block;

        background: #f5a623;

        color: #111;

        padding: 18px 50px;

        border-radius: 10px;

        font-weight: 700;

        transition: .3s;

    }

    .view-more-btn:hover {

        background: #111;

        color: #fff;

    }

    /* ===========================
            NEWS HERO
    =========================== */

    .news-hero {

        background: #000;

        padding: 80px 0 60px;

    }

    .news-top {

        display: grid;

        grid-template-columns: 220px 420px 1fr;

        align-items: start;

        column-gap: 60px;

    }

    .news-tag {

        color: #f5a623;

        font-size: 20px;

        font-weight: 600;

        padding-top: 10px;

    }

    .news-description {

        color: #d2d2d2;

        font-size: 20px;

        line-height: 1.7;

    }

    .news-heading {

        display: flex;

        justify-content: flex-end;

    }

    .news-heading h1 {

        color: #fff;

        font-size: 78px;

        line-height: 1.05;

        font-weight: 300;

        text-align: left;

    }

    .news-heading span {

        color: #f5a623;

        font-family: Georgia, serif;

        font-style: italic;

        font-weight: 400;

    }

    /* =========================
    FEATURED CATEGORY
    ========================= */

    .category-featured {

        margin: 60px 0 80px;

    }

    .featured-category {

        display: grid;

        grid-template-columns: 1.4fr 1fr;

        gap: 50px;

        align-items: center;

    }

    .featured-category img {

        width: 100%;

        height: 520px;

        object-fit: cover;

        border-radius: 20px;

    }

    .featured-category-content h2 {

        font-size: 48px;

        line-height: 1.2;

        margin-bottom: 25px;

    }

    .featured-category-content p {

        color: #666;

        line-height: 1.8;

        margin-bottom: 30px;

    }

    .featured-category-content a {

        display: inline-block;

        padding: 15px 30px;

        background: #111;

        color: #fff;

        border-radius: 10px;

        transition: .3s;

    }

    .featured-category-content a:hover {

        background: #ff9f1c;

    }

    .post-layout {

        display: grid;

        grid-template-columns: 2fr 1fr;

        gap: 40px;

        align-items: start;

    }

    .sidebar {

        position: sticky;

        top: 120px;

        align-self: start;

        background: white;

        border: 1px solid #eee;

        border-radius: 18px;

        padding: 35px;

    }

    .sidebar-section {

        margin-bottom: 40px;

    }

    .sidebar-section h3 {

        font-size: 22px;

        margin-bottom: 20px;

        font-weight: 700;

    }

    .sidebar input {

        width: 100%;

        padding: 14px;

        border-radius: 10px;

        border: 1px solid #ddd;

    }

    .sidebar button {

        width: 100%;

        margin-top: 15px;

        padding: 15px;

        background: #111;

        color: white;

        border: none;

        border-radius: 10px;

        cursor: pointer;

    }

    .popular-item {

        display: flex;

        gap: 15px;

        margin-bottom: 20px;

    }

    .popular-item img {

        width: 90px;

        height: 70px;

        object-fit: cover;

        border-radius: 8px;

    }

    .popular-content {

        flex: 1;

    }

    .popular-content span {

        display: block;

        font-size: 13px;

        color: #888;

        margin-bottom: 6px;

    }

    .popular-content a {

        font-weight: 700;

        line-height: 1.4;

        transition: .3s;

    }

    .popular-content a:hover {

        color: #f5a623;

    }

    #trendingPosts {

        display: flex;

        flex-wrap: wrap;

        gap: 10px;

    }

    .trending-item {

        display: flex;

        justify-content: space-between;

        align-items: center;

        padding: 14px 18px;

        margin-bottom: 12px;

        border: 1px solid #eee;

        border-radius: 12px;

        text-decoration: none;

        color: #222;

        transition: .3s;

    }

    .trending-item div {

        font-weight: 700;

        font-size: 16px;

    }

    .trending-item span {

        width: 32px;

        height: 32px;

        border-radius: 50%;

        background: #f3f3f3;

        display: flex;

        justify-content: center;

        align-items: center;

        font-size: 13px;

        font-weight: 700;

    }

    .trending-item:hover {

        background: #d89b2b;

        color: #fff;

        transform: translateX(5px);

    }

    .trending-item:hover span {

        background: #fff;

        color: #d89b2b;

    }

    .trending-item div {

        display: flex;

        align-items: center;

        gap: 8px;

    }

    .trending-tag:hover {

        background: #111;

        color: white;

        border-color: #111;

    }

    .category-item {

        display: flex;

        justify-content: space-between;

        align-items: center;

        padding: 16px 0;

        border-bottom: 1px solid #eee;

        text-decoration: none;

        color: #333;

        transition: .3s;

    }

    .category-item:last-child {

        border-bottom: none;

    }

    .category-item:hover {

        color: #d89b2b;

        padding-left: 8px;

    }

    .category-sidebar {

        position: sticky;

        top: 120px;

        align-self: start;

    }

    .category-item span:first-child {

        font-weight: 600;

    }

    .category-item span:last-child {

        color: #888;

        font-size: 14px;

    }

    .featured-section {

        margin: 70px 0;

    }

    .featured-category-card {

        width: 100%;

        display: grid;

        grid-template-columns: 60% 40%;

        align-items: center;

        border-radius: 22px;

        overflow: hidden;

        background: #fff;

        box-shadow: 0 18px 60px rgba(0, 0, 0, .08);

    }

    .featured-left {

        height: 620px;

        overflow: hidden;

    }

    .featured-left img {

        width: 100%;


        object-fit: cover;

        transition: .5s;

    }

    .featured-category-card:hover img {

        transform: scale(1.06);

    }

    .featured-right {

        padding: 60px;

        min-width: 0;

    }

    .featured-right span {

        color: #d89b2b;

        font-weight: 700;

        letter-spacing: 3px;

        font-size: 14px;

    }

    .featured-right h2 {

        font-size: 52px;

        line-height: 1.15;

        margin: 20px 0;

        word-break: break-word;

    }

    .featured-right p {

        font-size: 20px;

        color: #666;

        line-height: 1.8;

        margin: 35px 0;

    }

    .featured-right a {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        padding: 18px 42px;
        text-decoration: none;

        border-radius: 40px;

        background: #111;

        color: #fff;

        font-weight: 600;

        transition: .3s;

    }

    .featured-right a:hover {

        background: #d89b2b;

    }

    .featured-meta {

        display: flex;

        gap: 30px;

        margin: 25px 0;

        font-size: 14px;

        color: #777;

    }

    .category-hero {

        padding: 90px 0;

        text-align: center;

    }

    .category-hero span {

        color: #d89b2b;

        letter-spacing: 4px;

        font-weight: 700;

        font-size: 14px;

    }

    .category-hero h1 {

        margin: 20px auto;

        max-width: 900px;

        font-size: 64px;

        line-height: 1.15;

    }

    .category-hero p {

        max-width: 700px;

        margin: auto;

        color: #666;

        font-size: 20px;

        line-height: 1.8;

    }

    /* ===========================
            FOOTER
    =========================== */

    .footer {

        margin-top: 100px;

        background: #111;

        color: #fff;

    }

    .footer-grid {

        display: grid;

        grid-template-columns:

            2fr 1fr 1fr 1.5fr;

        gap: 60px;

        padding: 80px 0;

    }

    .footer img {

        width: 180px;

        margin-bottom: 25px;

    }

    .footer-about p {

        color: #bdbdbd;

        line-height: 1.8;

    }

    .footer-links {

        display: flex;

        flex-direction: column;

        gap: 16px;

    }

    .footer-links h3 {

        margin-bottom: 15px;

        font-size: 24px;

    }

    .footer-links a {

        color: #bdbdbd;

        text-decoration: none;

        transition: .3s ease;

    }

    .footer-links a:hover {

        color: #d89b2b;

        padding-left: 8px;

    }

    .footer-newsletter h3 {

        font-size: 24px;

        margin-bottom: 15px;

    }

    .footer-newsletter p {

        color: #bdbdbd;

        margin-bottom: 20px;

    }

    .footer-newsletter input {

        width: 100%;

        padding: 15px;

        border: none;

        border-radius: 8px;

        margin-bottom: 15px;
        transition: border-color .3s,
            box-shadow .3s;

    }

    .footer-newsletter input:focus {

        outline: none;

        border-color: var(--primary);

        box-shadow: 0 0 0 4px rgba(216, 155, 43, .15);

    }

    .footer-newsletter button {

        width: 100%;

        padding: 15px;

        border: none;

        border-radius: 8px;

        background: #d89b2b;

        color: #fff;

        cursor: pointer;

        font-size: 16px;

        font-weight: 600;

        transition: .3s;

    }

    .footer-newsletter button:hover {

        background: #b77d15;
        transform: translateY(-2px);

    }

    .footer-bottom {

        border-top: 1px solid rgba(255, 255, 255, .08);

        text-align: center;

        padding: 25px;

        color: #999;

    }

    .latest-post {

        display: flex;

        gap: 15px;

        align-items: center;

        padding: 15px 0;

        border-bottom: 1px solid #eee;

        text-decoration: none;

    }

    .latest-thumb {

        width: 90px;

        height: 70px;

        overflow: hidden;

        border-radius: 10px;

        flex-shrink: 0;

    }

    .latest-thumb img {

        width: 100%;

        height: 100%;

        object-fit: cover;

        transition: .3s;

    }

    .latest-post:hover img {

        transform: scale(1.08);

    }

    .latest-info {

        flex: 1;

    }

    .latest-info span {

        font-size: 13px;

        color: #999;

    }

    .latest-info h4 {

        margin-top: 8px;

        color: #222;

        line-height: 1.4;

        font-size: 17px;

        transition: .3s;

    }

    .latest-post:hover h4 {

        color: #d89b2b;

    }

    .popular-post {

        display: flex;

        align-items: center;

        gap: 18px;

        padding: 20px 0;

        text-decoration: none;

        border-bottom: 1px solid #eee;

        transition: .3s;

    }

    .popular-number {

        width: 45px;

        height: 45px;

        border-radius: 50%;

        background: #111;

        color: #fff;

        display: flex;

        justify-content: center;

        align-items: center;

        font-weight: 700;

        transition: .3s;
        font-size: 18px;

    }

    .popular-info {

        flex: 1;

    }

    .popular-info h4 {

        color: #222;

        line-height: 1.4;

        transition: .3s;
        margin: 6px 0;

        font-size: 18px;

        font-weight: 700;

    }

    .popular-info span {

        display: block;

        margin-bottom: 8px;

        font-size: 14px;

        font-weight: 800;

        color: #222;

        letter-spacing: .3px;

    }

    .popular-post:hover .popular-number {

        background: #d89b2b;
        transform: scale(1.08);
        transition: .3s;

    }

    .popular-post:hover h4 {

        color: #d89b2b;
        transform: translateX(5px);

    }

    .popular-post:last-child {

        border-bottom: none;

    }

    #newsletterMessage {

        margin-top: 15px;

        min-height: 20px;

        font-size: 14px;

        font-weight: 600;

    }

    .success {

        color: #28a745;

    }

    .error {

        color: #dc3545;

    }

    /*==========================
    NEWSLETTER
    ==========================*/
    .newsletter-message {

        margin-top: 14px;

        min-height: 20px;

        font-size: 14px;

        line-height: 1.5;

        font-weight: 600;

    }

    .success {

        color: #28a745;

    }

    .error {

        color: #dc3545;

    }

    .newsletter-message {

        opacity: 0;

        transition: .3s;

    }

    .show {

        opacity: 1;

    }

    .loading {

        opacity: .7;

        cursor: not-allowed;

        pointer-events: none;

    }

    .post-content {

        padding: 20px;

    }

    .latest-content {

        padding: 18px 0;

    }