:root {
  --bg: #0b0e13;
  --panel: #121722;
  --panel-2: #0f1420;
  --text: #e6eefc;
  --muted: #9fb0c9;
  --accent: #ffb703;
  --accent-2: #fb5607;
  --stroke: #1e2636;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 20% -10%, #162032, transparent 60%),
    radial-gradient(1000px 500px at 120% 10%, #1a2030, transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

/* HEADER FIXED SIZES */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--panel) 65%, transparent);
  border-bottom: 1px solid var(--stroke);
  max-height: 80px !important;
  overflow: hidden !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  max-width: 1200px;
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .3px;
}

.brand__logo {
  width: 50px !important;
  height: auto !important;
  border-radius: 0;
  background: none !important;
  box-shadow: none !important;
  display: block;
}

nav.primary-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

nav.primary-nav a {
  color: var(--muted);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}

nav.primary-nav a:hover {
  color: var(--text);
  border-color: var(--stroke);
  background: color-mix(in srgb, var(--panel) 65%, transparent);
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search {
  position: relative;
}

.search input {
  width: 220px;
  background: var(--panel-2);
  color: var(--text);
  border: 1px solid var(--stroke);
  padding: 8px 34px 8px 12px;
  border-radius: 999px;
  outline: none;
}

.search svg {
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
  width: 18px !important;
  height: 18px !important;
  opacity: .8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: var(--panel-2);
  color: var(--text);
  font-weight: 700;
}

.btn--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  border-color: transparent;
}

.ticker {
  border-block: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}

.ticker-inner {
  max-width: 1200px;
  margin: auto;
  padding: 10px 22px;
  display: flex;
  gap: 18px;
  overflow: hidden;
}

.chip {
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--panel-2);
  color: var(--muted);
  font-size: .9rem;
}

.chip strong {
  color: var(--text);
}

/* LAYOUT */
.layout {
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 22px;
  display: grid;
  gap: 22px;
  grid-template-columns: 2fr 1fr;
  grid-template-areas:
    "hero aside"
    "stack aside"
    "grid  aside";
}

.hero {
  grid-area: hero;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 300px;
}

.hero__media {
  position: relative;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0a0;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.hero__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.kicker {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-size: .8rem;
}

.hero__title {
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0;
}

.hero__deck {
  color: var(--muted);
}

.hero__cta {
  margin-top: 8px;
}

aside.sidebar {
  grid-area: aside;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.poll {
  padding: 16px;
}

.poll h3 {
  margin: 0 0 8px 0;
  font-size: 1.05rem;
}

.poll form {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.poll label {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  cursor: pointer;
}

.poll input[type="radio"] {
  accent-color: var(--accent);
}

.poll .actions {
  justify-content: flex-start;
}

.poll .result {
  margin-top: 10px;
  font-style: italic;
  color: #8cef9a;
}

.stack {
  grid-area: stack;
  display: grid;
  gap: 22px;
}

.section {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section__inner {
  padding: 12px 14px 14px;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.section__title {
  margin: 0;
  font-size: 1.05rem;
}

.section__meta {
  color: var(--muted);
  font-size: .88rem;
}

.section__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: var(--panel-2);
  color: var(--text);
  font-weight: 700;
}

/* LATEST NEWS */
.news-list {
  display: grid;
  gap: 12px;
}

.news-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}

.news-thumb {
  width: 92px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #0b0f19;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-body {
  display: grid;
  gap: 4px;
}

.news-title {
  margin: 0;
  font-size: .98rem;
  line-height: 1.25;
}

.news-meta {
  color: var(--muted);
  font-size: .82rem;
}

.related-grid {
  display: grid;
  gap: 12px;
}

.related-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.related-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: var(--panel-2);
}

.related-card .news-thumb {
  width: 132px;
  height: 84px;
}

/* AD BOX */
.ad-box {
  height: 74px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(127,255,127,.15), rgba(127,255,127,.05));
  display: grid;
  place-items: center;
  color: #cdebd1;
  font-weight: 700;
}

/* SHORTS SCROLLER */
.scroller {
  display: flex;
  gap: 12px;
  overflow: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.short-card {
  min-width: 120px;
  scroll-snap-align: start;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel-2);
}

.short-thumb {
  aspect-ratio: 3/4;
  background: #0b0f19;
}

.short-meta {
  padding: 8px;
  font-size: .85rem;
  color: var(--muted);
}

/* GRID CARDS */
.grid {
  grid-area: grid;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card__thumb {
  aspect-ratio: 16/9;
  background: #0b0f19;
}

.card__body {
  padding: 12px 14px 16px;
  display: grid;
  gap: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: #121212;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 4px 10px;
  border-radius: 999px;
}

.card__title {
  font-size: 1.05rem;
  line-height: 1.3;
}

.meta {
  color: var(--muted);
  font-size: .9rem;
}

footer.site-footer {
  border-top: 1px solid var(--stroke);
  margin-top: 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke);
  background: var(--panel-2);
}

@media (max-width: 1000px) {
  .layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "aside"
      "stack"
      "grid";
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .related-row {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  nav.primary-nav {
    display: none;
  }
  .search input {
    width: 160px;
  }
}


.blog-banner {
    width: auto;
    overflow: auto;
    margin-bottom: 20px;
}

.blog-banner img {
    width: 90% !important;
    max-height: 250px !important;
    object-fit: cover !important;
    display: block;
}




/* Force shrink images & SVG inside blog content */
.news img,
.news svg {
    width: 150px !important;
    max-width: 150px !important;
    height: auto !important;
}



/* Add left/right space for all content */
.container, 
.wrapper, 
.main-content {
    padding-left: 20px;
    padding-right: 20px;
}

/* Also add to body just in case */
body {
    padding-left: 20px;
    padding-right: 20px;
}

body {
    padding-left: 40px !important;
    box-sizing: border-box;
}






/* Header Styling */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #111;
  color: #fff;
}

.site-header .logo img {
  height: 40px;
}

.navbar {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* Step-by-step Nav Fix */
nav ul li a {
  text-decoration: none;
  color: #ffffff; /* Make menu links white */
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li.active a {
  color: #f7b500; /* Make menu yellow on hover or if active */
}





/* Burger menu (hidden by default on desktop) */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  display: block;
  width: 28px;   /* slightly bigger */
  height: 3px;
  background: #f7b500 !important;  /* yellow accent */
  border-radius: 3px;
  transition: all 0.3s ease;
  
}

.burger:hover span {
  background: var(--accent-2); /* your orange secondary color */
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
  }

  .nav-links.nav-active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}

/* Burger animation */
.burger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.toggle span:nth-child(2) {
  opacity: 0;
}
.burger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}







.fullscreen-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}


/* a {
  color: #f7b500 !important;
  text-decoration: none;
}

a:hover {
  color: #f7b500 !important;
  text-decoration: underline;
} */













.yellow-heading {
  color: #ffc107 !important;
}






<!--Burger code--!>

/* --- make burger visible & on top --- */
.burger{
  position: relative;     /* create stacking context */
  z-index: 2001;          /* above the nav overlay */
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.burger span{
  background: #f7b500;    /* yellow lines = visible on black */
}

/* keep the slide-down nav underneath the burger */
@media (max-width: 768px){
  nav{ z-index: 2000; }
}



burger.addEventListener("click", () => {
  navMenu.classList.toggle("show");
  burger.classList.toggle("toggle"); // <-- add this
});





.burger.toggle span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.burger.toggle span:nth-child(2){ opacity: 0; }
.burger.toggle span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }
.burger span{ transition: transform .3s, opacity .3s; }












