/* Reset */
body {
    font-family: Arial;
    background: #f5f5f5;
    margin: 0;
}

/* Container */
.container {
    max-width: 500px;
    margin: auto;
}


/* 📰 Newspaper Style Hindi Logo */
.logo {
    text-align: center;

    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
    color: #b71c1c;

    font-size: 72px;
    font-weight: 900;

    padding: 8px 10px;     /* 🔥 side space add */
    margin: 0 10px;        /* 🔥 container से gap */

    line-height: 1.1;
    letter-spacing: 1px;

    font-family: "Noto Serif Devanagari", "Mangal", serif;

    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);

    border-radius: 6px;    /* 🔥 soft look */
    border-bottom: 1px solid #e0e0e0;
}


/* Links */
a {
    text-decoration: none;
    color: black;
}

/* News box */
.news-box {
    background: white;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
}

/* Homepage headline */
.news-box h2 {
    font-size: 20px;
    line-height: 1.4;
}

/* Images */
img {
    width: 100%;
    height: auto;
    display: block;
}

/* Single page title */
.title {
    font-size: 26px;
    margin: 10px;
}

/* Content */
.content {
    font-size: 18px;
    line-height: 1.6;
    margin: 10px;
}

/* Back button */
.back-btn {
    display: block;
    margin: 15px;
    color: #d32f2f;
}

/* Mobile */
@media (max-width: 600px) {

    .news-box h2 {
        font-size: 18px;
    }

    .title {
        font-size: 22px;
    }

    .content {
        font-size: 17px;
    }

    .logo {
        font-size: 40px;
        padding: 6px 8px;
        margin: 0 8px;
    }
}