* { box-sizing: border-box; margin:0; padding:0;}

:root {
  --bg: url('/assets/images/backg.png') no-repeat center center fixed;
  --bg-size: cover;

  --text: #eee;
  --font-main: 'Montserrat', sans-serif;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  background-size: var(--bg-size);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Make product boxes taller on products.html */
body.products .room {
  height: 375px; /* adjust as needed */
  display: flex;
  flex-direction: column;
}

body.products .room img {
  height: 70%; /* take 60% of box for image */
}

body.products .room-title,
body.products .room-price-age,
body.products .stars {
  flex-shrink: 0;
}


/* Price and age always visible below name */
.room-price-age {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  text-align: center;
  color: #ddd;
  margin-bottom: 0.3rem;
}


/* Left-side sliding menu */
.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  width: 33%;
  max-width: 400px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(5px);
  color: #fff;
  font-family: 'Special Elite', cursive;
  z-index: 9998;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: left 0.4s ease;
}
.side-menu.open { left: 0; }
.side-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.side-menu a:hover { color: gold; }
@media(max-width: 768px){ .side-menu { width: 100%; left: -100%; } }

/* Menu toggle button */
.menu-btn {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  user-select: none;
}

/* Header/banner */
header {
  margin-left: 90px;
  position: sticky;
  top:0;
  width: 100%;
  background: rgba(10,10,10,0.85);
  color:#fff;
  padding:1rem 2rem;
  font-size:2rem;
  font-family: 'Special Elite', cursive;
  z-index:1000;
  text-shadow:0 0 8px #000;
  letter-spacing:1px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
}

.intro {
  padding:6rem 2rem 4rem 2rem;
  text-align:center;
  font-family: 'Special Elite', cursive;
}
.intro h1 { font-size:3rem; margin-bottom:1rem; }
.intro p { font-size:1.3rem; max-width:800px; margin:0 auto; line-height:1.6; color:#ccc; }

/* Grid container */
.container {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:2rem;
  padding:2rem 4rem 4rem 4rem;
}
.room {
  background:#000000;
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  position:relative;
  box-shadow:0 10px 25px rgba(0, 0, 0, 0.5);
  opacity:0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  padding-bottom: 20px;
}
.room.visible { opacity:1; transform: translateY(0); }
.room img {
  width:100%;
  height:80%;
  object-fit:cover;
  display:block;
  filter: brightness(0.8) contrast(1.2);
}
.room-title {
  height:10%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: 'Special Elite', cursive;
  font-size:1.2rem;
  text-align:center;
  margin-top: 10px;
  letter-spacing:1px;
  background:#000000;
  color:#f8f8f8;
  text-shadow:0 0 6px #000;
}
.room::after {
  content:'';
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background:rgba(255, 255, 255, 0);
  transition: background 0.3s;
  border-radius:16px;
  z-index:1;
}
.room:hover::after { background:rgba(0,0,0,0.6); }
.stars {
  position:absolute;
  bottom:12px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:5px;
  opacity:0;
  transition: opacity 0.3s;
  z-index:2;
}
.room:hover .stars { opacity:1; }
.stars span { color:gold; font-size:1.3rem; text-shadow:0 0 3px #000; }

@media(max-width:1024px){ .container { grid-template-columns: repeat(2,1fr); } }
@media(max-width:640px){ .container { grid-template-columns:1fr; padding:2rem; } }

/* Footer with oversized hooks */
footer {
  background: rgba(10,10,10,0.85);
  text-align: center;
  padding: 1rem 2rem;
  font-family: 'Special Elite', cursive;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: visible;
  min-height: 80px;
}
footer img {
  position: absolute;
  top: -40px;
  width: 30%;
  height: auto;
}
footer img:first-child { left: -15px; }
footer img.hook-right { right: -15px; transform: scaleX(-1); }
footer span { font-size: 1.2rem; letter-spacing: 1px; position: relative; z-index: 1; }

@media(max-width:640px){
  footer { flex-direction: column; min-height: 120px; }
  footer img { width: 120px; top: -60px; }
  footer img:first-child { left: -40px; }
  footer img.hook-right { right: -40px; }
}
.section-header {
  font-family: 'Special Elite', cursive;
  font-size: 2rem;
  text-align: center;
  margin: 3rem 0 1.5rem 0;
  color: #fff;
  text-shadow: 0 0 5px #000;
}

/* Category boxes (similar to rooms but smaller) */
.category {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 6px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.1);
}
.room-link {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* keeps text color same */
}

.category .room-title {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  letter-spacing: 1px;
  background: #0a0a0a;
  color: #f8f8f8;
  text-shadow: 0 0 4px #000;
}
.category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.6);
}

/* Responsive grid */
@media(max-width:1024px){ .categories .container { grid-template-columns: repeat(2,1fr); } }
@media(max-width:640px){ .categories .container { grid-template-columns:1fr; padding: 0 2rem 2rem 2rem; } }

.game-info {
  padding: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #ddd;
  line-height: 1.4;
}

/* Game link default style */
/* Game link default style */
/* Default button style */
.game-link {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.15); /* semi-transparent by default */
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 0.3rem;
  transition: all 0.3s ease;
   pointer-events: auto;
}

/* Hover effect */
.game-link:hover {
  background: rgba(255, 215, 0, 0.8); /* gold-ish highlight */
  color: #000; /* text pops on gold */
  box-shadow: 0 0 15px gold;
  transform: scale(1.05);
   pointer-events: auto;
}

.room.visible {
  opacity:1;
  transform: translateY(0);
}

/* Room image */
.room img {
  width:100%;
  height:80%;
  object-fit:cover;
  display:block;
  filter: brightness(0.8) contrast(1.2);
  transition: transform 0.3s ease;
}

/* Title + stars/price always visible */
.room-title {
  font-family: 'Special Elite', cursive;
  font-size:1.2rem;
  text-align:center;
  padding:0.2rem 0;
  color:#fff;
}

.stars {
  text-align:center;
  font-size:1rem;
  color:gold;
  margin-bottom:0.3rem;
}

/* Overlay with additional info on hover */
/* Overlay with additional info */
.room-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  border-radius: 16px;
  text-align: center;
  z-index: 2;
  pointer-events: none; /* overlay itself ignores pointer events when hidden */
}

/* Show overlay when room is hovered */
.room:hover .room-overlay {
  opacity: 1;
  pointer-events: auto; /* allow interaction with children */
}

/* Default button style */
.game-link {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.15); /* semi-transparent default */
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 0.3rem;
  transition: all 0.2s ease;
  pointer-events: auto;
}

.similar-games {
  max-width: 1100px;
  margin: 2rem auto 4rem auto;
  padding: 0 2rem;
}

.similar-games h2 {
  font-family: 'Special Elite', cursive;
  color: #fff;
  margin-bottom: 1rem;
}

.similar-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.similar-card {
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  overflow: hidden;
  padding: 1rem;
  color: #fff;
}

.similar-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.similar-card h3 {
  font-family: 'Special Elite', cursive;
  margin: 0.8rem 0 0.4rem 0;
}
.room-img {
  height: 220px; /* choose your fixed height */
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* THIS crops the edges */
}

.similar-card p {
  font-size: 0.9rem;
  color: #ddd;
}

.similar-card a {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.5rem 0.8rem;
  background: gold;
  color: #000;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

.game-hero {
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 3rem;
  display: block; /* important */
}

.game-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);

  pointer-events: none;
}

.game-hero-content {
    z-index: 2;
    max-width: 60%;
    text-align: right;
    color: #fff;
    margin-left: auto;
    background-color: black;
    background-clip: padding-box;
    padding: 30px;
}


.game-hero-content h1 {
  font-family: 'Special Elite', cursive;
  font-size: 6rem;
  margin-bottom: 0.5rem;
}

.game-hero-content p {
  font-size: 2rem;
  color: #ddd;
}

/* HERO buttons bottom-left */
.game-buttons {
  position: absolute;
  bottom: 6rem;
  left: 6rem;
  display: flex;
  gap: 1rem;
  border-radius: 10px;
  font-size: 1.25rem;
  font-weight: 900;
}


/* INFO SECTION */
.game-info {
  background: #000;
  color: #ddd;
  padding: 3rem;
}

/* Gallery layout */
.game-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;  /* THIS makes both columns equal height */
}


/* Main image */
.game-main-image {
  height: 100%;
}

.game-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  object-position: 50% 85%; 
  border: 1px solid rgba(255,255,255,0.2);
}


/* Description */
.game-description h2 {
  margin-bottom: 1rem;
  font-family: 'Special Elite', cursive;
}

/* Thumbnails */
.game-thumbnails {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.game-thumbnails img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.7;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s ease;
}

.game-thumbnails img:hover,
.game-thumbnails img.active {
  opacity: 1;
  border-color: gold;
  box-shadow: 0 0 10px rgba(255,215,0,0.5);
}


.hero-btn {
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.hero-btn.primary {
  background: gold;
  color: #000;
}

.hero-btn.secondary {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

.game-info {
  background: #000;
  color: #ddd;
  padding: 3rem;
  max-width: 90%;
  margin: auto;
}

/* ONLY when overlay is visible AND link itself is hovered */
.room:hover .room-overlay .game-link:hover {
  background: #fff;       /* fully white */
  color: #000;            /* black text for readability */
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
}
/* Responsive tweaks */
@media(max-width:640px){
  .room img { height:200px; }
  .room-overlay { padding:0.5rem; font-size:0.9rem; }
}

/* ===============================
   Mobile Responsive Styles
   For phones and small tablets
================================ */
@media (max-width: 768px) {
  header {
    margin-left: 0;
    font-size: 1.3rem;
    padding: 0.8rem 1rem;
  }

  .menu-btn {
    top: 0.75rem;
    left: 0.75rem;
    font-size: 1.5rem;
    padding: 0.4rem 0.6rem;
  }

  .intro {
    padding: 3rem 1rem 2rem 1rem;
  }

  .intro h1 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }

  .intro p {
    font-size: 1rem;
  }

  .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem 1rem 2rem 1rem;
  }

  .room {
    padding-bottom: 15px;
  }

  .room-title {
    font-size: 0.9rem;
    margin-top: 8px;
  }

  .stars span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  header {
    margin-left: 0;
    font-size: 1.1rem;
    padding: 0.6rem 0.8rem;
  }

  .menu-btn {
    top: 0.5rem;
    left: 0.5rem;
    font-size: 1.3rem;
  }

  .intro {
    padding: 2rem 0.75rem 1.5rem 0.75rem;
  }

  .intro h1 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .intro p {
    font-size: 0.9rem;
  }

  .container {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.75rem 0.75rem 1.5rem 0.75rem;
  }

  .room-title {
    font-size: 0.8rem;
  }

  footer {
    padding: 0.75rem 1rem;
    min-height: auto;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  footer span {
    font-size: 0.9rem;
  }

  .game-info {
    padding: 1.5rem;
    max-width: 95%;
  }
}

/* ===============================
   Additional Responsive Styles
   For all pages and sections
================================ */
@media (max-width: 768px) {
  .intro h1 {
    font-size: 2rem;
  }

  .intro p {
    font-size: 1rem;
  }

  .section-header {
    font-size: 1.5rem !important;
  }

  .categories .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem 2rem;
  }

  .category {
    border-radius: 12px;
  }

  .category .room-title {
    font-size: 0.9rem;
  }

  /* Game page responsive */
  .game-hero {
    min-height: 350px;
  }

  .game-hero-content h1 {
    font-size: 1.8rem;
  }

  .game-hero-content p {
    font-size: 1rem;
  }

  .game-buttons {
    gap: 0.75rem;
  }

  .hero-btn {
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
  }

  .game-gallery {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .game-description h2 {
    font-size: 1.3rem;
  }

  .game-description p {
    font-size: 0.95rem;
  }

  .game-thumbnails {
    gap: 0.75rem;
    padding: 1rem;
  }

  .game-thumbnails img {
    width: 70px;
    height: 70px;
  }

  .similar-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .similar-card {
    padding: 1rem;
  }

  .similar-card h3 {
    font-size: 0.95rem;
  }

  .similar-card p {
    font-size: 0.85rem;
  }

  .similar-card a {
    font-size: 0.9rem;
  }

  /* Products page */
  .room-overlay {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .room-overlay div {
    margin-bottom: 0.5rem;
  }

  .game-link {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  /* About page */
  .photo-frame {
    width: 220px;
    margin: 1.5rem auto 1rem auto;
    border-width: 4px;
  }

  .about-text {
    font-size: 1rem;
    max-width: 700px;
    margin: 1rem auto 2rem auto;
  }

  .about-text h1 {
    font-size: 1.8rem;
  }

  .about-text p {
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  header {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }

  .intro {
    padding: 2rem 1rem 1.5rem 1rem;
  }

  .intro h1 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .intro p {
    font-size: 0.9rem;
  }

  .section-header {
    font-size: 1.2rem !important;
    margin-bottom: 1rem;
  }

  .categories .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .category .room-title {
    font-size: 0.75rem;
    margin-top: 5px;
  }

  /* Game page */
  .game-hero {
    min-height: 280px;
    padding: 1rem;
  }

  .game-hero-content h1 {
    font-size: 1.3rem;
  }

  .game-hero-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .game-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  .game-gallery {
    padding: 1rem 0;
  }

  .game-description h2 {
    font-size: 1.1rem;
  }

  .game-description p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .game-thumbnails {
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .game-thumbnails img {
    width: 60px;
    height: 60px;
  }

  .game-main-image {
    min-height: 200px;
  }

  .similar-container {
    grid-template-columns: 1fr;
  }

  .similar-card {
    padding: 0.75rem;
  }

  .similar-card h3 {
    font-size: 0.85rem;
  }

  .similar-card p {
    font-size: 0.8rem;
  }

  /* Products page */
  .room-overlay {
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  .room-overlay div {
    margin-bottom: 0.35rem;
  }

  .game-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  /* About page */
  .photo-frame {
    width: 180px;
    border-width: 3px;
    margin: 1rem auto 0.75rem auto;
  }

  .about-text {
    font-size: 0.9rem;
    max-width: 95%;
    margin: 0.75rem auto 1.5rem auto;
  }

  .about-text h1 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .about-text p {
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }

  footer img {
    width: 30px;
  }
}

/* ===============================
   Game Page CSS - game.html specific
================================ */
.game-hero {
  position: relative;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  padding: 2rem;
}

.game-hero-content {
  text-align: center;
  max-width: 700px;
}

.game-hero-content h1 {
  font-size: 2.5rem;
  font-family: 'Special Elite', cursive;
  margin-bottom: 1rem;
}

.game-hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.game-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: bold;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #ff5555 0%, #ff7777 100%);
  color: #fff;
  border: 2px solid #ff5555;
}

.hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(255, 85, 85, 0.4);
}

.hero-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-btn.secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.game-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.game-main-image {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.1);
}

.game-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-description {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.game-description h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.game-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ddd;
}

.game-thumbnails {
  display: flex;
  gap: 1rem;
  padding: 2rem;
  overflow-x: auto;
  justify-content: center;
  flex-wrap: wrap;
}

.game-thumbnails img {
  width: 100px;
  height: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s;
  flex-shrink: 0;
}

.game-thumbnails img:hover {
  border-color: #fff;
  transform: scale(1.05);
}

.game-thumbnails img.active {
  border-color: #ff5555;
  box-shadow: 0 0 15px rgba(255, 85, 85, 0.5);
}

.similar-games {
  padding: 3rem 2rem;
  background: rgba(0,0,0,0.3);
  text-align: center;
}

.similar-games h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #fff;
}

.similar-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.similar-card {
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
}

.similar-card:hover {
  border-color: rgba(255, 85, 85, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 85, 85, 0.2);
}

.similar-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.similar-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.similar-card p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.similar-card a {
  display: inline-block;
  background: #ff5555;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.similar-card a:hover {
  background: #ff7777;
  transform: scale(1.05);
}

/* Game page responsive */
@media (max-width: 768px) {
  .game-gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .game-main-image {
    min-height: 300px;
  }

  .game-hero {
    min-height: 350px;
    padding: 1.5rem;
  }

  .game-hero-content h1 {
    font-size: 1.8rem;
  }

  .game-hero-content p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }

  .similar-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .game-gallery {
    gap: 1rem;
    padding: 1rem;
  }

  .game-main-image {
    min-height: 200px;
  }

  .game-hero {
    min-height: 280px;
    padding: 1rem;
  }

  .game-hero-content h1 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .game-hero-content p {
    font-size: 0.85rem;
  }

  .game-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    width: 100%;
  }

  .game-description h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .game-description p {
    font-size: 0.9rem;
  }

  .game-thumbnails {
    gap: 0.5rem;
    padding: 1rem;
  }

  .game-thumbnails img {
    width: 70px;
    height: 70px;
  }

  .similar-container {
    grid-template-columns: 1fr;
  }

  .similar-card {
    padding: 0.75rem;
  }
}

/* ===============================
   Reviews Section
   =============================== */
.reviews-section {
  padding: 4rem 2rem;
  text-align: center;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 2rem 0;
}

.reviews-scroll {
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
  min-width: fit-content;
  scroll-behavior: smooth;
}

.review-card {
  flex: 0 0 300px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
}

.review-stars {
  font-size: 1.2rem;
  color: #8B4513;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f4e4d8;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  font-size: 0.9rem;
  color: #A0522D;
  font-weight: 600;
  text-align: right;
}

/* Scrollbar styling */
.reviews-container::-webkit-scrollbar {
  height: 8px;
}

.reviews-container::-webkit-scrollbar-track {
  background: rgba(139, 69, 19, 0.2);
  border-radius: 4px;
}

.reviews-container::-webkit-scrollbar-thumb {
  background: #8B4513;
  border-radius: 4px;
}

.reviews-container::-webkit-scrollbar-thumb:hover {
  background: #A0522D;
}
