:root {
    --accent: #2563eb;
    --bg-site: #f4f7f9;
    --bg-card: #ffffff;
    --text-main: #111111;
    --text-sub: #4b5563;
    --border-light: #e5e7eb;
    --font-primary: 'Noto Sans', 'Noto Sans Devanagari', sans-serif;
    --radius: 4px;
}

body {
    background-color: var(--bg-site);
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    margin: 0;
}

/* Header Overhaul */
.top-bar {
    background: #000;
    color: #fff;
    font-size: 11px;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-header {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.site-logo {
    font-size: 38px;
    font-weight: 900;
    text-decoration: none;
    color: #000;
    letter-spacing: -2px;
}

.nav-row {
    background: #fff;
    border-bottom: 3px solid var(--accent);
    padding: 12px 0;
}

.nav-row ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-row a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
}

/* News Ticker */
.ticker-bar {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
    font-size: 13px;
}

.ticker-label {
    background: var(--accent);
    color: #fff;
    padding: 2px 8px;
    font-weight: 900;
    margin-right: 15px;
    display: inline-block;
}

/* Hero Magazine Layout */
.magazine-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.hero-main {
    position: relative;
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
}

.hero-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-main-content {
    position: absolute;
    bottom: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #fff;
    width: 100%;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-item {
    background: var(--bg-card);
    padding: 15px;
    display: flex;
    gap: 15px;
    border-radius: var(--radius);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.side-img { width: 100px; height: 70px; object-fit: cover; border-radius: 2px; }

/* Section Headers */
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0 25px;
    border-bottom: 2px solid #000;
}

.section-head h2 {
    background: #000;
    color: #fff;
    padding: 5px 20px;
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
}

/* Grid Cards */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.card:hover { transform: translateY(-3px); }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card-body { padding: 15px; }
.card-title { font-size: 16px; font-weight: 800; line-height: 1.3; margin: 0; color: #111; }

.site-footer {
    background: #111;
    color: #fff;
    padding: 60px 0;
    margin-top: 80px;
    text-align: center;
}

@media (max-width: 1000px) {
    .magazine-hero, .premium-grid { grid-template-columns: 1fr; }
}
