/* ===== GLOBAL ===== */

body{
    margin:0;
    font-family:Arial;
    background:#ffffff;
    overflow-x:hidden;
    }
    
    /* ===== NEWSROOM BG ===== */
    
    .newsroom-bg{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
    pointer-events:none;
    }
    
    /* ===== HEADER ===== */
    
    .main-header{
    text-align:center;
    padding:20px;
    background:white;
    border-bottom:4px solid #FFC107;
    }
    
    .site-logo{
    width:500px;
    max-width:100%;
    }
    
    .tagline{
    font-size:14px;
    color:#c40000;
    }
    
    /* ===== NAVBAR ===== */
    
    .navbar{
    background:#c40000;
    }
    
    .navbar ul{
    display:flex;
    justify-content:center;
    list-style:none;
    padding:10px;
    margin:0;
    }
    
    .navbar li{
    margin:0 15px;
    }
    
    .navbar a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    }
    
    /* ===== AD ===== */
    
    .top-ad{
    text-align:center;
    padding:15px;
    background:#f5f5f5;
    }
    
    /* ===== CAROUSEL ===== */
    
    .carousel-section{
    padding:30px;
    background:#fff8e1;
    }
    
    .carousel{
    display:flex;
    gap:20px;
    }
    
    .carousel-item{
    flex:1;
    padding:40px;
    color:white;
    text-align:center;
    border-radius:10px;
    cursor:pointer;
    background:linear-gradient(135deg,#FFC107,#ffdb4d);
    transition:.3s;
    }
    
    .carousel-item:hover{
    transform:scale(1.05);
    }
    
    /* ===== CATEGORY ===== */
    
    .category-section{
    padding:30px 20px;
    }
    
    .category-section h2{
    border-left:6px solid #c40000;
    padding-left:10px;
    color:#FFC107;
    }
    
    .posts-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    }
    
    .post-card{
    background:white;
    padding:15px;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 10px 20px rgba(0,0,0,.1);
    }
    
    .post-card:hover{
    transform:translateY(-5px);
    }
    
    .post-card img{
    width:100%;
    border-radius:10px;
    }
    
    /* ===== MODAL ===== */
    
    .post-modal{
    
    display:none;
    position:fixed;
    inset:0;
    
    background:rgba(0,0,0,0.7);
    
    backdrop-filter:blur(10px);
    
    justify-content:center;
    align-items:center;
    
    z-index:999;
    
    }
    
    /* ===== MODAL BOX ===== */
    
    .modal-content{
    
    width:85%;
    max-width:850px;
    
    max-height:85vh;
    
    padding:25px;
    
    border-radius:18px;
    
    background:rgba(255,255,255,0.18);
    
    backdrop-filter:blur(25px);
    
    border:1px solid rgba(255,255,255,0.35);
    
    box-shadow:
    0 0 40px rgba(255,193,7,0.35),
    0 25px 60px rgba(0,0,0,.55);
    
    display:flex;
    flex-direction:column;
    gap:15px;
    
    transform:perspective(1000px) rotateX(10deg) rotateY(-10deg);
    
    transition:.5s;
    
    overflow:hidden;
    
    }
    
    .modal-content:hover{
    
    transform:perspective(1000px) rotateX(0) rotateY(0);
    
    }
    
    /* ===== CLOSE BUTTON ===== */
    
    .modal-close{
    
    position:absolute;
    top:12px;
    right:18px;
    
    width:34px;
    height:34px;
    
    display:flex;
    align-items:center;
    justify-content:center;
    
    border-radius:50%;
    
    font-size:20px;
    font-weight:bold;
    
    color:white;
    
    cursor:pointer;
    
    background:linear-gradient(135deg,#ff0000,#c40000);
    
    box-shadow:0 0 10px rgba(255,0,0,.6);
    
    transition:.3s;
    
    }
    
    .modal-close:hover{
    
    transform:scale(1.15);
    
    box-shadow:0 0 20px rgba(255,0,0,.9);
    
    }
    
    /* ===== IMAGE ===== */
    
    .modal-image-container{
    
    max-height:320px;
    
    overflow:auto;
    
    border-radius:12px;
    
    }
    
    .modal-image-container img{
    
    width:100%;
    height:auto;
    display:block;
    
    }
    
    /* ===== TITLE ===== */
    
    #modalTitle{
    
    color:#fff;
    
    margin:0;
    
    }
    
    /* ===== ARTICLE TEXT ===== */
    
    .modal-article{
    
    max-height:350px;
    
    overflow-y:auto;
    
    line-height:1.7;
    
    font-size:16px;
    
    color:#fff;
    
    padding-right:8px;
    
    }
    
    /* ===== FOOTER ===== */
    
    .footer{
    text-align:center;
    padding:20px;
    background:#c40000;
    color:white;
    }

    /* ===== EDITORIAL SECTION ===== */

.editorial-section{

    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    
    gap:25px;
    
    padding:30px;
    
    background:#fafafa;
    
    }
    
    .editorial-column{
    
    background:white;
    
    padding:15px;
    
    border-radius:10px;
    
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    
    }
    
    .editorial-column h2{
    
    border-left:5px solid #c40000;
    
    padding-left:10px;
    
    margin-bottom:15px;
    
    color:#c40000;
    
    }
    
    .editorial-post{
    
    display:flex;
    
    gap:12px;
    
    margin-bottom:12px;
    
    cursor:pointer;
    
    align-items:center;
    
    }
    
    .editorial-post img{
    
    width:80px;
    
    height:60px;
    
    object-fit:cover;
    
    border-radius:6px;
    
    }
    
    .editorial-post h3{
    
    font-size:14px;
    
    margin:0;
    
    color:#222;
    
    }

    /* ===== LEAD STORY IMAGE ===== */

.lead-story-item{

    display:flex;
    
    align-items:center;
    
    gap:12px;
    
    }
    
    .lead-thumb{
    
    width:70px;
    
    height:55px;
    
    object-fit:cover;
    
    border-radius:6px;
    
    box-shadow:0 3px 8px rgba(0,0,0,0.3);
    
    }
    
    .carousel-item h3{
    
    font-size:16px;
    
    margin:0;
    
    text-align:left;
    
    }

    #listenBtn {
        display: inline-block;
        margin-top: 15px;
        padding: 12px 25px;
        background: #c40000;
        color: #fff;
        font-weight: bold;
        border-radius: 10px;
        border: none;
        cursor: pointer;
        transition: 0.3s;
    }
    
    #listenBtn:hover {
        background: #ff5252;
    }

    /* ===== TOP BAR ===== */

.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 20px;
    background:#111;
    color:#fff;
    font-size:14px;
    }
    
    .top-right a{
    color:#fff;
    text-decoration:none;
    margin-left:15px;
    }
    
    /* ===== BREAKING NEWS ===== */
    
    .breaking-news-bar{
    display:flex;
    align-items:center;
    background:#c40000;
    color:#fff;
    font-weight:bold;
    }
    
    .breaking-news-bar span{
    background:#FFC107;
    color:#000;
    padding:10px 15px;
    font-weight:bold;
    }
    
    .breaking-news-bar marquee{
    padding:10px;
    }
    
    /* ===== NEW NAVBAR ===== */
    
    .nav-container{
    max-width:1400px;
    margin:auto;
    }
    
    .mobile-menu-btn{
    display:none;
    }
    
    .navbar ul{
    flex-wrap:wrap;
    }
    
    /* ===== FOOTER ===== */
    
    .footer{
    background:#111;
    color:white;
    padding:50px 20px 20px;
    }
    
    .footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    max-width:1400px;
    margin:auto;
    }
    
    .footer-box h3{
    color:#FFC107;
    margin-bottom:15px;
    }
    
    .footer-box p{
    line-height:1.8;
    }
    
    .footer-box ul{
    list-style:none;
    padding:0;
    }
    
    .footer-box ul li{
    margin-bottom:10px;
    }
    
    .footer-box ul li a{
    color:white;
    text-decoration:none;
    }
    
    .footer-box input{
    width:100%;
    padding:12px;
    border:none;
    border-radius:5px;
    margin-bottom:10px;
    }
    
    .footer-box button{
    width:100%;
    padding:12px;
    background:#c40000;
    color:white;
    border:none;
    cursor:pointer;
    font-weight:bold;
    }
    
    .footer-bottom{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.2);
    }
    
    /* ===== CATEGORY PAGE ===== */
    
    .category-hero{
    padding:50px;
    background:#fff8e1;
    text-align:center;
    }
    
    .category-hero h1{
    font-size:40px;
    color:#c40000;
    }
    
    /* ===== ARTICLE PAGE ===== */
    
    .article-page{
    max-width:1000px;
    margin:auto;
    padding:40px 20px;
    }
    
    .article-page img{
    width:100%;
    border-radius:10px;
    margin-bottom:20px;
    }
    
    .article-title{
    font-size:40px;
    margin-bottom:15px;
    }
    
    .article-content{
    line-height:2;
    font-size:18px;
    }
    
    /* ===== MOBILE ===== */
    
    @media(max-width:768px){
    
    .mobile-menu-btn{
    display:block;
    background:none;
    border:none;
    font-size:28px;
    color:white;
    padding:10px;
    cursor:pointer;
    }
    
    #navMenu{
    display:none;
    flex-direction:column;
    }
    
    #navMenu.show{
    display:flex;
    }
    
    .top-bar{
    flex-direction:column;
    gap:10px;
    }
    
    .site-logo{
    width:250px;
    }
    
    }

    /* BREAKING NEWS */

.breaking-wrapper{

    display:flex;
    
    height:50px;
    
    overflow:hidden;
    
    background:#111;
    
    color:white;
    
    align-items:center;
    
    }
    
    .breaking-label{
    
    background:#c40000;
    
    padding:15px 25px;
    
    font-weight:bold;
    
    white-space:nowrap;
    
    }
    
    .breaking-scroll{
    
    flex:1;
    
    overflow:hidden;
    
    }
    
    .breaking-track{
    
    display:flex;
    
    width:max-content;
    
    animation:breakingMove 30s linear infinite;
    
    }
    
    .breaking-track span{
    
    padding:0 50px;
    
    cursor:pointer;
    
    white-space:nowrap;
    
    }
    
    .breaking-track span:hover{
    
    color:#FFC107;
    
    }
    
    @keyframes breakingMove{
    
    0%{
    transform:translateX(100%);
    }
    
    100%{
    transform:translateX(-100%);
    }
    
    }
    
    /* AD SLIDER */
    
    #adSlider{
    
    position:relative;
    
    max-width:1200px;
    
    margin:20px auto;
    
    }
    
    #adSlider img{
    
    width:100%;
    
    height:150px;
    
    object-fit:cover;
    
    border-radius:10px;
    
    }
    
    .close-ad{
    
    position:absolute;
    
    top:10px;
    
    right:10px;
    
    width:35px;
    
    height:35px;
    
    border:none;
    
    border-radius:50%;
    
    background:red;
    
    color:white;
    
    cursor:pointer;
    
    z-index:2;
    
    }
    
    /* TRENDING */
    
    .trending-section{
    
    padding:30px;
    
    background:#fff4d4;
    
    }
    
    .trending-section h2{
    
    color:#c40000;
    
    margin-bottom:20px;
    
    }

    /* ================================= */
/* BREAKING NEWS */
/* ================================= */

.breaking-wrapper{
    display:flex;
    align-items:center;
    background:#111;
    height:55px;
    overflow:hidden;
    margin-bottom:15px;
    }
    
    .breaking-label{
    background:#c40000;
    color:white;
    font-weight:bold;
    padding:18px 25px;
    flex-shrink:0;
    }
    
    .breaking-scroll{
    flex:1;
    overflow:hidden;
    }
    
    .breaking-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:newsTicker 40s linear infinite;
    }
    
    .breaking-track span{
    padding:0 60px;
    white-space:nowrap;
    cursor:pointer;
    font-weight:bold;
    }
    
    .breaking-track span:hover{
    color:#FFC107;
    }
    
    @keyframes newsTicker{
    
    0%{
    transform:translateX(100%);
    }
    
    100%{
    transform:translateX(-100%);
    }
    
    }
    
    /* ================================= */
    /* PROFESSIONAL AD SLIDER */
    /* ================================= */
    
    .ad-slider{
    
    position:relative;
    
    width:90%;
    
    max-width:1200px;
    
    margin:20px auto;
    
    overflow:hidden;
    
    border-radius:15px;
    
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    
    }
    
    .ad-slider img{
    
    width:100%;
    
    height:220px;
    
    display:block;
    
    object-fit:cover;
    
    }
    
    .ad-close{
    
    position:absolute;
    
    top:12px;
    
    right:12px;
    
    width:35px;
    
    height:35px;
    
    border:none;
    
    border-radius:50%;
    
    background:red;
    
    color:white;
    
    font-size:18px;
    
    cursor:pointer;
    
    z-index:999;
    
    }
    
    /* ================================= */
    /* TRENDING */
    /* ================================= */
    
    .carousel-section h2{
    
    font-size:28px;
    
    color:#c40000;
    
    margin-bottom:20px;
    
    }
    .breaking-wrapper{
        display:flex;
        align-items:center;
        background:#111;
        height:55px;
        margin:15px auto;
        max-width:1200px;
        border-radius:8px;
        overflow:hidden;
        box-shadow:0 3px 12px rgba(0,0,0,.15);
    }
    
    .breaking-track span{
        padding:0 60px;
        white-space:nowrap;
        cursor:pointer;
        color:#fff;
        font-weight:bold;
        transition:.3s;
    }
    
    .breaking-track span:hover{
        color:#FFC107;
        text-decoration:underline;
    }

    /* ================================= */
/* HERO STORY */
/* ================================= */

.hero-story{

    display:grid;
    
    grid-template-columns:1.3fr 1fr;
    
    gap:30px;
    
    max-width:1300px;
    
    margin:30px auto;
    
    padding:25px;
    
    background:white;
    
    border-radius:15px;
    
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    
    }
    
    .hero-image img{
    
    width:100%;
    
    height:500px;
    
    object-fit:cover;
    
    border-radius:12px;
    
    }
    
    .hero-content{
    
    display:flex;
    
    flex-direction:column;
    
    justify-content:center;
    
    }
    
    .hero-tag{
    
    display:inline-block;
    
    width:max-content;
    
    background:#c40000;
    
    color:white;
    
    padding:8px 18px;
    
    border-radius:30px;
    
    font-weight:bold;
    
    margin-bottom:15px;
    
    }
    
    .hero-content h1{
    
    font-size:42px;
    
    line-height:1.2;
    
    margin-bottom:15px;
    
    color:#111;
    
    }
    
    .hero-content p{
    
    font-size:18px;
    
    line-height:1.8;
    
    color:#555;
    
    }
    
    .hero-btn{
    
    width:max-content;
    
    padding:14px 30px;
    
    border:none;
    
    background:#c40000;
    
    color:white;
    
    font-weight:bold;
    
    border-radius:8px;
    
    cursor:pointer;
    
    margin-top:20px;
    
    }
    
    .hero-btn:hover{
    
    background:#9f0000;
    
    }
    
    @media(max-width:900px){
    
    .hero-story{
    
    grid-template-columns:1fr;
    
    }
    
    .hero-image img{
    
    height:300px;
    
    }
    
    .hero-content h1{
    
    font-size:28px;
    
    }
    
    }

    .hero-btn{
        display:inline-block;
        padding:14px 30px;
        background:#c40000;
        color:#fff;
        text-decoration:none;
        border-radius:8px;
        font-weight:bold;
        margin-top:15px;
        transition:.3s;
        }
        
        .hero-btn:hover{
        background:#a00000;
        }