@font-face {
  font-family: "Saira";
  src: url("/assets/fonts/saira-latin-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("/assets/fonts/rajdhani-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("/assets/fonts/rajdhani-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("/assets/fonts/rajdhani-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== GLOBAL ===== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html,body{
overflow-x:hidden;
  font-family: 'Saira', sans-serif;
  background-color: #03033B;
   
  
}


/* ===== HEADER ===== */

.site-header{
width:100%;
  background-color: #0D296BCC;
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: #0D296BCC;


}


/* ===== 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: #ffffff;
 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: #ffffff;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 15px;
  color: #ffffff;
  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, #ffffff, 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: #0D296BCC;
  color: #ffffff;
  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: #ffffff;
  margin-bottom: 8px;
}

/* DESCRIPTION */
.featured-games .section-desc {
  font-size: 14px;
  color: #ffffff;
  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: #ffffff;
}

.blog-header a {
  font-size: 13px;
  color: #ffffff;
  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: #ffffff;
}

.blog-overlay p {
  font-size: 13px;
  color: #ccc;
}

/* TAG */
.blog-tag {
  background: #60a5fa;
  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; /* OK 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: #ffffff;
  margin: 4px 0;
}

.blog-info p {
  font-size: 12px;
  color: #ffffff;
}

@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: #ffffff;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 20px;
}

.blog-main p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 15px;
}
.blog-main li{
    font-size: 13px;
  color: #ffffff;
    margin: 10px 10px 10px;

}

.blog-main h2 {
  font-size: 20px;
  color: #ffffff;
  margin: 20px 0 10px;
}

/* IMAGE */
.blog-img {
  width: 100%;
  border-radius: 10px;
  margin: 15px 0;
}

/* SIDEBAR */
.blog-sidebar {
  padding: 15px;
}

.blog-sidebar h3 {
  color: #ffffff;
  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: #ffffff;
}

@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: #ffffff;
  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:#ffffff;

}

/* 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: .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: #ffffff;
}

.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: #ffffff;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* HIGHLIGHT TEXT */
.mobile-games .highlight {
  color: #ffffff;
  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: #ffffff;
  line-height: 1.6;
  margin-bottom: 6px;
  position: relative;
}

/* OPTIONAL BULLET STYLE */
.mobile-games ul li::marker {
  color: #ffffff;
}

/* 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: #ffffff;
  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: #ffffff;
  text-decoration: none;
  background: #0D296BCC;
  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: #0D296BCC;
  backdrop-filter: blur(20px);

  border: 1px solid rgba(0, 0, 0, 0.08);

}

/* ===== HEADINGS ===== */
.entry h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;

  background: linear-gradient(90deg, #ffffff, #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: #ffffff;

  border-left: 3px solid #ffffff;
  padding-left: 10px;
}

/* ===== TEXT ===== */
.entry p {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 15px;
}

.entry strong {
  color: #ffffff;
}

/* ===== LIST ===== */
.entry ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.entry ul li {
  margin-bottom: 8px;
  position: relative;
  color: #ffffff;
}

/* custom bullet */
.entry ul li::marker {
  color: #ffffff;
}

/* ===== LINKS ===== */
.entry a {
  color: #ffffff;
  text-decoration: none;
}

.entry a:hover {
  text-decoration: underline;
}

/* ===== SEPARATION LINE (OPTIONAL) ===== */
.entry h3:not(:first-of-type) {
  margin-top: 40px;
}



/* ===== 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: #ffffff;
  border-top: 1px solid ;
    border-image: linear-gradient(to right, transparent, #ffffff, 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: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* ================= TEXT ================= */
.footer-left p {
  line-height: 1.8;
  color: #ffffff;
}

/* ================= LISTS ================= */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #ffffff;
  line-height: 1.7;
}

/* Blue bullet style */
.footer-col ul li::before {
  content: "\2022";
  color: #ffffff;
  margin-right: 8px;
}

/* ================= LINKS ================= */
.footer-right a {
  color: #ffffff;
  text-decoration: none;
  transition: color .3s ease;
}

.footer-right a:hover {
  color: #ffffff;
}

/* ================= BOTTOM STRIP ================= */
.footer-bottom {
  text-align: center;
  padding: 18px;
  color: #ffffff;
  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: "\2022";
    color: #ffffff;
    margin-right: 8px;
    display: inline-block;
  }

  .footer-center ul li,
  .footer-right ul li {
    position: relative;
    padding-left: 14px;
  }

}

.ads {
    margin: 20px 0;
}
.ad-300x250 {
        max-width: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
      }





/* ===== GAMEZONE-LIGHT INSPIRED PREMIUM THEME ===== */
:root {
  --ac-bg: #f5f9ff;
  --ac-bg-soft: #eef7ff;
  --ac-panel: rgba(255, 255, 255, 0.88);
  --ac-panel-strong: #ffffff;
  --ac-text: #102033;
  --ac-muted: #5d6b7c;
  --ac-line: rgba(15, 23, 42, 0.14);
  --ac-cyan: #2563eb;
  --ac-green: #60a5fa;
  --ac-yellow: #ca8a04;
  --ac-shadow: 0 20px 50px rgba(31, 41, 55, 0.12);
  --ac-radius: 8px;
  --ac-max: 1180px;
}

html,
body {
  color: var(--ac-text);
  background:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbff 0%, #eef7ff 45%, #fef8ee 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(37, 99, 235, 0.16), transparent 30%),
    linear-gradient(300deg, rgba(225, 29, 72, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(96, 165, 250, 0.12), transparent 62%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(15, 23, 42, 0.045) 0 1px, transparent 1px 6px);
  mix-blend-mode: multiply;
  opacity: 0.38;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ac-text);
  border-bottom: 1px solid var(--ac-line);
  box-shadow: 0 12px 34px rgba(31, 41, 55, 0.08);
  backdrop-filter: blur(18px);
}

.header-container {
  max-width: var(--ac-max);
  margin: 0 auto;
  padding: 12px clamp(14px, 4vw, 36px);
  background: transparent;
  gap: 18px;
}

.logo {
  min-width: 0;
}

.logo-text {
  height: 48px;
  filter: drop-shadow(0 8px 18px rgba(37, 99, 235, 0.16));
}

.nav-menu {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-menu a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: var(--ac-radius);
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--ac-text);
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.18);
  text-decoration: none;
}

.mobile-icons button {
  width: 46px;
  height: 46px;
  min-height: 46px;
  display: grid;
  place-items: center;
  margin-left: 0;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.1);
  color: #2563eb;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.mobile-icons button img {
  display: none;
}

.mobile-icons button::before,
.mobile-icons button::after {
  content: "";
  grid-area: 1 / 1;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-icons button::before {
  transform: translateY(-6px);
  box-shadow: 0 6px 0 currentColor;
}

.mobile-icons button::after {
  transform: translateY(6px);
}

.mobile-icons button:hover {
  border-color: rgba(37, 99, 235, 0.34);
  background: rgba(248,251,255, 0.92);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.16);
  transform: translateY(-1px);
}

.mobile-icons button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 2px;
}

.mobile-menu {
  max-width: var(--ac-max);
  margin: 0 auto;
  border-top: 1px solid var(--ac-line);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(96, 165, 250, 0.06)),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(31, 41, 55, 0.12);
}

.mobile-menu a {
  color: #334155;
  padding: 10px 4px;
}

.hero-intro {
  min-height: 552px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  max-width: var(--ac-max);
  margin: 0 auto;
  padding: 30px clamp(14px, 3vw, 22px) 28px;
}

.hero-content {
  max-width: 700px;
}

.hero-content h1,
.section-title,
.blog-header h2,
.mobile-games h2,
.mobile-games h3,
.game-tags h2,
.popular-games h2 {
  font-family: Rajdhani, Saira, sans-serif;
  letter-spacing: 0;
  color: var(--ac-text);
}

.hero-content h1 {
  max-width: 700px;
  margin-bottom: 14px;
  font-size: clamp(2.95rem, 4.2vw, 4.65rem);
  line-height: 0.92;
}

.hero-content h1::after {
  content: "100+";
  display: inline-block;
  margin-left: 10px;
  color: var(--ac-green);
  text-shadow: 0 0 28px rgba(96, 165, 250, 0.22);
}

.hero-content p {
  max-width: 640px;
  margin-bottom: 8px;
  color: #475569;
  font-size: clamp(0.94rem, 1.15vw, 1rem);
  line-height: 1.48;
}

.hero-visual {
  max-width: 340px;
  justify-self: center;
  padding: 14px;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.14), transparent 36%),
    var(--ac-panel);
  box-shadow: var(--ac-shadow);
  animation: appcrateFloat 5s ease-in-out infinite;
}

.hero-visual::before {
  border-color: rgba(37, 99, 235, 0.18);
  background:
    linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.14), transparent),
    rgba(255, 255, 255, 0.38);
}

@keyframes appcrateFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.featured-games,
.blog-section,
.mobile-games,
.game-tags,
.popular-games,
.game-home-layout {
  max-width: var(--ac-max);
  margin: 0 auto;
  padding: 44px clamp(14px, 3vw, 22px);
  color: var(--ac-text);
}

.section-header,
.blog-header {
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
}

.featured-games .section-title,
.game-tags .section-title,
.blog-header h2,
.mobile-games h2,
.game-tags h2,
.popular-games h2 {
  color: var(--ac-text);
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 0.95;
}

.featured-games .section-desc,
.mobile-games p,
.mobile-games ul li,
.game-tags p,
.popular-games p,
.blog-info p {
  color: #475569;
}

.view-all,
.blog-header a,
.button,
.play-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  color: var(--ac-text);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
  font-weight: 900;
  text-decoration: none;
}

.view-all:hover,
.blog-header a:hover {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--ac-cyan), var(--ac-green));
  transform: translateY(-2px);
}

.game-list-2 {
  gap: 10px;
}

.game-item,
.blog-feature,
.blog-item,
.tag-card,
.popular-game-card {
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(96, 165, 250, 0.04)),
    var(--ac-panel);
  box-shadow: var(--ac-shadow);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.game-item:hover,
.blog-item:hover,
.tag-card:hover,
.popular-game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.44);
  box-shadow: 0 24px 56px rgba(31, 41, 55, 0.16);
}

.game-item .game-icon img {
  border-radius: var(--ac-radius);
}

.game-item .game-title {
  opacity: 1;
  padding: 28px 8px 9px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.05;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  transform: none;
}

.blog-item {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(96, 165, 250, 0.05)),
    rgba(255, 255, 255, 0.74);
}

.blog-info h4,
.blog-header h2 {
  color: var(--ac-text);
}

.blog-header a {
  color: var(--ac-text);
}

.blog-overlay {
  background: linear-gradient(to top, rgba(4, 12, 24, 0.82), transparent);
}

.blog-tag {
  border-radius: var(--ac-radius);
  background: linear-gradient(135deg, var(--ac-cyan), var(--ac-green));
  color: #ffffff;
  font-weight: 900;
}

.mobile-games .top-row,
.mobile-games .bottom-content {
  padding: 20px;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background: var(--ac-panel);
  box-shadow: var(--ac-shadow);
}

.mobile-games .image img {
  filter: drop-shadow(0 18px 34px rgba(31, 41, 55, 0.12));
}

.site-footer {
  max-width: var(--ac-max);
  margin: 28px auto 0;
  padding: 26px clamp(16px, 3vw, 24px) 34px;
  color: var(--ac-muted);
  border-top: 1px solid var(--ac-line);
  border-image: none;
}

.footer-container {
  padding: 0;
  gap: 28px;
}

.footer-col h3,
.footer-left p,
.footer-col ul li,
.footer-right a,
.footer-bottom {
  color: var(--ac-muted);
}

.footer-col h3,
.footer-top-logo {
  color: var(--ac-text);
}

.footer-top-logo img {
  filter: drop-shadow(0 8px 18px rgba(37, 99, 235, 0.12));
}

.footer-col ul li::before,
.footer-center ul li::before,
.footer-right ul li::before {
  color: var(--ac-green);
}

@media (max-width: 1100px) {
  .hero-intro {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    max-width: min(360px, 100%);
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 10px 12px;
  }

  .logo-text {
    height: 38px;
  }

  .hero-intro {
    padding: 34px 12px 22px;
    text-align: left;
  }

  .hero-content h1 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .featured-games,
  .blog-section,
  .mobile-games,
  .game-tags,
  .popular-games,
  .game-home-layout {
    padding: 28px 12px;
  }

  .mobile-games .top-row {
    flex-direction: column;
    gap: 18px;
  }

  .mobile-games .bottom-content {
    max-width: 100%;
  }

  .section-right {
    align-self: flex-start;
  }
}

.blog-page,
.wrapper {
  max-width: var(--ac-max);
  margin: 0 auto;
  padding: 42px clamp(14px, 3vw, 22px);
}

.blog-page-title,
.blog-main h1,
.blog-main h2,
.blog-sidebar h3,
.entry h2,
.entry h3 {
  font-family: Rajdhani, Saira, sans-serif;
  color: var(--ac-text);
  letter-spacing: 0;
}

.blog-page-title,
.blog-main h1,
.entry h2 {
  font-size: clamp(2rem, 4.4vw, 3.75rem);
  line-height: 0.98;
}

.blog-main,
.blog-sidebar,
.entry {
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 34%),
    var(--ac-panel);
  box-shadow: var(--ac-shadow);
}

.blog-main,
.entry {
  padding: clamp(20px, 3vw, 34px);
}

.blog-sidebar {
  padding: 20px;
}

.blog-main p,
.blog-main li,
.blog-meta,
.side-item p,
.entry p,
.entry ul li,
.entry li,
.entry strong {
  color: #475569;
}

.entry ul li::marker {
  color: var(--ac-green);
}

.entry h2 {
  margin-bottom: 18px;
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentColor;
}

.entry h3 {
  border-left-color: var(--ac-green);
}

.entry a {
  color: var(--ac-cyan);
}

.blog-card {
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  box-shadow: var(--ac-shadow);
}

.blog-card img {
  height: 214px;
}

.side-item {
  padding: 10px;
  border: 1px solid var(--ac-line);
  border-radius: var(--ac-radius);
  background: rgba(255, 255, 255, 0.72);
}

/* Keep article sidebars content-height on desktop; avoid tall blank stretch. */
.blog-container {
  align-items: start;
}

.blog-sidebar {
  align-self: start;
  height: auto;
  min-height: 0;
}

@media (max-width: 768px) {
  .blog-page,
  .wrapper {
    padding: 28px 12px;
  }

  .blog-container {
    display: block;
  }

  .blog-main,
  .blog-sidebar,
  .entry {
    padding: 18px;
  }
}

/* Finalized-font wrapping safeguards for article detail templates. */
.blog-container > *,
.blog-main,
.blog-sidebar,
.blog-main > *,
.blog-sidebar > *,
.side-item > * {
  min-width: 0;
  max-width: 100%;
}

.blog-main h1,
.blog-main h2,
.blog-main h3,
.blog-main p,
.blog-main li,
.blog-meta,
.blog-sidebar h3,
.side-item p {
  overflow-wrap: anywhere;
  word-break: normal;
}

.blog-main h1 {
  line-height: 1.08;
}

.blog-main h2,
.blog-main h3,
.blog-sidebar h3 {
  line-height: 1.18;
}

.blog-meta {
  line-height: 1.4;
}

/* Sitewide readable typography refresh - start */
@font-face {
  font-family: "Nunito Sans Local";
  src: url("/assets/fonts/nunito-sans-latin-var.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-stretch: 100%;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --site-font-sans: "Nunito Sans Local", "Nunito Sans", "Google Sans", "Product Sans", Roboto, "Segoe UI", Arial, sans-serif;
}

html,
body,
body * {
  font-family: var(--site-font-sans) !important;
  letter-spacing: 0 !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6,
.site-title, .section-title, .section-heading, .home-section-title,
.game-title, .app-title, .card-title, .article-title,
.game-name, .app-name, .item-title, .name {
  font-family: var(--site-font-sans) !important;
  font-weight: 600 !important;
}

.download-ready, .download-btn, .download-cta, .store-badge,
button, .btn, .view-all, .view-more {
  font-family: var(--site-font-sans) !important;
  font-weight: 700 !important;
}

p, li, .description, .desc, .short-description, .detail-copy,
.meta, .category, .subtitle, .supporting-copy, .footer-copy {
  font-family: var(--site-font-sans) !important;
}

.description, .desc, .short-description, .detail-copy,
p, li {
  font-weight: 400 !important;
}

.meta, .category, .subtitle, .supporting-copy, small {
  font-weight: 500 !important;
}

strong, b {
  font-weight: 600 !important;
}
/* Sitewide readable typography refresh - end */

/* Match article-detail typography to the approved playable detail page. */
.blog-main h1 {
  font-size: clamp(1.82rem, 3.15vw, 2.72rem) !important;
  font-weight: 550 !important;
  line-height: 1.04 !important;
}

.blog-main h2 {
  font-size: clamp(1.08rem, 1.35vw, 1.32rem) !important;
  line-height: 1.2 !important;
}

.blog-main h3,
.blog-sidebar h3 {
  font-size: clamp(0.98rem, 1.1vw, 1.12rem) !important;
  line-height: 1.25 !important;
}

.blog-main p,
.blog-main li,
.side-item p {
  font-size: 15px !important;
  line-height: 1.72 !important;
}

.blog-main p {
  margin-bottom: 14px;
}

@media (max-width: 820px) {
  .blog-main h1 {
    font-size: clamp(1.52rem, 6.7vw, 2.02rem) !important;
  }

  .blog-main p,
  .blog-main li,
  .side-item p {
    font-size: 14px !important;
    line-height: 1.68 !important;
  }
}

@media (max-width: 350px) {
  .blog-main h1 {
    font-size: 1.12rem !important;
  }
}
