body {
    font-family: 'Hind Siliguri', sans-serif;
    margin: 0;
    padding: 20px;
    background: linear-gradient(135deg, #f0f4f7, #d9e2ec);
}

.form-section {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    margin-bottom: 20px;
}

.form-section label {
    display: block;
    margin: 8px 0 4px;
    font-weight: 600;
}

.form-section input,
.form-section button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

button {
    background: #2c3e50;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

button:hover {
    background: #1a242f;
}

.template-wrapper {
    text-align: center;
}

.template {
    width: 1280px;
    height: 1280px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.template {
    width: 1280px;
    height: 1280px;
    margin: 0 auto;
    background-color: #ffffff;
    /* ডিফল্ট সাদা */
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: background-color 0.4s ease;
    /* মসৃণভাবে রঙ পরিবর্তন হবে */
}

.date {
    font-size: 50px;
    /* বড় তারিখ */
    font-weight: 700;
    color: #fff;
}

/* === Main Image === */
.main-img-wrapper {
    width: 96%;
    height: 560px;
    margin: 15px auto;
    overflow: hidden;
    border-radius: 8px;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ছবি পুরো ফ্রেমে ফিট হবে */
    object-position: center;
    display: block;
}


content {
    padding: 10px 20px;
    text-align: center;
}

.content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #000;
    line-height: 1.4;
    margin-bottom: 10px;
}

/* === “বিস্তারিত কমেন্ট” Button === */
.comment-note {
    display: inline-block;
    background: #b20000;
    color: #fff;
    padding: 16px 30px;
    /* বড় padding */
    border-radius: 8px;
    font-size: 28px;
    /* বড় টেক্সট */
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.comment-note:hover {
    background: #e61b1b;
    transform: translateY(-2px);
}

/* === Advertisement Section === */
.ad-section {
    width: 100%;
    height: 100px;
    /* নির্দিষ্ট উচ্চতা */
    margin: 0;
    /* Footer থেকে কোনো ফাঁকা নেই */
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.ad-section img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* ছবি কাটা পড়বে না */
    object-position: center;
    display: block;
}

/* === Footer === */
.footer {
    background: #b20000;
    /* লাল ব্যাকগ্রাউন্ড */
    color: #fff;
    text-align: center;
    padding: 18px 0;
    font-weight: 600;
    font-size: 28px;
    border-radius: 0 0 10px 10px;
    /* নিচের কোণায় গোলাকার */
}

.footer p {
    margin: 0;
    display: inline-block;
    line-height: 1.6;
}

.footer i {
    margin: 0 6px;
    color: #fff;
    font-size: 22px;
}

.footer strong {
    color: #fff;
    font-weight: 800;
}






/* বিজ্ঞাপন ব্যানার (ফুল 1280x100 ফিট) */

.header {
    position: relative;
    background: #c20000;
    padding: 15px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header {
    display: flex;
    /* লোগো ও তারিখ একই লাইনে রাখে */
    justify-content: space-between;
    /* লোগো বামে, তারিখ ডানে */
    align-items: center;
    /* উভয়টা এক লেভেলে থাকে */
    background: #c8102e;
    /* 🟥 ডিফল্ট লাল ব্যাকগ্রাউন্ড */
    color: #fff;
    /* লেখার রঙ সাদা */
    padding: 12px 20px;
    /* ভিতরে কিছু ফাঁকা জায়গা */
    border-radius: 8px 8px 0 0;
    /* কোণাগুলো একটু গোল */
}

.header .logo {
    height: 100px;
}


/* ================= “বিস্তারিত কমেন্ট” বোতাম ================= */
.cta {
    display: flex;
    justify-content: center;
    margin: 25px 0 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #102063;
    /* গভীর নেভি-নীল */
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    border-top: 4px solid #c91517;
    /* উপরের লাল বার */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #1a2b85;
    transform: translateY(-2px);
}

.cta-icon {
    background: linear-gradient(180deg, #ffa000, #ff6200);
    /* কমলা থেকে গাঢ় কমলা */
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-left: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}