:root{
    --primary:#0f172a;
    --secondary:#1e293b;
    --accent:#dc2626;
    --background:#f8fafc;
    --surface:#ffffff;
    --text:#0f172a;
    --muted:#64748b;
    --border:#e2e8f0;
}

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

body{
    font-family:Inter,Arial,sans-serif;
    background:var(--background);
    color:var(--text);
    line-height:1.7;
}

a{
    text-decoration:none;
    color:inherit;
}

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

header{
    background:#fff;
    border-bottom:1px solid var(--border);
    padding:20px 0;
}

header h1{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
    font-size:32px;
    font-weight:800;
}

.tn-homepage{
    max-width:1400px;
    margin:40px auto;
    padding:0 20px;
}

.tn-homepage article{
    background:#fff;
    border:1px solid var(--border);
    padding:24px;
    margin-bottom:20px;
    border-radius:12px;
}

.tn-homepage article h2{
    font-size:28px;
    margin-bottom:10px;
    line-height:1.3;
}

.tn-homepage article p{
    color:var(--muted);
}

footer{
    margin-top:60px;
    padding:40px;
    text-align:center;
    background:#fff;
    border-top:1px solid var(--border);
}

.tn-hero{
    margin-bottom:50px;
}

.tn-hero-main{
    background:#fff;
    padding:20px;
    border-radius:12px;
    overflow:hidden;
}

.tn-hero-main h1{
    font-size:42px;
    line-height:1.2;
    margin:20px 0;
}

.tn-latest-news h2{
    margin-bottom:20px;
    font-size:32px;
}

.tn-news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.tn-card{
    background:#fff;
    padding:20px;
    border-radius:12px;
    border:1px solid #e2e8f0;
}

.tn-card h3{
    margin:15px 0;
    font-size:22px;
    line-height:1.3;
}

@media(max-width:992px){

    .tn-news-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .tn-news-grid{
        grid-template-columns:1fr;
    }

    .tn-hero-main h1{
        font-size:28px;
    }

}

.tn-container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

.tn-topbar{
    background:#0f172a;
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.tn-topbar .tn-container{
    display:flex;
    justify-content:space-between;
}

.tn-header{
    background:#fff;
    border-bottom:1px solid #e2e8f0;
}

.tn-header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.tn-logo a{
    font-size:38px;
    font-weight:800;
    color:#0f172a;
}

.tn-nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

.tn-breaking-bar{
    display:flex;
    align-items:center;
    background:#dc2626;
    color:#fff;
    padding:12px;
}

.tn-breaking-label{
    font-weight:700;
    margin-right:20px;
}

.tn-breaking-items{
    display:flex;
    gap:25px;
    overflow:hidden;
}

.tn-breaking-items a{
    color:#fff;
    white-space:nowrap;
}

.tn-trending{
    margin-bottom:50px;
}

.tn-trending h2{
    margin-bottom:20px;
    font-size:32px;
}

.tn-trending-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.tn-trending-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:12px;
    overflow:hidden;
}

.tn-trending-card h3{
    padding:15px;
    font-size:18px;
    line-height:1.4;
}

@media(max-width:992px){

    .tn-trending-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .tn-trending-grid{
        grid-template-columns:1fr;
    }

}
