/* ===== CYBER NEWS TEMPLATE CSS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #e8eef4;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  color: #1d2c3a;
  padding: 2rem 1.5rem;
}

.cyber-unique {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 2.5rem 2.5rem 2rem 2rem;
  box-shadow: 0 25px 45px -18px rgba(18,45,65,0.25);
  overflow: hidden;
  border: 1px solid #ced9e5;
}

/* Top Bar */
.top-bar {
  background: #ffffff;
  padding: 1.3rem 2.5rem 0.8rem 2.5rem;
  border-bottom: 2px solid #b7c9dd;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
}

.title-block { 
  display: flex; 
  flex-direction: column; 
}

.title-main {
  font-size: 2.6rem; 
  font-weight: 560; 
  letter-spacing: -0.02em;
  color: #0d2e48; 
  line-height: 1.1;
}

.title-main i { 
  color: #38658f; 
  margin-right: 10px; 
  font-size: 2.3rem; 
}

.title-main span { 
  font-weight: 320; 
  color: #507999; 
  font-style: italic; 
}

.copy-line {
  font-size: 1rem; 
  margin-top: 6px; 
  color: #456f94; 
  background: #e7f0fa;
  padding: 0.25rem 1.2rem; 
  border-radius: 30px; 
  align-self: flex-start;
  border: 1px solid #b8d0e5;
}

.copy-line i { 
  margin-right: 6px; 
  color: #1d4e7c; 
}

.header-actions { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

.author-login {
  background: #f0f6ff; 
  color: #1d3d5c; 
  border: 1px solid #aac0d6;
  padding: 0.45rem 1.2rem; 
  border-radius: 40px; 
  font-size: 0.95rem;
  font-weight: 520; 
  text-decoration: none; 
  display: flex; 
  align-items: center;
  gap: 6px; 
  transition: 0.2s;
}

.author-login:hover { 
  background: #1d3d5c; 
  color: white; 
}

.pardeep-badge {
  background: #1d3d5c; 
  color: #f0f7ff; 
  padding: 0.5rem 1.4rem;
  border-radius: 40px; 
  font-weight: 480; 
  font-size: 1.1rem;
  border: 1px solid #aac0d6; 
  box-shadow: 0 2px 0 #909eae;
}

.pardeep-badge i { 
  margin-right: 8px; 
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none; 
  background: #1d3d5c; 
  color: white; 
  border: none;
  width: 48px; 
  height: 48px; 
  border-radius: 12px; 
  font-size: 1.8rem;
  cursor: pointer; 
  align-items: center; 
  justify-content: center;
  border: 1px solid #aac0d6; 
  box-shadow: 0 2px 0 #909eae;
}

.mobile-categories {
  display: none; 
  background: #f2f7fd; 
  padding: 1.5rem;
  border-bottom: 2px solid #b7c9dd;
  grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); 
  gap: 1rem;
}

.mobile-categories.show { 
  display: grid; 
}

.mobile-cat-item {
  background: transparent; 
  border: 1.5px solid #346a93; 
  color: #1d4a73;
  font-weight: 530; 
  padding: 0.8rem 1rem;
  border-radius: 40px 12px 40px 12px; 
  display: flex; 
  align-items: center;
  justify-content: center; 
  gap: 8px; 
  font-size: 1rem; 
  text-decoration: none;
}

.mobile-cat-item:hover { 
  background: #1f4462; 
  color: white; 
}

/* Navigation */
.category-nav {
  background: #f8fafd;
  padding: 0.8rem 2.5rem;
  border-bottom: 1px solid #c9d9ea;
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem 2.5rem;
  align-items: center;
  font-weight: 550;
}

.category-nav a {
  text-decoration: none;
  color: #1d4a73;
  font-size: 1.1rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.category-nav a:hover,
.category-nav a.active {
  border-bottom-color: #1d4a73;
  color: #0d2e48;
}

.category-nav i {
  color: #38658f;
  font-size: 0.9rem;
}

/* Breaking Ticker */
.breaking-ticker {
  background: #ffebcc;
  padding: 0.6rem 0;
  border-bottom: 1px solid #ffd966;
  border-top: 1px solid #ffd966;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.ticker-wrap {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
}

.ticker-item {
  display: inline-block;
  color: #1d2c3a;
  font-weight: 500;
  font-size: 1.2rem;
  margin-right: 3rem;
}

.ticker-item i {
  margin: 0 0.7rem;
  color: #cc3300;
}

.ticker-item .breaking-badge {
  background: #cc3300;
  color: white;
  padding: 0.2rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 1rem;
  display: inline-block;
}

@keyframes tickerWalk {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.breaking-ticker:hover .ticker-wrap {
  animation-play-state: paused;
}

/* Featured Zone */
.featured-zone {
  display: grid; 
  grid-template-columns: 2fr 1fr; 
  gap: 0;
  background: #f2f7fd; 
  border-bottom: 1px solid #c9d9ea;
}

.left-featured { 
  padding: 2rem 2rem 2rem 2.5rem; 
  border-right: 1px dashed #b1c7de; 
}

.section-flag { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  margin-bottom: 1.5rem; 
}

.section-flag i { 
  font-size: 2rem; 
  color: #1e4f7a; 
  background: #dae9f9; 
  padding: 10px; 
  border-radius: 20px; 
}

.section-flag h2 { 
  font-weight: 520; 
  font-size: 1.9rem; 
  color: #173f5c; 
}

.category-panel { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 12px 20px; 
  margin-bottom: 2.2rem; 
}

.cat-pill {
  background: transparent; 
  border: 1.5px solid #346a93; 
  color: #1d4a73;
  font-weight: 530; 
  padding: 0.5rem 1.5rem 0.5rem 1.2rem;
  border-radius: 40px 12px 40px 12px; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
}

.cat-pill i { 
  color: #2f628b; 
}

.unique-feat-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); 
  gap: 1.5rem; 
}

.feat-card {
  background: #ffffffd9; 
  border: 1px solid #bed4ec; 
  border-radius: 24px 8px 24px 8px;
  padding: 1.4rem 1.2rem;
}

.feat-card .category-ref { 
  font-size: 0.75rem; 
  text-transform: uppercase; 
  color: #32648b; 
  border-left: 4px solid #32648b; 
  padding-left: 10px; 
  margin-bottom: 0.7rem; 
}

.feat-card h4 { 
  font-size: 1.3rem; 
  font-weight: 520; 
  margin: 0.5rem 0 0.4rem; 
}

.feat-card .small-excerpt { 
  color: #2b506e; 
  font-size: 0.9rem; 
}

.right-unique { 
  background: #eaf1fa; 
  padding: 2rem; 
  display: flex; 
  flex-direction: column; 
}

.single-preview {
  background: #ffffffdb; 
  border: 2px solid #a6c2de; 
  border-radius: 18px 36px 18px 36px;
  padding: 1.8rem 1.5rem;
}

.single-preview .pre-label { 
  font-size: 0.9rem; 
  color: #1f4e76; 
  background: #d9eafc; 
  padding: 0.2rem 1rem; 
  border-radius: 30px; 
  display: inline-block; 
  margin-bottom: 1rem; 
  border: 1px solid #9fb9d3; 
}

.single-preview h3 { 
  font-size: 2.2rem; 
  font-weight: 490; 
  color: #0b2c44; 
}

.preview-meta { 
  display: flex; 
  gap: 1.2rem; 
  color: #3e6c90; 
  border-bottom: 1px solid #c0d6ed; 
  padding-bottom: 0.8rem; 
  margin-bottom: 1rem; 
  flex-wrap: wrap; 
}

.continue { 
  color: #1a4972; 
  font-weight: 550; 
  border-bottom: 2px dotted; 
  text-decoration: none; 
}

/* Blog Section */
.blog-section { 
  padding: 2.5rem; 
}

.section-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-bottom: 2rem; 
  flex-wrap: wrap; 
}

.section-header h2 { 
  font-size: 2rem; 
  color: #0d2e48; 
}

.view-all { 
  color: #1d4e79; 
  text-decoration: none; 
  font-weight: 500; 
}

.blog-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); 
  gap: 2rem; 
}

.blog-card { 
  background: white; 
  border: 1px solid #cdddec; 
  border-radius: 24px 8px 24px 8px; 
  overflow: hidden; 
}

.blog-image { 
  position: relative; 
  height: 160px; 
  background: #d4e2f0; 
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category { 
  position: absolute; 
  top: 1rem; 
  left: 1rem; 
  background: #1d3d5c; 
  color: white; 
  padding: 0.3rem 1rem; 
  border-radius: 20px; 
  font-size: 0.8rem; 
}

.blog-content { 
  padding: 1.5rem; 
}

.blog-content h3 { 
  font-size: 1.2rem; 
  margin-bottom: 0.5rem; 
}

.blog-content a { 
  color: #0d2e48; 
  text-decoration: none; 
}

.blog-meta { 
  display: flex; 
  gap: 1rem; 
  color: #456f94; 
  font-size: 0.9rem; 
  margin: 1rem 0; 
}

/* Newsletter Section */
.newsletter-section { 
  padding: 2rem 2.5rem; 
}

.newsletter-box { 
  background: #e7f0fa; 
  border-radius: 48px 18px 48px 18px; 
  padding: 2.5rem; 
  text-align: center; 
}

.newsletter-form { 
  display: flex; 
  max-width: 500px; 
  margin: 1.5rem auto; 
  gap: 1rem; 
  flex-wrap: wrap; 
}

.newsletter-form input { 
  flex: 1; 
  padding: 1rem; 
  border: 1px solid #cdddec; 
  border-radius: 40px; 
  min-width: 200px; 
}

.newsletter-form button { 
  background: #1d3d5c; 
  color: white; 
  padding: 1rem 2rem; 
  border: none; 
  border-radius: 40px; 
  cursor: pointer; 
}

.newsletter-form button:hover {
  background: #2b4f72;
}

/* Article Styling */
.article-main { 
  padding: 3rem 2.5rem 2rem; 
  background: #ffffff; 
}

.article-card-single { 
  max-width: 950px; 
  margin: 0 auto; 
  background: #fbfdff; 
  border-radius: 48px 18px 48px 18px; 
  border: 1px solid #cdddec; 
  padding: 2.2rem 2.8rem; 
}

.article-card-single h1 { 
  font-size: 3rem; 
  font-weight: 540; 
  color: #0f304b; 
}

.article-card-single .post-details { 
  display: flex; 
  gap: 2rem; 
  margin: 0.7rem 0 2rem; 
  color: #3b6283; 
  border-bottom: 1px solid #cbdae9; 
  padding-bottom: 1.2rem; 
}

/* Footer */
.footer-boxed {
  background: #e4eef9;
  border-top: 2px solid #b7cee6;
  padding: 2.2rem 2.5rem;
}

.footer-container {
  background: #ffffffde;
  border-radius: 48px 18px 48px 18px;
  border: 2px solid #a1bedb;
  padding: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 2rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.5rem;
  align-items: center;
}

.contact-item {
  background: #d8e8fa;
  padding: 0.5rem 1.4rem;
  border-radius: 36px;
  color: #1c4970;
  border: 1px solid #8fb0cf;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-item a {
  color: #1c4970;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.footer-links-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.2rem;
  align-items: center;
}

.footer-links-panel a {
  color: #1d4e79;
  font-weight: 520;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-panel a:hover {
  border-bottom-color: #1d4e79;
}

.disclaimer-privacy-block {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  background: #eaf3fd;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid #7da2c4;
  width: fit-content;
}

.disclaimer-privacy-block span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e507b;
}

.copyright-final {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  color: #38658b;
  font-size: 0.95rem;
  border-top: 2px dashed #a3bedc;
  padding-top: 1.2rem;
}

.copyright-final a {
  color: #38658b;
  text-decoration: none;
}

.copyright-final a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .featured-zone {
    grid-template-columns: 1fr;
  }
  
  .left-featured {
    border-right: none;
  }
}

@media screen and (max-width: 768px) {
  body { 
    padding: 1rem 0.8rem; 
  }
  
  .mobile-menu-btn { 
    display: flex; 
  }
  
  .category-panel { 
    display: none; 
  }
  
  .footer-container { 
    flex-direction: column; 
  }
  
  .footer-links-panel { 
    justify-content: center; 
  }
  
  .contact-row { 
    justify-content: center; 
  }
  
  .disclaimer-privacy-block { 
    width: 100%; 
    justify-content: center; 
  }
  
  .category-nav { 
    padding: 0.8rem 1.2rem; 
    gap: 1rem; 
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  
  .category-nav a {
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  .title-main {
    font-size: 1.8rem;
  }
  
  .title-main i {
    font-size: 1.6rem;
  }
  
  .pardeep-badge {
    display: none;
  }
  
  .author-login {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .top-bar {
    padding: 1rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
  
  .unique-feat-grid {
    grid-template-columns: 1fr;
  }
  
  .article-card-single {
    padding: 1.5rem;
  }
  
  .article-card-single h1 {
    font-size: 2rem;
  }
  
  .footer-links-panel {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-item {
    width: 100%;
  }
}