:root{
--primary:#e10600;
--dark:#0f172a;
--soft:#f6f8fb;
--text:#1e293b;
--muted:#64748b;
--border:#e2e8f0;
--white:#ffffff;
--shadow:0 10px 30px rgba(15,23,42,.08);
--radius:18px;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Inter,system-ui,sans-serif;
background:var(--soft);
color:var(--text);
overflow-x:hidden;
}

/* =========================
BREAKING NEWS
========================= */

.breaking-bar{
position:sticky;
top:0;
z-index:9999;
display:flex;
align-items:center;
height:52px;
background:#020617;
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(255,255,255,.06);
overflow:hidden;
}

.breaking-label{
height:100%;
display:flex;
align-items:center;
padding:0 22px;
background:linear-gradient(135deg,#ff2d2d,#b30000);
font-size:12px;
font-weight:800;
letter-spacing:1px;
color:#fff;
text-transform:uppercase;
}

.breaking-container{
overflow:hidden;
width:100%;
}

.breaking-track{
display:flex;
align-items:center;
gap:40px;
white-space:nowrap;
animation:breakingMove 35s linear infinite;
}

.breaking-track:hover{
animation-play-state:paused;
}

.breaking-item{
display:flex;
align-items:center;
gap:12px;
}

.breaking-item img{
width:34px;
height:34px;
border-radius:50%;
object-fit:cover;
border:2px solid rgba(255,255,255,.1);
}

.breaking-item a{
color:#fff;
font-size:14px;
font-weight:500;
text-decoration:none;
transition:.3s;
}

.breaking-item a:hover{
color:#ff4d4d;
}

@keyframes breakingMove{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}

/* =========================
NAVBAR
========================= */

.nav-pro{
position:sticky;
top:52px;
z-index:999;
background:rgba(15,23,42,.92);
backdrop-filter:blur(12px);
border-bottom:1px solid rgba(255,255,255,.05);
padding:10px 0;
}

.navbar-brand{
font-size:28px;
font-weight:900;
letter-spacing:-1px;
}

.navbar-brand span{
color:var(--primary);
}

.nav-link{
font-size:14px;
font-weight:600;
color:#fff !important;
margin:0 4px;
padding:10px 14px !important;
border-radius:12px;
transition:.3s;
}

.nav-link:hover{
background:rgba(255,255,255,.08);
color:#fff !important;
}

.navbar-toggler{
border:none;
outline:none !important;
}

/* =========================
SEARCH
========================= */

.form-control{
border-radius:14px;
border:1px solid var(--border);
height:42px;
padding:0 15px;
box-shadow:none !important;
}

.form-control:focus{
border-color:var(--primary);
}

/* =========================
BUTTON
========================= */

.btn-danger{
background:linear-gradient(135deg,#ff2d2d,#c30000);
border:none;
border-radius:14px;
font-weight:700;
padding:10px 18px;
box-shadow:0 10px 25px rgba(225,6,0,.2);
}

.btn-danger:hover{
transform:translateY(-2px);
}

/* =========================
HERO
========================= */

.hero{
position:relative;
height:500px;
overflow:hidden;
border-radius:28px;
box-shadow:var(--shadow);
}

.hero img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .7s ease;
}

.hero:hover img{
transform:scale(1.08);
}

.overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:40px;
background:linear-gradient(
to top,
rgba(0,0,0,.92),
rgba(0,0,0,.35),
transparent
);
}

.overlay .badge{
padding:8px 14px;
border-radius:30px;
font-size:12px;
font-weight:700;
letter-spacing:.5px;
}

.overlay h5{
font-size:34px;
line-height:1.4;
font-weight:800;
margin-top:16px;
color:#fff;
max-width:85%;
}

/* =========================
VIEW BADGE
========================= */

.views-badge{
display:inline-flex;
align-items:center;
gap:8px;
padding:8px 14px;
border-radius:30px;
background:rgba(255,255,255,.12);
backdrop-filter:blur(8px);
font-size:13px;
font-weight:700;
color:#fff;
margin-top:8px;
}

.views-badge i{
color:#ff4d4d;
}

/* =========================
SECTION TITLE
========================= */

h4.font-weight-bold{
font-size:28px;
font-weight:800 !important;
position:relative;
padding-left:18px;
margin-bottom:28px !important;
}

h4.font-weight-bold::before{
content:'';
position:absolute;
left:0;
top:5px;
width:6px;
height:34px;
border-radius:10px;
background:var(--primary);
}

/* =========================
NEWS GRID
========================= */

.news-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:22px;
}

@media(min-width:768px){
.news-grid{
grid-template-columns:repeat(3,1fr);
}
}

.news-item{
background:#fff;
border-radius:24px;
overflow:hidden;
transition:.35s;
box-shadow:0 4px 20px rgba(15,23,42,.05);
border:1px solid rgba(15,23,42,.04);
}

.news-item:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(15,23,42,.12);
}

.news-item img{
width:100%;
height:210px;
object-fit:cover;
transition:.4s;
}

.news-item:hover img{
transform:scale(1.05);
}

.news-item .p-3{
padding:20px !important;
}

.news-item .badge{
border-radius:30px;
padding:7px 12px;
font-size:11px;
font-weight:700;
letter-spacing:.3px;
}

.news-item h6{
font-size:16px;
font-weight:800;
line-height:1.6;
margin-top:14px;
height:52px;
overflow:hidden;
color:#0f172a;
}

.news-meta{
display:flex;
justify-content:space-between;
align-items:center;
margin-top:18px;
font-size:12px;
color:var(--muted);
}

.news-view{
display:flex;
align-items:center;
gap:6px;
font-weight:700;
}

.news-item .btn{
margin-top:16px;
border-radius:14px;
padding:10px;
font-weight:700;
background:#0f172a;
border:none;
transition:.3s;
}

.news-item .btn:hover{
background:var(--primary);
}

/* =========================
TRENDING
========================= */

.trending{
background:#fff;
padding:24px;
border-radius:24px;
box-shadow:var(--shadow);
position:sticky;
top:120px;
}

.trending h5{
font-size:24px;
font-weight:800;
margin-bottom:25px;
}

.trending-item{
padding:18px 0;
border-bottom:1px solid var(--border);
}

.trending-item:last-child{
border:none;
padding-bottom:0;
}

.trending-item a{
display:block;
font-size:15px;
font-weight:700;
line-height:1.6;
color:#0f172a;
text-decoration:none;
transition:.3s;
}

.trending-item a:hover{
color:var(--primary);
padding-left:4px;
}

.trend-view{
margin-top:10px;
display:flex;
align-items:center;
gap:6px;
font-size:12px;
font-weight:600;
color:var(--muted);
}

/* =========================
ADS
========================= */

.ads728 img,
.ads300-slider img{
border-radius:22px;
box-shadow:0 8px 30px rgba(0,0,0,.08);
}

/* =========================
FOOTER
========================= */

.footer{
background:#020617;
color:#94a3b8;
position:relative;
overflow:hidden;
}

.footer::before{
content:'';
position:absolute;
width:400px;
height:400px;
background:rgba(225,6,0,.08);
filter:blur(100px);
top:-100px;
right:-100px;
}

.footer h4,
.footer h5{
color:#fff;
font-weight:800;
margin-bottom:20px;
}

.footer p{
line-height:1.8;
}

.footer a{
color:#94a3b8;
text-decoration:none;
transition:.3s;
}

.footer a:hover{
color:#fff;
padding-left:4px;
}

/* =========================
CONTACT
========================= */

.contact-box{
display:flex;
flex-direction:column;
gap:16px;
}

.contact-item{
display:flex;
align-items:center;
gap:16px;
padding:16px;
border-radius:20px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.06);
transition:.35s;
position:relative;
overflow:hidden;
}

.contact-item:hover{
transform:translateY(-4px);
background:rgba(255,255,255,.08);
}

.icon-wrap{
width:52px;
height:52px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
color:#fff;
}

.email-anim .icon-wrap{
background:linear-gradient(135deg,#ff3b3b,#ff6b6b);
}

.phone-anim .icon-wrap{
background:linear-gradient(135deg,#00c853,#69f0ae);
}

.contact-item small{
display:block;
font-size:12px;
color:#94a3b8;
margin-bottom:4px;
}

.contact-item h6{
margin:0;
font-size:15px;
font-weight:700;
color:#fff;
}

/* =========================
SOCIAL
========================= */

.social-animate{
display:flex;
gap:12px;
flex-wrap:wrap;
margin-top:15px;
}

.social-btn{
width:46px;
height:46px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:18px;
color:#fff;
transition:.35s;
box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.social-btn:hover{
transform:translateY(-5px) scale(1.08);
}

.social-btn.fb{
background:#1877f2;
}

.social-btn.ig{
background:linear-gradient(
45deg,
#f09433,
#dc2743,
#bc1888
);
}

.social-btn.tw{
background:#1da1f2;
}

.social-btn.yt{
background:#ff0000;
}

.social-btn.tt{
background:#000;
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.hero{
height:360px;
border-radius:20px;
}

.overlay{
padding:24px;
}

.overlay h5{
font-size:22px;
max-width:100%;
}

.news-grid{
grid-template-columns:1fr;
}

.news-item img{
height:220px;
}

.trending{
margin-top:30px;
position:relative;
top:0;
}

.breaking-label{
padding:0 14px;
font-size:11px;
}

.navbar-brand{
font-size:24px;
}

}

.footer .row{
align-items:flex-start;
}

.footer .mb-2 a{
display:inline-block;
line-height:1.7;
}

.footer p{
max-width:340px;
}

@media(max-width:768px){

.footer{
text-align:left;
}

.footer .col-md-2,
.footer .col-md-4{
margin-bottom:35px;
}

}

.ads728 video{
    width:100%;
    height:auto;
    border-radius:22px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    background:#000;
}

.brand-area{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    line-height:1.2;
}

.brand-info{
    margin-top:-4px;
    font-size:11px;
    color:rgba(255,255,255,.75);
    font-weight:500;
    letter-spacing:.3px;
}

.brand-info i{
    color:#ff3b3b;
    margin-right:4px;
}

@media(max-width:768px){

    .brand-info{
        font-size:10px;
    }

}

.news-tabs{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.tab-btn{
    border:none;
    padding:10px 16px;
    border-radius:30px;
    background:#eee;
    cursor:pointer;
    font-weight:600;
}

.tab-btn.active{
    background:#dc3545;
    color:#fff;
}