.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1000;
  margin-bottom: 10px;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px  ;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* space between icon and logo */
}

.logo-icon {
  height: 20px; /* adjust size */
  width: auto;
}

.logo-text {
  height: 20px;
  display: block;
}
/* ================= DESKTOP NAV ================= */
.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #0057ff;
}

.nav-menu a.active {
  color: #0057ff;
}


/* ================= HAMBURGER BUTTON ================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle img {
  width: 20px;
  height: 20px;
  display: block;
}


/* ================= MOBILE MENU ================= */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #ddd;
}

.mobile-menu a {
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 600;
  color: #222;
  border-bottom: 1px solid #eee;
}

.mobile-menu a:hover {
  background: #f5f5f5;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 28px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .header-inner{
    padding: 5px;
  }

  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }

  .logo img {
    height: 20px;
  }
}

/* ===================================
   MODERN GAMING FOOTER - FULL UPDATE
   =================================== */
/* ===================================
   FIGMA PERFECT FOOTER
   =================================== */
/* ===================================
   FIGMA EXACT MATCH FOOTER
   =================================== */

.site-footer {
  position: relative;
  padding: 35px 0 0;
  color: #e6ecff;
  font-size: 14px;
  overflow: hidden;
  background: url("/static/images/footer-bg.svg") center/cover no-repeat;
}

/* Softer overlay like Figma */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
 
  z-index: 0;
}

.footer-top-logo,
.footer-container,
.footer-bottom {
  position: relative;
  z-index: 2;
}

/* ================= LOGO ================= */

.footer-top-logo {
  text-align: center;
  margin-bottom: 20px;
}

.footer-top-logo img {
  width: 220px;
  filter: drop-shadow(0 0 22px #ff7a00);
}

/* ================= CONTAINER ================= */

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 10px;
}

/* ================= ABOUT BOX ================= */

.footer-left {
  max-width: 820px;           /* wider like figma */
  margin: 0 auto 15px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,140,0,0.75);
  border-radius: 20px;
  padding: 40px 50px;
  text-align: left;
}

.footer-left p {
  line-height: 1.9;
  color: #dbe3ff;
  margin-bottom: 18px;
}

/* ================= TWO COLUMN ROW ================= */

.footer-row {
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 100px;              /* corrected gap */
  max-width: 950px;
  margin: 0 auto;          /* perfectly centered */
}

/* ================= HEADINGS ================= */

.footer-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: .5px;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  background: #ff8c00;
  margin-top: 10px;
  border-radius: 3px;
}

/* ================= LIST ================= */

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.85;
  color: #dbe3ff;
}

.footer-col ul li::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 4px;
  color: #ff8c00;
  font-size: 12px;
}

/* ================= LINKS ================= */

.footer-right a {
  color: #dbe3ff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-right a:hover {
  color: #ffae42;
}

/* ================= COPYRIGHT ================= */

.footer-bottom {
  text-align: center;
  padding: 28px 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: #a9bbff;
}

/* ===================================
   TABLET
   =================================== */

@media (max-width: 1024px) {

  .footer-left {
    margin-bottom: 10px;
    padding: 35px;
  }

  .footer-row {
    gap: 70px;
  }
}

/* ===================================
   MOBILE (EXACT FIGMA STACK)
   =================================== */

@media (max-width: 768px) {

  .site-footer {
    padding-top: 35px;
  }

  .footer-top-logo img {
    width: 180px;
  }

  .footer-left {
    margin-bottom: 20px;
    padding: 30px 25px;
  }

  .footer-left p {
    font-size: 13.5px;
  }

  .footer-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-col h3 {
    font-size: 15px;
  }

  .footer-col ul li {
    font-size: 13.5px;
    margin-bottom: 16px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}
.ads {
    margin: 1px;
}
.ads-tips {
    color: #999;
    font-size: 12px;

}

.ad-300x250 {
        max-width: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
      }