/* ===== GLOBAL ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  font-family: "Saira", sans-serif;
  background-color: #e0f9ff;

}

/* ===== HEADER ===== */

.site-header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.277);
  color: #fff;
}

/* ===== HEADER CONTAINER ===== */

.header-container {
  width: 100%;
  display: flex;
  align-items: center;
  /* IMPORTANT FIX */
  gap: 100px;
  justify-content: space-between;
  padding: 14px 86px;
  background-color: rgba(255, 255, 255, 0.227);
}

/* ===== LOGO ===== */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  height: 48px;
  margin-right: 10px;
}

.logo-text {
  height: 34px;
}

/* ===== NAV MENU ===== */

.nav-menu {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-menu a {
  font-family: "Saira", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;

  letter-spacing: 0%;
  color: #000000;
  margin: 0 16px;
}

.nav-menu a:hover {
  color: #ff58d3;
  text-decoration: underline;
  line-height: 100%;
  text-decoration-style: solid;
}

/* ===== MOBILE ICONS ===== */

.mobile-icons {
  display: none;
  align-items: center;

  margin-left: auto;
}

.mobile-icons button {
  background: none;
  border: none;

  margin-left: 12px;

  cursor: pointer;
}

.mobile-icons img {
  width: 26px;
  height: 26px;
}

/* ===== MOBILE MENU ===== */

.mobile-menu {
  display: none;

  flex-direction: column;

  background-color: rgba(14, 16, 67, 0.4);

  padding: 10px 16px;

  width: 100%;
}

.mobile-menu a {
  font-family: "Saira", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;

  letter-spacing: 0%;
  color: #ffffff;
  margin: 0 16px;
}

.mobile-menu a :hover {
  color: #ff58d3;
  text-decoration: underline;
  line-height: 100%;
  text-decoration-style: solid;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  /* hide desktop elements */
  .nav-menu {
    display: none;
  }

  /* show icons */
  .mobile-icons {
    display: flex;
    margin-left: auto;
  }

  /* LOGO */
  .logo-icon {
    height: 40px;
  }

  .logo-text {
    height: 28px;
  }

  /* HEADER SPACING */
  .header-container {
    padding: 12px;
    gap: 10px;
  }
}

/* ===== SMALL DESKTOP FIX ===== */

@media (max-width: 1100px) {
  .nav-menu a {
    margin: 0 10px;
    font-size: 13px;
  }

  .search-box {
    max-width: 260px;
  }
}

.hero-intro {
  position: relative;
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 80px;
  overflow: hidden;
}

/* LEFT CONTENT */
.hero-content {
  position: relative;
  max-width: 520px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 15px;
  color: #000000;
  line-height: 1.7;
}

/* RIGHT IMAGE */
.hero-visual {
  position: relative;
  z-index: 2;
  max-width: 400px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #000000, transparent);
  filter: blur(90px);
  opacity: 0.2;
}

.hero-visual img {
  width: 100%;
  opacity: 0.85; /* 🔥 transparent feel */
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
  .hero-intro {
    flex-direction: column;
    text-align: center;
    padding: 25px 18px;
  }

  .hero-visual {
    margin-top: 20px;
    max-width: 250px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 13px;
  }
}

/* ===== FEATURED GAMES SECTION ===== */
.featured-games {
  padding: 30px 60px;
}

/* HEADER FLEX */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

/* RIGHT SIDE BUTTON */
.section-right {
  display: flex;
  align-items: flex-start;
}

/* VIEW ALL BUTTON */
.view-all {
  padding: 8px 14px;
  background: #58deff;
  color: #000000;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
  white-space: nowrap;
}

/* TITLE */
.featured-games .section-title {
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

/* DESCRIPTION */
.featured-games .section-desc {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 600px;
}

@media (max-width: 768px) {
  .featured-games {
    padding: 20px 15px;
  }

  .section-header {
    flex-direction: column;
    gap: 10px;
  }

  .section-right {
    align-self: flex-end;
  }

  .featured-games .section-title {
    font-size: 20px;
  }

  .featured-games .section-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .game-list-2 .game-item:nth-last-child(-n + 1) {
    display: none;
  }
}

.blog-section {
  padding: 40px 60px;
}

/* HEADER */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.blog-header h2 {
  font-size: 24px;
  color: #000000;
}

.blog-header a {
  font-size: 13px;
  color: #000000;
  text-decoration: none;
}

/* LAYOUT */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

/* FEATURE BLOG */
.blog-feature {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.blog-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.blog-overlay {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #ffffff;
}

.blog-overlay h3 {
  font-size: 18px;
  margin: 8px 0;
}

.blog-overlay span {
  font-size: 13px;
  color: #000000;
}

.blog-overlay p {
  font-size: 13px;
  color: #ccc;
}

/* TAG */
.blog-tag {
  background: #58deff;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 12px;
  color: black;
}

/* RIGHT LIST */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-item {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  border-radius: 10px;
  transition: 0.2s;
  text-decoration: none; /* ✅ remove underline */
}

.blog-item:hover {
  background: rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.blog-item img {
  width: 80px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

/* TEXT */
.blog-info h4 {
  font-size: 14px;
  color: #000000;
  margin: 4px 0;
}

.blog-info p {
  font-size: 12px;
  color: #000000;
}

@media (max-width: 768px) {
  .blog-section {
    padding: 20px 15px;
  }

  .blog-layout {
    display: block;
  }

  /* FEATURE FULL WIDTH */
  .blog-feature {
    margin-bottom: 15px;
  }

  .blog-overlay h3 {
    font-size: 16px;
  }

  .blog-overlay p {
    font-size: 12px;
  }

  /* STACK LIST */
  .blog-item {
    padding: 6px;
  }

  .blog-item img {
    width: 70px;
    height: 60px;
  }

  .blog-info h4 {
    font-size: 13px;
  }

  .blog-info p {
    font-size: 11px;
  }
}

/* MAIN */
.blog-page {
  padding: 30px 60px;
}

/* BANNER */
/* BLOG BANNER FIX */
.blog-banner {
  width: 100%;
  height: 420px; /* 🔥 control height */
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 25px;
  position: relative;
}

.blog-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
}
.blog-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 crop properly */
}

/* CONTAINER */
.blog-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* MAIN CONTENT */
.blog-main h1 {
  font-size: 28px;
  color: #000000;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 13px;
  color: #000000;
  margin-bottom: 20px;
}

.blog-main p {
  font-size: 14px;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 15px;
}
.blog-main li {
  font-size: 13px;
  color: #000000;
  margin: 10px 10px 10px;
}

.blog-main h2 {
  font-size: 20px;
  color: #000000;
  margin: 20px 0 10px;
}

/* IMAGE */
.blog-img {
  width: 100%;
  border-radius: 10px;
  margin: 15px 0;
}

/* SIDEBAR */
.blog-sidebar {
  padding: 15px;
}

.blog-sidebar h3 {
  color: #000000;
  margin-bottom: 15px;
}

.side-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  text-decoration: none;
}

.side-item img {
  width: 70px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.side-item p {
  font-size: 13px;
  color: #000000;
}

@media (max-width: 768px) {
  .blog-page {
    padding: 20px 15px;
  }

  .blog-container {
    display: block;
  }
  .blog-banner {
    height: 200px;
  }

  /* TITLE */
  .blog-main h1 {
    font-size: 22px;
  }

  .blog-main h2 {
    font-size: 18px;
  }

  .blog-main p {
    font-size: 13px;
  }

  /* SIDEBAR BELOW */
  .blog-sidebar {
    margin-top: 25px;
  }

  .side-item img {
    width: 60px;
    height: 50px;
  }

  .side-item p {
    font-size: 12px;
  }
}

/* PAGE */
.blog-page {
  padding: 30px 60px;
}

/* TITLE */
.blog-page-title {
  color: #000000;
  font-size: 26px;
  margin-bottom: 20px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* CARD */
.blog-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.blog-card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

/* TITLE */
.blog-card-content h3 {
  font-size: 14px;
  color: #ffffff;
}

/* HOVER */
.blog-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .blog-page {
    padding: 20px 15px;
  }

  .blog-page-title {
    font-size: 20px;
  }

  /* GRID MOBILE */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .blog-card img {
    height: 140px;
  }

  .blog-card-content h3 {
    font-size: 13px;
  }
}

/* ===== SECTION ===== */

.games-section {
  padding: 20px;
  color: #000000;
}

/* HEADER */

/* HEADER */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.game-home-layout {
  width: 100%;
  padding: 10px;
  margin: auto;
}
.game-list-2 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.game-item {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.game-item .game-icon {
  aspect-ratio: 1;
}

.game-item .game-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.game-item .game-title {
  color: #fff;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.25rem;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  --bezier: cubic-bezier(0.25, 0.1, 0.25, 1);
  transition:
    transform 0.3s var(--bezier) 0.1s,
    opacity 0.3s var(--bezier) 0.1s;
  transform: translate3d(0px, 8px, 0px);
  font-weight: 700;
}

.game-item:hover {
  transform: scale(1.07);
}

.game-item:hover .game-title {
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
@media (min-width: 104px) and (max-width: 543px) {
  .game-list-2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 544px) and (max-width: 763px) {
  .game-list-2 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 764px) and (max-width: 1204px) {
  .game-list-2 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (min-width: 1204px) and (max-width: 1313px) {
  .game-list-2 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

@media (min-width: 1314px) and (max-width: 1533px) {
  .game-list-2 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

@media (min-width: 1534px) and (max-width: 1863px) {
  .game-list-2 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
}

@media (min-width: 1864px) {
  .game-list-2 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

/* ============================= */
/* 🔥 MOBILE GAMES SECTION */
/* ============================= */

.mobile-games {
  padding: 40px 20px;
  color: #000000;
}

.mobile-games .container {
  max-width: 1200px;
  margin: auto;
}

/* TOP ROW */
.mobile-games .top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT CONTENT */
.mobile-games .content {
  flex: 1;
}

/* TITLE */
.mobile-games h2 {
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  line-height: 1.3;
}

/* ICON */
.mobile-games .icon img {
  width: 26px;
  height: 26px;
}

/* PARAGRAPH */
.mobile-games p {
  font-size: 14px;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* HIGHLIGHT TEXT */
.mobile-games .highlight {
  color: #000000;
  font-weight: 600;
}

/* 🔥 LIST STYLE (IMPORTANT FIX) */
.mobile-games ul {
  margin: 12px 0 18px;
  padding-left: 20px;
}

.mobile-games ul li {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 6px;
  position: relative;
}

/* OPTIONAL BULLET STYLE */
.mobile-games ul li::marker {
  color: #000000;
}

/* RIGHT IMAGE */
.mobile-games .image {
  flex: 1;
  text-align: center;
}

.mobile-games .image img {
  max-width: 85%;
}

/* BOTTOM CONTENT */
.mobile-games .bottom-content {
  margin-top: 30px;
  max-width: 90%;
}

/* SUBTITLE */
.mobile-games h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 18px;
  line-height: 1.4;
}

/* ============================= */
/* 🔥 TAG SECTION */
/* ============================= */

.game-tags {
  padding: 40px 20px;
  text-align: center;
}

.game-tags .container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.game-tags .section-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
  text-decoration: underline;
}

/* SECOND TITLE */
.game-tags .section-title.second {
  margin-top: 35px;
}

/* TAG GRID */
.game-tags .tags {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: center;
  gap: 12px;
}

/* TAG STYLE */
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  font-size: 13px;
  color: #000000;
  text-decoration: none;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(0, 0, 0);
  border-radius: 999px;
  transition: 0.25s ease;
  white-space: nowrap;
}

/* HOVER */
.tag:hover {
  transform: translateY(-2px) scale(1.05);
  background: rgba(181, 181, 181, 0.2);
  border-color: rgba(197, 197, 197, 0.4);
}

/* ============================= */
/* 📱 TABLET */
/* ============================= */

@media (max-width: 992px) {
  .mobile-games .top-row {
    flex-direction: column;
    text-align: center;
  }

  .mobile-games .image {
    display: none;
  }

  .mobile-games h2 {
    justify-content: center;
  }

  .mobile-games .bottom-content {
    max-width: 100%;
    text-align: center;
  }
}

/* ============================= */
/* 📱 MOBILE */
/* ============================= */

@media (max-width: 768px) {
  .mobile-games {
    padding: 30px 15px;
  }

  .mobile-games h2 {
    font-size: 24px;
  }

  .mobile-games h3 {
    font-size: 18px;
  }

  .mobile-games p,
  .mobile-games ul li {
    font-size: 13px;
  }

  .game-tags .tags {
    grid-template-columns: repeat(2, auto);
  }
}

/* ============================= */
/* 📱 SMALL MOBILE */
/* ============================= */

@media (max-width: 480px) {
  .game-tags {
    padding: 25px 10px;
  }

  .game-tags .tags {
    gap: 10px;
  }

  .tag {
    font-size: 12px;
    padding: 0 12px;
  }
}

/* ===== WRAPPER ===== */
.wrapper {
  display: flex;
  justify-content: center;
  padding: 60px 15px;
}

/* ===== MAIN CARD ===== */
.entry {
  width: 100%;
  max-width: 900px;
  padding: 40px;
  border-radius: 20px;

  background: rgba(236, 236, 236, 0.379);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(0, 0, 0, 0.08);

  box-shadow:
    0 0 40px rgba(235, 235, 235, 0.15),
    0 0 80px rgba(237, 237, 237, 0.1);
}

/* ===== HEADINGS ===== */
.entry h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;

  background: linear-gradient(90deg, #000000, #141414);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.entry h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #000000;

  border-left: 3px solid #000000;
  padding-left: 10px;
}

/* ===== TEXT ===== */
.entry p {
  margin-bottom: 12px;
  color: #000000;
  font-size: 15px;
}

.entry strong {
  color: #000000;
}

/* ===== LIST ===== */
.entry ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.entry ul li {
  margin-bottom: 8px;
  position: relative;
  color: #000000;
}

/* custom bullet */
.entry ul li::marker {
  color: #000000;
}

/* ===== LINKS ===== */
.entry a {
  color: #000000;
  text-decoration: none;
}

.entry a:hover {
  text-decoration: underline;
}

/* ===== SEPARATION LINE (OPTIONAL) ===== */
.entry h3:not(:first-of-type) {
  margin-top: 40px;
}

/* ===== GLOW EFFECT ===== */
.entry:hover {
  box-shadow:
    0 0 60px rgba(211, 211, 211, 0.25),
    0 0 100px rgba(140, 140, 140, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .entry {
    padding: 25px;
    border-radius: 15px;
  }

  .entry h2 {
    font-size: 24px;
  }

  .entry h3 {
    font-size: 18px;
  }

  .entry p {
    font-size: 14px;
  }
}

/* ================= FOOTER BASE ================= */
.site-footer {
  color: #000000;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #000000, transparent) 1;
  font-size: 14px;
  padding: 25px;
}

.footer-top-logo {
  width: 100%;
  display: flex;
  justify-content: left;
  margin-bottom: 10px;
}

.footer-top-logo img {
  width: 220px; /* desktop default */
  max-width: 90%;
  height: auto;
  display: block;
}
/* Remove old left logo spacing */
.footer-left .footer-logo {
  display: none;
}

/* ================= CONTAINER ================= */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 60px;
}

/* ================= LOGO ================= */
.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}

/* ================= HEADINGS ================= */
.footer-col h3 {
  color: #000000;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* ================= TEXT ================= */
.footer-left p {
  line-height: 1.8;
  color: #000000;
}

/* ================= LISTS ================= */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #000000;
  line-height: 1.7;
}

/* Blue bullet style */
.footer-col ul li::before {
  content: "•";
  color: #000000;
  margin-right: 8px;
}

/* ================= LINKS ================= */
.footer-right a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #000000;
}

/* ================= BOTTOM STRIP ================= */
.footer-bottom {
  text-align: center;
  padding: 18px;
  color: #000000;
  font-size: 13px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-top-logo img {
    width: 180px;
  }

  .footer-left p {
    max-width: 600px;
    margin: auto;
  }

  .footer-col ul li::before {
    display: none;
  }
}
/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: left; /* 🔥 default left alignment */
  }

  .footer-top-logo {
    justify-content: center;
    align-items: center;
  }

  .footer-top-logo img {
    width: 140px;
  }

  /* Logo center */
  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto 20px;
    display: block;
  }

  /* Description left */
  .footer-left p {
    text-align: left;
  }

  /* Disclaimer heading center */
  .footer-center h3 {
    text-align: center;
  }

  /* Disclaimer list left */
  .footer-center ul {
    text-align: left;
  }

  .footer-center ul li {
    padding-left: 0;
  }
  .footer-right h3 {
    text-align: center;
  }
  /* About links left */
  .footer-right ul {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 🔥 2 columns */
    gap: 12px 20px;
    text-align: left;
  }

  .footer-right ul li {
    margin-bottom: 0;
  }
  /* Disclaimer bullets */
  .footer-center ul li::before,
  .footer-right ul li::before {
    content: "•";
    color: #000000;
    margin-right: 8px;
    display: inline-block;
  }

  .footer-center ul li,
  .footer-right ul li {
    position: relative;
    padding-left: 14px;
  }
}

.ads-tips {
  color: #999;
  font-size: 12px;
}

.ads {
  margin: 20px 0;
}
.ad-300x250 {
  max-width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-ad {
}
