* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html,
body {
   width: 1080px;
   margin: 0 auto;
   font-family: 'SolaimanLipi', 'Hind Siliguri', sans-serif;
   background: linear-gradient(135deg, #003366, #000c1f);
   color: #ffffff;
}

.news-wrapper {
   width: 1080px;
   background: #1b294f;
   box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
   margin: 20px auto;
}

.news-card {
   position: relative;
   width: 1080px;
   height: 1080px;
   display: flex;
   flex-direction: column;
   background: linear-gradient(135deg, #11172c, #1b294f);
}

.image-section {
   position: relative;
   height: 680px;
   background: #222;
   overflow: hidden;
}

.image-section img.top-image {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.no-image-placeholder {
   background: #333;
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.no-image-placeholder span {
   color: #fff;
   font-size: 24px;
}

.site-icon {
   position: absolute;
   top: 20px;
   left: 20px;
   height: 70px;
   background: transparent;
   padding: 5px 10px;
   box-shadow: none;
}

.site-icon img {
   height: 60px;
   width: auto;
   max-width: 200px;
}

.date-badge {
   position: absolute;
   top: 20px;
   right: 20px;
   background: #c1121f;
   color: white;
   padding: 10px 20px;
   font-size: 22px;
   font-weight: bold;
   border-radius: 30px;
   box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.headline-section {
   padding: 30px 60px 10px;
   text-align: center;
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}

.headline {
   color: #ffd700;
   font-weight: 800;
   line-height: 1.3;
   text-shadow: 2px 2px 10px #000;
   max-height: 170px;
   overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   font-size: 70px;
   word-break: break-word;
}

.read-more {
   color: #ffffff;
   font-size: 26px;
   font-weight: 600;
   margin-top: 10px;
}

.down-arrow {
   color: #fff;
   font-size: 36px;
   margin-top: 10px;
}

.footer {
   background: #c1121f;
   color: white;
   font-size: 24px;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 30px;
}

.footer .qr {
   height: 60px;
}

.footer .center-text {
   flex: 1;
   text-align: center;
   font-weight: 800;
   color: #fff;
   font-size: 26px;
   position: relative;
}

.footer .center-text::before,
.footer .center-text::after {
   content: '';
   position: absolute;
   height: 4px;
   width: 80%;
   left: 10%;
   bottom: -8px;
   background: #ffd700;
   border-radius: 2px;
}

.footer .socials {
   display: flex;
   gap: 10px;
   align-items: center;
}

.footer .socials i {
   font-size: 22px;
   color: white;
}

.footer .socials span {
   color: #fff;
   font-size: 20px;
}

.download-button {
   margin: 30px 0;
   text-align: center;
}

.download-button button {
   padding: 14px 32px;
   font-size: 20px;
   font-weight: bold;
   color: white;
   background-color: #007bff;
   border: none;
   border-radius: 10px;
   cursor: pointer;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
   transition: background-color 0.3s ease;
}

.download-button button:hover {
   background-color: #0056b3;
}

@media print {
   .download-button {
      display: none;
   }
}