    /* ====== HEADER ====== */
    header {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 20px;
      z-index: 1000;
      background: rgba(10, 0, 0, 1);
    }

    header.scrolled {
      background: rgba(26, 26, 26, 1);
      backdrop-filter: blur(6px);
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
    
:root {
  --main-bg: #f4f4f4;
  --text-color: #333;
  --heading-color: #2d2d2d;
  --accent-color: #0036FF;
  --font-body: "Poppins", Arial, Helvetica, sans-serif;
  --font-mono: "Courier New", monospace;
  --radius: 8px;
  --max-width: 1200px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

main {
  margin: 5px auto 1.5rem;
  padding: 1.2rem;
  background: var(--main-bg);
  color: var(--text-color);
  width: 94%;
  max-width: var(--max-width);
  /*box-sizing: border-box;*/
  border-radius: var(--radius);
  /*overflow-x: hidden;*/
  line-height: 1.6;
  min-height: 95vh;
  text-align: left;
}
main h1, main h2, main h3, main h4, main h5, main h6 {
  font-family: var(--font-body);
  color: var(--heading-color);
  margin-top: 1rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

main h1 { font-size: clamp(1.8rem, 2.8vw, 2.2rem); }
main h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
main h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
main p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  margin-bottom: 1rem;
  color: var(--text-color);
}
main a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
main a:hover {
  color: #005cd1;
  text-decoration: underline;
}
main ul, main ol {
  margin: 1rem 0 1rem 1.5rem;
  padding: 0;
}
main li {
  margin-bottom: 0.4rem;
}
main img {
  display: block;
  width: 100%;
  height: auto;
  /*border-radius: var(--radius);*/
  /*margin: 0.8rem auto;
  box-shadow: var(--shadow);
  object-fit: cover;*/
  max-width: 100%;
}
main video,
main iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  margin: 1rem 0;
}
main table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

main th, main td {
  border: 1px solid #ddd;
  padding: 0.6rem;
  text-align: left;
}

main th {
  background-color: var(--accent-color);
  color: white;
  font-weight: 600;
}
main pre, main code {
  font-family: var(--font-mono);
  background: #f0f0f0;
  color: #222;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  overflow-x: auto;
}
main pre {
  margin: 1rem 0;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}
main code {
  background: #eaeaea;
}
main blockquote {
  border-left: 4px solid var(--accent-color);
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: #555;
  background: #fafafa;
  border-radius: 4px;
}
/*main button,
main .btn {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}
main button:hover,
main .btn:hover {
  background: #005cd1;
  transform: translateY(-1px);
}*/
main input, main select, main textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
}
main input:focus, main textarea:focus, main select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 4px rgba(0, 120, 255, 0.3);
}
main hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 1.5rem 0;
}
main figure {
  margin: 1rem 0;
  text-align: center;
}
main figcaption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.3rem;
}
@media (max-width: 768px) {
  main {
    width: 96%;
    padding: 0.9rem;
    margin-top: 70px;
  }
  main table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  main {
    width: 98%;
    padding: 0.7rem;
    margin-top: 60px;
  }
  main h1 { font-size: 1.5rem; }
  main h2 { font-size: 1.3rem; }
  main p, main li { font-size: 0.95rem; }
  /*main button, main .btn {
    width: 100%;
    text-align: center;
  }*/
}
  .related-posts {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }
  
  .related-posts h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #222;
  }
  
  .related-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .related-posts li {
    margin: 0.5rem 0;
  }
  
  .related-posts a {
    display: block;
    text-decoration: none;
    color: #0056b3;
    font-size: 1rem;
    border-left: 3px solid transparent;
    padding: 0.4rem 0.6rem;
    transition: all 0.25s ease;
  }
  
  .related-posts a:hover {
    color: #000;
    border-left-color: #0056b3;
    background: #eaf1ff;
    transform: translateX(5px);
  }
.articleMetadata {
  margin-top: 0.7em;
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
  background: #f9fafc;
  border-left: 4px solid #0056b3;
  border-radius: 8px;
  font-family: "Segoe UI", sans-serif;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.metaBreadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: #444;
}

.metaBreadcrumb a {
  text-decoration: none;
  color: #0056b3;
  transition: color 0.25s ease;
}

.metaBreadcrumb a:hover {
  color: #000;
}

.metaBreadcrumb .separator {
  margin: 0 0.4rem;
  color: #999;
}

.metaBreadcrumb .currentTitle {
  font-weight: 600;
  color: #222;
}

.metaDates {
  font-size: 0.9rem;
  color: #555;
}

.metaDates i {
  margin-right: 4px;
  color: #0056b3;
}

.metaDates .separator {
  margin: 0 0.5rem;
  color: #aaa;
}

#emergency-banner {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}


#post-ads-banner_sponsor {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin: 20px auto;
  text-align: center;
  font-family: "Segoe UI", Tahoma, sans-serif;
  transition: all 0.3s ease-in-out;
}
#post-ads-banner_sponsor .ad-banner {
  background: #F4F0F0E8;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  padding: 12px;
  animation: fadeIn 0.5s ease;
}
#post-ads-banner_sponsor .ad-banner img {
  width: 100%;
  height: 100px;
  border-radius: 0px;
 /* object-fit: cover;*/
  transition: transform 0.3s ease;
}

#post-ads-banner_sponsor .ad-banner img:hover {
  transform: scale(1.03);
}
#post-ads-banner_sponsor .ad-banner h4 {
  font-size: 1.2rem;
  color: #333;
  margin: 10px 0 5px;
  font-weight: 600;
}
#post-ads-banner_sponsor .ad-banner p {
  color: #555;
  font-size: 0.95rem;
  margin: 0 0 10px;
  line-height: 1.4em;
}
#post-ads-banner_sponsor .ad-banner button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f0f0f0;
  border: none;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

#post-ads-banner_sponsor .ad-banner button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#post-ads-banner_sponsor .ad-banner button:hover:not(:disabled) {
  background: #ff4444;
  color: #fff;
  transform: scale(1.1);
}

#post-ads-banner_sponsor .ad-banner #countdown {
  font-weight: bold;
  font-size: 0.95rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  #post-ads-banner_sponsor {
    margin: 10px;
  }

  #post-ads-banner_sponsor .ad-banner h4 {
    font-size: 1rem;
  }

  #post-ads-banner_sponsor .ad-banner p {
    font-size: 0.9rem;
  }

  #post-ads-banner_sponsor .ad-banner button {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
