/* styles.css - Responsive, professional look */
:root{
  --accent:#00bfa5;
  --bg:#0f1720;
  --muted:#9aa4ad;
  --card:#0b1220;
  --gap:14px;
  --transition:0.25s;
  --title-font: 'Poppins', sans-serif;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:var(--title-font);
  background:linear-gradient(180deg,#f7f9fb 0%, #eef2f6 100%);
  color:#122;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Top bar */
.topbar{
 width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  
}




/* First Top Bar (blue theme) */
.topbar.primary {
  background: linear-gradient(90deg, #0044cc, #0077ff);
}


/* Second Top Bar (orange theme) */
.topbar.secondary {
  background: linear-gradient(90deg, #ff6600, #ff3300);
}

.topbar .top-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center; /* center both title and rotator */
  gap:20px;
  padding:6px 12px;
}
.topbar .tb-title{
  font-family: Orbitron, sans-serif;
  font-weight: 700;
  margin-right: 15px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 8px;
  
}
.topbar .tb-rotator{
  flex: 1;
  text-align: left;
  font-style: italic;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #fff;
  animation: blinkCursor 0.8s infinite;
  
  
}

.topbar .tb-rotator a:hover{
  color: #ffcc00;
}

.topbar .tb-rotator a{
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.topbar-1{ background: linear-gradient(90deg,#0f5b9d,#00a8ff); }
.topbar-2{ background: linear-gradient(90deg,#7b2ff7,#ff7ab6); }



/* Responsive Adjustments */
@media (max-width: 600px) {
  .topbar {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }
  .topbar .title {
    margin: 0 0 5px 0;
  }
  .tb-rotator {
    text-align: center;
    font-size: 0.95rem;
  }
}

/* Blinking cursor effect */
@keyframes blinkCursor {
  0% { border-color: transparent; }
  50% { border-color: #fff; }
  100% { border-color: transparent; }
}


/* 3-col ad area */
.three-col{
  width: 100%;
  margin:18px auto;
  display:grid;
  grid-template-columns:125px 1fr 125px;
  gap:20px;
  align-items:center;
  padding:0 12px;
  
}
.ad-125 img{ width:125px; height:125px; object-fit:cover; border-radius:6px; }

/* banner */
.banner-rotator img{ max-width:100%; height:auto; display:block; border-radius:6px; box-shadow:0 2px 8px rgba(0,0,0,0.08) }

/* 728 banner container */
/* Existing style (base for desktop/laptop) */
.banner-728 {
  width: 100%;
  max-width: 728px;
  height: auto;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:20px;
  
}

.banner-728 img {
  width: 100%;
  height: auto;
  max-width: 728px;
  border-radius: 10px;
  object-fit: contain;
}

/* Tablet view: Keep same ratio but limit to screen width */
@media (max-width: 1024px) {
  .banner-728 {
    max-width: 728px;
  }

  .banner-728 img {
    max-width: 100%;
    height: auto;
  }
}

/* Mobile view: Scale down to 300x250 proportion */
@media (max-width: 768px) {
  .banner-728 {
    max-width: 300px;
    height: auto;
  }

  .banner-728 img {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 8px;
  }
}





/* section titles */
.section-title{
  width: 100%;
  background: linear-gradient(90deg, #0077ff, #00ccff);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  border-left: 6px solid #ffcc00;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  
}

.section-title::after{
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ffcc00;
  margin: 6px auto 0;
  border-radius: 2px;
}

/* Smaller devices adjustments */

@media (max-width: 600px) {
  .section-title {
    font-size: 1.1rem;
    padding: 12px;
    border-left: 4px solid #ffcc00;
  }
  .section-title::after {
    width: 60px;
  }
}


/* Grid styles common */
.grid{
    width: 100%;
  margin:0 auto;
  padding:12px;
  background:linear-gradient(180deg,#ffffff, #f3f7fa);
  border-radius:8px;
  box-shadow:0 4px 18px rgba(6,12,17,0.06);
}
.grid-5x5{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  padding:18px;
}
.link-box{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  min-height:56px;
  text-decoration:none;
  background:linear-gradient(180deg,#fff,#f8fbff);
  border-radius:6px;
  border:1px solid rgba(10,20,30,0.04);
  box-shadow:0 6px 18px rgba(10,20,30,0.04);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  color:#0a2a3a;
  font-weight:600;
}
.link-box:hover{
  transform:translateY(-6px) scale(1.03);
  background:linear-gradient(180deg,var(--accent), #00ffd1);
  color:#032;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* mixed grid layout: left ad + right 4x4 grid */
.mixed-grid{
  margin:12px auto;
  display:grid;
  grid-template-columns:300px 1fr;
  gap:12px;
  align-items:start;
  padding:12px;
  background:transparent;
  width: 100%;

}
.right-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  background:linear-gradient(180deg,#fff,#f7fbff);
  padding:12px;
  border-radius:8px;
}

/* left 4x4 + right ad */
.left-grid-right-ad{
  width: 100%;
  margin:12px auto;
  display:grid;
  grid-template-columns:1fr 300px;
  gap:12px;
  align-items:start;
  padding:12px;

}
.left-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  background:linear-gradient(180deg,#fff,#f7fbff);
  padding:12px;
  border-radius:8px;

}

/* Mobile view */
@media (max-width: 768px) {
  .left-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .left-grid .ad {
    order: -1; /* show ad first */
    width: 100%;
  }

  .left-grid > div {
    width: 100%;
	grid-column: span 4; /* Ad takes full row */
	grid-template-columns: 1fr;
	
  }
  
}


/* Mobile view */
@media (max-width: 768px) {
  .left-grid-right-ad {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .left-grid-right-ad .ad {
    order: -1; /* show ad first */
    width: 100%;
  }

  .left-grid-right-ad > div {
    width: 100%;
	grid-column: span 4; /* Ad takes full row */
	grid-template-columns: 1fr;
	
  }
  
}





/* Mobile view */
@media (max-width: 768px) {
  .mixed-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
	
	
  }

  .mixed-grid .ad {
    order: -1; /* Show ad first */
    width: 100%;
  }

  .mixed-grid > div {
    width: 100%;
	grid-column: span 4; /* Ad takes full row */
	grid-template-columns: 1fr;


  }
  
  
}




/* three column section with mini 2x2 grids */
.three-col-2{
    width: 100%;
  margin:12px auto;
  display:grid;
  grid-template-columns:1fr 300px 1fr;
  gap:12px;
  padding:12px;
  
}

/* Ad styling */
.three-col-2 .ad {
  background: #ccc;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  min-width: 300px;
}

/* Mobile view */
@media (max-width: 768px) {
  .three-col-2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .three-col-2 .ad {
    order: -1; /* always show ad first */
    width: 100%;
  }

  .three-col-2 .mini-grid,
  .three-col-2 .mini-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
	
  }


  .three-col-2 .mini-grid  {
    width: 100%;
	grid-column: span 4; /* Ad takes full row */
	grid-template-columns: 1fr;
  }
}


/* Mobile view */
@media (max-width: 768px) {
  .site-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .site-footer .ad {
    order: -1; /* always show ad first */
    width: 100%;
  }

  .site-footer .footer-left,
  .site-footer .footer-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
	align-items:center;
    justify-content:center;
	
  }


  .site-footer .footer-left .footer-right  {
    width: 100%;
	grid-column: span 4; /* Ad takes full row */
	grid-template-columns: 1fr;
	
  }
}






.mini-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  background:linear-gradient(180deg,#fff,#f7fbff);
  padding:12px;
  border-radius:8px;
}

/* Footer */
.site-footer{

  margin:0 auto;
  justify-content:space-between;
  align-items:center;
  padding:12px;
  background:#0b1b2a;
  color:#fff;
  border-radius:6px;
  width: 100%;
  color: #fff;
  display: flex;
  font-size: 14px;
}

.site-footer a{
	color: #fff;
	text-decoration:none;
}


.site-footer .footer-right{ opacity:0.9 }

/* Responsive Design */
@media (max-width: 1024px) {
  .grid-5x5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4x4 { grid-template-columns: repeat(2, 1fr); }
  .ads-section { grid-template-columns: 1fr; }
  .mixed-300-left, .mixed-300-right, .mixed-3col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .grid-5x5, .grid-4x4, .grid-2x2 {
    grid-template-columns: 1fr;
  }
  .top-bar {
    flex-direction: column;
    text-align: center;
  }
  .rotating-message {
    text-align: center;
    margin-top: 5px;
  }
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}


/* ===== Responsive overrides for the three-column banner section ===== */
.banner-section {
  width: 100%;
  max-width: 1100px; /* controls how wide the section can go */
  display: grid;
  grid-template-columns: 125px 1fr 125px;
  gap: 20px;
  align-items: center;
  padding: 0 12px;
  margin: 18px auto;
  
  
}

/* Center banner keeps aspect ratio and won't overflow */
.banner-section .center img#bannerImg {
  width: 100%;
  max-width: 728px; /* keep the 728x90 asset as max */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
}

/* Left/Right ad default sizing (desktop) */
.banner-section .ad-slot img {
  width: 125px;
  height: 125px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}

/* Tablet and Mobile: stack vertically, left/right ads become 300x250 via srcset and expand */
@media (max-width: 900px) {
  .banner-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: 12px;
  }

  /* Ad first (DOM order), full width but capped to 300px so it keeps the 300x250 look */
  .banner-section .ad-slot {
    width: 100%;
  }
  .banner-section .ad-slot img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .banner-section .center {
    width: 100%;
  }
  .banner-section .center img#bannerImg {
    width: 100%;
    max-width: 728px;
    height: auto;
  }
}

/* Very small screens: allow everything to grow to viewport width */
@media (max-width: 420px) {
  .banner-section .ad-slot img,
  .banner-section .center img#bannerImg {
    max-width: 100%;
  }
}


/* Carousel Section */
.carousel-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  perspective: 1000px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: calc(300px * 10);
  animation: scrollLoop 40s linear infinite;
}

.carousel-slide {
  position: relative;
  min-width: 300px;
  height: 250px;
  margin: 10px;
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.carousel-slide:hover {
  transform: scale(1.05) rotateY(10deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
}

.carousel-slide:hover .slide-info {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.slide-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.slide-info p {
  font-size: 14px;
}

/* Continuous Loop for Desktop/Tablet */
@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive Columns */
@media (max-width: 1024px) {
  .carousel-slide {
    min-width: 45%;
  }
}

/* Mobile View: One-by-one slide with pause */
@media (max-width: 768px) {
  .carousel-track {
    width: 100%;
    animation: mobileSlide 50s ease-in-out infinite;
  }

  .carousel-slide {
    min-width: 100%;
    margin: 0;
  }

  @keyframes mobileSlide {
    0%, 5% { transform: translateX(0); }
    10%, 15% { transform: translateX(-100%); }
    20%, 25% { transform: translateX(-200%); }
    30%, 35% { transform: translateX(-300%); }
    40%, 45% { transform: translateX(-400%); }
    50%, 55% { transform: translateX(-500%); }
    60%, 65% { transform: translateX(-600%); }
    70%, 75% { transform: translateX(-700%); }
    80%, 85% { transform: translateX(-800%); }
    90%, 95% { transform: translateX(-900%); }
    100% { transform: translateX(0); }
  }
}



/* Each column stacks vertically */
.grid-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Subtitle box */
.row-small-title {
    width: 100%;
    background: linear-gradient(45deg, #02b3ff, #0077d4);
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
}

.row-small-title h3 {
    margin: 0;
    color: #fff;
    font-family: sans-serif;
    font-size: 1rem;
}

/* Main 5-column layout */
.five-col-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 12px;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
    .five-col-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .five-col-grid { grid-template-columns: 1fr; }
}



/* Main 6-column layout */
.six-col-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    padding: 12px;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
    .six-col-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .six-col-grid { grid-template-columns: 1fr; }
}





/* ===============================
   GAMES PAGE CUSTOM STYLES
================================*/

/* --- Carousel Section --- */
.games-carousel {
  margin: 40px auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  perspective: 1000px;
}

.games-carousel .carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.games-carousel .carousel-track {
  display: flex;
  animation: gamesScroll 40s linear infinite;
}

.games-carousel .carousel-slide {
  flex: 0 0 300px;
  height: 250px;
  margin: 10px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background: linear-gradient(to bottom right, #fff, #f3f3f3);
}

.games-carousel .carousel-slide:hover {
  transform: scale(1.05) rotateY(5deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.games-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* --- Hover Info --- */
.games-carousel .slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 15px;
}

.games-carousel .carousel-slide:hover .slide-info {
  opacity: 1;
}

.games-carousel .slide-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1em;
  margin-bottom: 5px;
}

.games-carousel .slide-info p {
  font-size: 0.9em;
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
}

/* --- Continuous Scroll Animation --- */
@keyframes gamesScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Games Grid Section --- */
.grid-4x4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
  justify-items: center;
}

.grid-4x4 .link-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 30px 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.grid-4x4 .link-box:hover {
  background: linear-gradient(135deg, #ff6600, #ff9900);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255,102,0,0.3);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .games-carousel .carousel-track {
    animation: gamesScrollMobile 10s linear infinite;
  }
  @keyframes gamesScrollMobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-300px); }
  }
  .games-carousel .carousel-slide {
    flex: 0 0 90%;
    margin: 0 5%;
  }
}

@media (max-width: 480px) {
  .games-carousel .carousel-slide {
    flex: 0 0 100%;
  }
}


/* ===============================
   GAME PLAY PAGE STYLES
================================*/
.game-info {
  padding: 30px 20px;
  text-align: center;
  background: #f9f9f9;
}

.game-info .section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.game-description {
  font-family: 'Poppins', sans-serif;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Game Iframe Container --- */
.gameplay-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  background: #fff;
}

.game-container {
  width: 90%;
  max-width: 1000px;
  height: 600px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-radius: 15px;
  overflow: hidden;
}

.game-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .game-container {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .game-container {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .game-container {
    height: 300px;
  }
}


/* ===============================
   BACK BUTTON STYLING
================================*/
.back-btn-container {
  text-align: center;
  margin-top: 25px;
}

.back-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6600, #ff9900);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255,102,0,0.4);
  transition: all 0.3s ease-in-out;
}

.back-btn:hover {
  background: linear-gradient(135deg, #ff9900, #ff6600);
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255,102,0,0.5);
}


/* ===============================
   RELATED CATEGORIES STYLES
================================*/
.related-categories {
  padding: 50px 20px;
  background: #f7f7f7;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 25px;
  justify-items: center;
}

.category-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 30px 15px;
  transition: all 0.3s ease-in-out;
  width: 100%;
  max-width: 250px;
}

.category-box:hover {
  background: linear-gradient(135deg, #ff6600, #ff9900);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(255,102,0,0.4);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .category-box {
    padding: 20px 10px;
  }
}


    /* === GAMES PAGE STYLING === */
    .games-page {
      max-width: 1400px;
      margin: 50px auto;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
    }

    .ad-vertical {
      width: 160px;
      height: 600px;
      background: #e0e0e0;
      border-radius: 12px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      color: #555;
      flex-shrink: 0;
    }

    .game-container {
      flex: 1;
      min-width: 300px;
      max-width: 900px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .game-frame {
      width: 100%;
      aspect-ratio: 16/9;
      border: none;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      background: #000;
    }

    .back-button {
      background: linear-gradient(90deg, #007bff, #00c6ff);
      color: #fff;
      border: none;
      border-radius: 30px;
      padding: 12px 30px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 5px 15px rgba(0,123,255,0.3);
    }

    .back-button:hover {
      background: linear-gradient(90deg, #00c6ff, #007bff);
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .ad-vertical {
        display: none;
      }
      .game-container {
        max-width: 100%;
      }
    }

    @media (max-width: 600px) {
      .games-page {
        padding: 10px;
      }
      .back-button {
        width: 80%;
      }
    }
	
	
	