:root{
    --mt-blue:#0057ff;
    --mt-cyan:#00c8ff;
    --mt-dark:#07111f;
    --mt-red:#e50914;
    --mt-yellow:#ffd400;
    --mt-bg:#f3f5f8;
    --mt-text:#0f172a;
    --mt-muted:#64748b;
    --mt-border:#e5e7eb;
    --mt-card:#ffffff;
}

*{box-sizing:border-box}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:var(--mt-bg);
    color:var(--mt-text);
}

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

.mt-container{
    width:min(1180px,94%);
    margin:0 auto;
}

.mt-topbar{
    background:var(--mt-dark);
    color:#fff;
    font-size:13px;
}

.mt-topbar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    padding:8px 0;
}

.mt-topbar-links{
    display:flex;
    gap:14px;
    color:#cbd5e1;
}

.mt-header{
    background:#fff;
    border-bottom:1px solid var(--mt-border);
}

.mt-header-inner{
    min-height:172px;
    display:grid;
    grid-template-columns:220px 1fr auto;
    align-items:center;
    gap:26px;
    padding:10px 0;
}

.mt-logo img{
    height:150px;
    width:auto;
    max-width:100%;
    display:block;
}

.mt-search{
    display:flex;
    align-items:center;
    background:#f1f5f9;
    border:1px solid #e2e8f0;
    border-radius:999px;
    padding:4px;
}

.mt-search input{
    flex:1;
    border:0;
    outline:0;
    background:transparent;
    padding:12px 16px;
    font-size:14px;
}

.mt-search button,
.mt-btn{
    border:0;
    border-radius:999px;
    padding:11px 17px;
    font-weight:800;
    cursor:pointer;
}

.mt-btn-primary{
    background:linear-gradient(135deg,var(--mt-blue),var(--mt-cyan));
    color:#fff;
}

.mt-btn-outline{
    background:#fff;
    color:var(--mt-blue);
    border:1px solid #bfdbfe;
}

.mt-actions{
    display:flex;
    gap:10px;
    align-items:center;
}

.mt-menu{
    background:#fff;
    border-bottom:1px solid var(--mt-border);
    position:sticky;
    top:0;
    z-index:80;
}

.mt-menu-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.mt-nav{
    display:flex;
    gap:22px;
    font-weight:800;
    font-size:15px;
    white-space:nowrap;
}

.mt-nav a{
    padding:15px 0;
    border-bottom:3px solid transparent;
}

.mt-nav a:hover{
    color:var(--mt-blue);
    border-bottom-color:var(--mt-blue);
}

.mt-breaking{
    background:#fff;
    border-bottom:1px solid var(--mt-border);
}

.mt-breaking-inner{
    display:flex;
    gap:12px;
    align-items:center;
    padding:11px 0;
    overflow:hidden;
}

.mt-breaking-label{
    background:var(--mt-red);
    color:#fff;
    padding:6px 10px;
    border-radius:8px;
    font-size:13px;
    font-weight:900;
    white-space:nowrap;
}

.mt-breaking-text{
    font-size:14px;
    white-space:nowrap;
}

.mt-main{
    padding:30px 0 50px;
}

.mt-layout{
    display:grid;
    grid-template-columns:minmax(0,2fr) 360px;
    gap:24px;
}

.mt-hero-pro{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(15,23,42,.08);
}

.mt-hero-media{
    min-height:420px;
    padding:30px;
    background:
        linear-gradient(180deg,rgba(7,17,31,.15),rgba(7,17,31,.88)),
        linear-gradient(135deg,#07111f,#0057ff 60%,#00c8ff);
    display:flex;
    align-items:flex-end;
    color:#fff;
}

.mt-kicker{
    display:inline-block;
    background:var(--mt-red);
    color:#fff;
    padding:6px 10px;
    border-radius:8px;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
}

.mt-hero-pro h1{
    font-size:48px;
    line-height:1.02;
    margin:15px 0 12px;
    max-width:780px;
}

.mt-hero-pro p{
    font-size:19px;
    color:#e2e8f0;
    max-width:720px;
    margin:0 0 14px;
}

.mt-meta{
    color:#cbd5e1;
    font-size:13px;
    font-weight:700;
}

.mt-mini-grid{
    margin-top:18px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.mt-story-card,
.mt-panel{
    background:#fff;
    border-radius:18px;
    padding:18px;
    box-shadow:0 10px 24px rgba(15,23,42,.06);
}

.mt-story-card{
    min-height:180px;
}

.mt-story-card h3{
    margin:12px 0 8px;
    font-size:24px;
    line-height:1.12;
}

.mt-story-card p{
    margin:0;
    color:var(--mt-muted);
}

.mt-thumb{
    height:145px;
    border-radius:14px;
    background:linear-gradient(135deg,#dbeafe,#60a5fa);
    margin-bottom:14px;
}

.mt-sidebar{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.mt-panel h2{
    margin:0 0 16px;
    font-size:24px;
}

.mt-ranking{
    display:flex;
    flex-direction:column;
    gap:0;
}

.mt-ranking a{
    display:grid;
    grid-template-columns:42px 1fr;
    gap:12px;
    padding:14px 0;
    border-bottom:1px solid var(--mt-border);
    font-weight:800;
}

.mt-ranking span{
    font-size:30px;
    color:var(--mt-blue);
    font-weight:900;
    line-height:1;
}

.mt-timeline a{
    display:grid;
    grid-template-columns:52px 1fr;
    gap:12px;
    padding:12px 0;
    border-bottom:1px solid var(--mt-border);
    font-weight:800;
}

.mt-timeline time{
    color:var(--mt-red);
    font-weight:900;
}

.mt-section{
    margin-top:34px;
}

.mt-section-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:3px solid var(--mt-dark);
    margin-bottom:18px;
}

.mt-section-head h2{
    margin:0;
    background:var(--mt-dark);
    color:#fff;
    padding:9px 14px;
    border-radius:10px 10px 0 0;
    font-size:24px;
}

.mt-editorial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.mt-news-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 24px rgba(15,23,42,.06);
}

.mt-news-card-body{
    padding:16px;
}

.mt-news-card h3{
    margin:10px 0 8px;
    font-size:20px;
    line-height:1.14;
}

.mt-news-card p{
    color:var(--mt-muted);
    margin:0;
}

.mt-states-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:10px;
}

.mt-state-pill{
    background:#fff;
    border:1px solid var(--mt-border);
    border-radius:999px;
    padding:10px 12px;
    text-align:center;
    font-weight:800;
}

.mt-video-block{
    background:var(--mt-dark);
    color:#fff;
    border-radius:22px;
    padding:24px;
}

.mt-video-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:18px;
}

.mt-video-card{
    background:#101827;
    border-radius:18px;
    overflow:hidden;
}

.mt-video-thumb{
    aspect-ratio:16/9;
    background:linear-gradient(135deg,var(--mt-red),#111827);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
}

.mt-video-card h3{
    padding:15px;
    margin:0;
}

.mt-shorts-row{
    display:flex;
    gap:16px;
    overflow-x:auto;
    padding-bottom:8px;
}

.mt-short-card{
    min-width:190px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 24px rgba(15,23,42,.06);
}

.mt-short-thumb{
    aspect-ratio:9/16;
    background:linear-gradient(180deg,#0057ff,#07111f);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:40px;
}

.mt-short-card h3{
    padding:13px;
    margin:0;
    font-size:15px;
}

.mt-newsletter{
    background:linear-gradient(135deg,#07111f,#0057ff);
    color:#fff;
    border-radius:24px;
    padding:32px;
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:26px;
    align-items:center;
}

.mt-newsletter h2{
    font-size:32px;
    margin:0 0 8px;
}

.mt-newsletter-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.mt-newsletter-form input{
    border:0;
    border-radius:999px;
    padding:14px 16px;
    outline:0;
}

.mt-newsletter-form button{
    grid-column:1/-1;
}

.mt-footer{
    background:#07111f;
    color:#cbd5e1;
    margin-top:45px;
    padding:42px 0;
}

.mt-footer-grid{
    display:grid;
    grid-template-columns:2fr repeat(3,1fr);
    gap:26px;
}

.mt-footer h3{
    color:#fff;
    margin:0 0 12px;
}

.mt-footer a{
    display:block;
    margin:8px 0;
    color:#cbd5e1;
}

@media(max-width:980px){
    .mt-header-inner{
        grid-template-columns:1fr;
        text-align:center;
    }

    .mt-logo img{
        margin:0 auto;
        height:120px;
    }

    .mt-actions,
    .mt-nav,
    .mt-topbar-inner{
        justify-content:center;
        flex-wrap:wrap;
    }

    .mt-layout{
        grid-template-columns:1fr;
    }

    .mt-editorial-grid,
    .mt-video-grid,
    .mt-newsletter,
    .mt-footer-grid{
        grid-template-columns:1fr;
    }

    .mt-states-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .mt-hero-pro h1{
        font-size:36px;
    }
}

@media(max-width:560px){
    .mt-mini-grid,
    .mt-newsletter-form{
        grid-template-columns:1fr;
    }

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

    .mt-hero-media{
        min-height:360px;
        padding:22px;
    }

    .mt-hero-pro h1{
        font-size:31px;
    }

    .mt-menu{
        overflow-x:auto;
    }
}
