/* ==========================================================================
   PROTAGONIST STUDIO - PREMIUM LIGHT DESIGN SYSTEM
   ========================================================================== */

:root {
  --bg-primary: #ffffff; /* Pure White */
  --bg-secondary: #f5f5f5; /* Clean Light Grey */
  --bg-card: #ffffff; /* Pure White */
  --border-color: rgba(0, 0, 0, 0.1);
  --border-color-hover: rgba(0, 0, 0, 0.3);

  --text-primary: #000000; /* Pure Black */
  --text-muted: #555555; /* Muted Grey */
  --text-light: #888888; /* Light Grey */

  --accent-color: #000000; /* Pure Black */
  --accent-hover: #333333; /* Dark Grey */
  --accent-light: #f5f5f5; /* Light Grey Tint */

  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;

  --font-heading: "Syne", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --shadow-subtle: 0 4px 20px rgba(140, 120, 83, 0.04);
  --shadow-hover: 0 16px 40px rgba(140, 120, 83, 0.08);
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
}

/* Reusable Containers & Grid */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 36px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
  border: 1px solid var(--text-primary);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-nav {
  padding: 10px 20px;
  font-size: 0.75rem;
  background-color: transparent;
  color: var(--text-primary);
}

.btn-nav:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* Typography styles */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-number {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  font-weight: 400;
  line-height: 1.6;
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  transition: var(--transition-fast);
}

.header-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
}

/* Navigation Links in Header */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary) !important;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  transition: var(--transition-fast);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.info-separator {
  color: var(--border-color);
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  position: relative;
  padding: 160px 0 50px 0; /* solid padding, no artificial min-height stretching */
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-gallery-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 9 / 10;
  justify-self: center; /* centers the frame in the column, closing the middle gap */
}

.frame-border-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-color);
  padding: 15px;
  background-color: var(--bg-card);
  z-index: 2;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.frame-img {
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  object-fit: cover;
  filter: contrast(1.1) brightness(0.95);
  transition: var(--transition-smooth);
  opacity: 0;
  animation: heroSlideshow 12s infinite ease-in-out;
}

.frame-img.slide-1 {
  animation-delay: 0s;
}

.frame-img.slide-2 {
  animation-delay: 4s;
}

.frame-img.slide-3 {
  animation-delay: 8s;
}

@keyframes heroSlideshow {
  0%,
  100% {
    opacity: 0;
  }
  4%,
  33% {
    opacity: 1;
  }
  37% {
    opacity: 0;
  }
}

.frame-shadow-offset {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent-color);
  z-index: 1;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.hero-gallery-frame:hover .frame-border-wrap {
  transform: translate(-8px, -8px);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-hover);
}

.hero-gallery-frame:hover .frame-shadow-offset {
  transform: translate(8px, 8px);
}

.hero-gallery-frame:hover .frame-img {
  filter: contrast(1.15) brightness(1.02);
}

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

.hero-overline {
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem); /* reduced size to fit fold */
  margin-bottom: 20px; /* reduced margin */
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 25px; /* reduced margin */
  max-width: 600px;
  line-height: 1.5;
}

.hero-decor-line {
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
  margin-bottom: 20px;
}

/* Problem Section */
.problem-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.problem-sticky-header {
  position: sticky;
  top: 150px;
  height: fit-content;
}

.problem-body .lead-text {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.3;
  margin-bottom: 30px;
  font-weight: 400;
}

.problem-body .body-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Why Section */
.why-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
  justify-content: center;
}

.why-item {
  flex: 0 1 320px;
  width: 100%;
  max-width: 320px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 50px 30px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}

.why-item:hover {
  background-color: var(--bg-secondary);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.item-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 30px;
}

.item-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.item-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Reputation / Social proof */
.social-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.social-header-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 60px;
}

.follower-callout {
  text-align: center;
}

.follower-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-color);
}

.follower-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.review-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}

.review-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.rating-stars {
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--accent-color);
  margin-bottom: 25px;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
  color: var(--text-primary);
}

.review-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Gallery Section */
.gallery-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.gallery-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 15px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}

.gallery-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.gallery-image-wrapper {
  width: 100%;
  height: 380px;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid var(--border-color);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
  filter: contrast(1.15) brightness(1.02);
  transform: scale(1.02);
}

.gallery-item-info {
  display: none !important;
}

.gallery-tag {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 700;
}

.gallery-desc {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* About the Artist Section */
.artist-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.artist-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.artist-content .lead-text {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: 25px;
  font-weight: 500;
  color: var(--accent-color);
}

.artist-content .body-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.artist-content .body-text:last-of-type {
  margin-bottom: 0;
}

.artist-image-wrapper {
  width: 100%;
  height: 480px;
  border: 1px solid var(--border-color);
  padding: 12px;
  background-color: var(--bg-card);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}

.artist-image-wrapper:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-hover);
}

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.95);
  transition: var(--transition-smooth);
}

.artist-image-wrapper:hover .artist-img {
  filter: contrast(1.15) brightness(1.02);
  transform: scale(1.02);
}

/* Media Query Support for Artist Section */
@media (max-width: 1024px) {
  .artist-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .artist-image-wrapper {
    height: 380px;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Process Section */
.process-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.process-list {
  margin-top: 60px;
}

.process-step {
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
  display: grid;
  grid-template-columns: 0.4fr 0.6fr 1fr;
  align-items: center;
  gap: 30px;
  transition: var(--transition-fast);
}

.process-step:hover {
  border-bottom-color: var(--accent-color);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 30px;
  grid-column: span 2;
}

.step-idx {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-color);
  font-weight: 700;
}

.step-title {
  font-size: 1.5rem;
}

.step-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Offer Section */
.offer-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.offer-card-main {
  border: 1px solid var(--border-color);
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(140, 120, 83, 0.03) 0%,
      transparent 80%
    ),
    var(--bg-card);
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.offer-info {
  max-width: 800px;
  margin: 0 auto;
}

.offer-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 30px;
  color: #ffffff !important;
}

.offer-desc {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.6;
}

.game-instruction {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Offline Games Showcase Grid */
.offline-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.offline-game-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}

.offline-game-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.game-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  background-color: #111111;
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.offline-game-card:hover .game-card-img {
  transform: scale(1.03);
}

.game-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff !important;
  letter-spacing: 1px;
}

.game-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 60px;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  text-align: left;
  padding: 30px 10px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-color);
}

.faq-toggle {
  width: 15px;
  height: 15px;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

.faq-toggle::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-toggle::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.active .faq-toggle::before,
.faq-item.active .faq-toggle::after {
  background-color: var(--accent-color);
}

.faq-item.active .faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 0 10px 30px 10px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Combined Location & Booking Section */
.location-booking-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  padding: 60px 0;
}

.location-booking-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: stretch;
  border: 1px solid #000000;
  padding: 60px;
  background-color: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.location-details-col {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-form-col {
  text-align: left;
}

.booking-form-card {
  height: 100%;
}

.booking-form-col .booking-title {
  text-align: left;
  margin-bottom: 20px;
}

.booking-form-col .booking-subtitle {
  text-align: left;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .location-booking-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 40px;
  }
}

@media (max-width: 480px) {
  .location-booking-container {
    padding: 25px;
    gap: 40px;
  }
}

/* Modal Overlay Styles for Quick Consultation */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  max-width: 580px;
  width: 90%;
  border: 2px solid #000000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  padding: 30px 40px !important;
  overflow-y: hidden;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 3rem;
  font-weight: 300;
  color: #000000;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
  z-index: 9999;
}

.modal-close-btn:hover {
  color: #888888;
}

.modal-subtitle {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.urgency-callout {
  border-left: none;
  border-top: 2px solid var(--accent-color);
  padding-left: 0;
  padding-top: 20px;
  margin-top: 30px;
}

.urgency-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
}

.form-group input,
.form-group textarea {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(140, 120, 83, 0.1);
}

.form-group textarea {
  resize: none;
}

.form-success {
  border: 1px solid var(--accent-color);
  padding: 60px 40px;
  text-align: center;
  background-color: var(--bg-card);
  box-shadow: var(--shadow-hover);
}

.form-success h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.form-success p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hidden {
  display: none !important;
}

/* Footer */
.site-footer {
  border-top: none;
  background-color: #121212; /* Dark background */
  padding: 80px 0 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #ffffff; /* White */
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #888888; /* Muted light gray */
  line-height: 1.6;
}

.footer-meta-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 5px;
}

.footer-meta-item {
  font-size: 0.85rem;
  color: #666666; /* Muted light gray */
  line-height: 1.4;
}

.footer-nav-col,
.footer-social-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col h4,
.footer-social-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #555555; /* Muted darker gray header */
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-nav-col a,
.footer-social-col a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  letter-spacing: 1px;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-nav-col a:hover,
.footer-social-col a:hover {
  color: #ffffff !important;
  transform: translateX(4px);
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #666666;
  letter-spacing: 1px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-legal-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #666666;
  text-decoration: none;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.footer-legal-link:hover {
  color: #ffffff;
}

.footer-legal-separator {
  color: #333333;
  font-size: 0.75rem;
}

/* Animations */
@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-decor-line {
    margin: 0 auto 20px auto;
  }

  .hero-gallery-frame {
    justify-self: center;
    max-width: 320px; /* smaller max-width to ensure compatibility with all screens */
  }

  .offline-games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-sticky-header {
    position: relative;
    top: 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item.large {
    grid-row: span 1;
  }

  .portfolio-item.large .portfolio-img {
    min-height: 450px;
  }

  .offer-card-main {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-container {
    flex-direction: column;
    gap: 45px;
  }

  .process-step {
    grid-template-columns: 0.4fr 1.6fr;
  }

  .process-step .step-desc {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    width: 100%;
    gap: 0;
  }

  .brand-logo {
    font-size: 1.25rem;
    margin-bottom: 0;
  }

  .brand-logo img {
    height: 48px;
  }

  .btn-whatsapp-header {
    padding: 8px 14px;
    font-size: 0.7rem;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid var(--border-color);
    z-index: 999;
    display: flex;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .header-info {
    display: none;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .step-header {
    grid-column: span 1;
  }

  .offline-games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Sticky Contact Buttons */
.sticky-contact-bar {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.sticky-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition-fast);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  background-color: #333333;
}

.sticky-btn svg {
  transition: var(--transition-fast);
}

.sticky-btn:hover svg {
  transform: scale(1.1);
}

.scroll-top-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* ==========================================================================
   UPDATED/NEW STYLES (STICKY HEADER, EDITORIAL HERO, CONVERSION OPTIMIZATIONS)
   ========================================================================== */

/* Sticky Site Header Refactoring */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* High Contrast WhatsApp Button in Header */
.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  background-color: #000000;
  color: #ffffff !important;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #000000;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-whatsapp-header:hover {
  background-color: #333333;
  border-color: #333333;
}

/* Hamburger mobile nav toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-nav-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: var(--transition-fast);
}

/* Luxury Editorial Video Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000000;
  color: #ffffff;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-container {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 60px 0;
  width: 90%;
  max-width: 1200px;
}

.hero-content-new {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-line-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title-new {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #ffffff !important;
}

.hero-subtitle-new {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

.hero-cta-wrapper-new {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.btn-primary-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
  padding: 18px 36px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-primary-new:hover {
  background-color: transparent !important;
  color: #ffffff !important;
}

.btn-secondary-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent !important;
  color: #ffffff !important;
  padding: 18px 36px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  transition: var(--transition-fast);
}

.btn-secondary-new:hover {
  border-color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.hero-offer-strip {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
}

.offer-accent {
  text-decoration: line-through;
  opacity: 0.7;
}

.offer-highlight {
  color: #ffffff;
  font-weight: 700;
}

/* Quick Consultation Form directly under Hero */
.quick-consult-section {
  background-color: #f9f9f9;
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.small-container {
  max-width: 680px;
  width: 90%;
  margin: 0 auto;
}

.quick-consult-card {
  background-color: #ffffff;
  border: 1px solid #000000;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.quick-consult-header {
  text-align: center;
  margin-bottom: 20px;
}

.quick-consult-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.quick-consult-header p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.quick-consult-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.quick-consult-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-consult-form label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
}

.quick-consult-form input,
.quick-consult-form select,
.quick-consult-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  background-color: #fafafa;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.quick-consult-form input:focus,
.quick-consult-form select:focus,
.quick-consult-form textarea:focus {
  border-color: #000000;
  background-color: #ffffff;
  outline: none;
}

.btn-submit-hero {
  background-color: #000000;
  color: #ffffff !important;
  border: none;
  padding: 18px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.btn-submit-hero:hover {
  background-color: #333333;
}

.form-disclaimer {
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  margin-top: 5px;
}

.whatsapp-alt-block {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.alt-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-whatsapp-alt {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000000;
  text-decoration: none;
  border-bottom: 2px solid #000000;
  padding-bottom: 2px;
  transition: var(--transition-fast);
}

.btn-whatsapp-alt:hover {
  color: #555555;
  border-color: #555555;
}

/* Mid-page Conversion Banner styling */
.portfolio-conversion-banner {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 50px 0;
}

.conversion-banner-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.banner-sub {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.banner-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #ffffff !important;
}

.banner-location {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.btn-banner-cta {
  display: inline-block;
  background-color: #ffffff;
  color: #000000 !important;
  padding: 15px 30px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-banner-cta:hover {
  background-color: #eaeaea;
}

/* Offer & Experience Challenge Refactoring */
.offer-section {
  background-color: #000000;
  color: #ffffff;
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card-main {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 60px;
  background-color: #050505;
  gap: 20px;
}

.experience-intro {
  text-align: center;
  margin: 10px 0 15px 0;
}

.experience-intro h3 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 2px;
  color: #ffffff;
}

.experience-intro p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.game-icon-wrap {
  font-size: 3rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.5;
  font-weight: 500;
}

.new-price {
  color: #ffffff;
}

.offer-info {
  text-align: center;
  margin-bottom: 0;
}

.offer-info .offer-desc {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 8px;
}

.offline-game-card {
  background-color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.offline-game-card:hover {
  border-color: #ffffff;
  transform: translateY(-5px);
}

.offer-cta-wrap {
  text-align: center;
  margin-top: 50px;
}

.btn-offer-cta {
  padding: 18px 45px !important;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
}

.btn-offer-cta:hover {
  background-color: transparent !important;
  color: #ffffff !important;
}

/* Location Card layout */
.location-section {
  background-color: #ffffff;
  padding: 100px 0;
  border-top: 1px solid var(--border-color);
}

.location-card {
  max-width: 680px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #000000;
  padding: 60px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.location-intro {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-light);
  display: block;
  margin-bottom: 12px;
}

.location-studio-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.address-details {
  margin-bottom: 40px;
}

.address-details p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

.location-map-wrap {
  width: 100%;
  margin-bottom: 40px;
  border: 1px solid #000000;
  overflow: hidden;
  height: 220px;
}

.location-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.location-map-img:hover {
  transform: scale(1.02);
}

.location-actions {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-location {
  padding: 15px 25px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-directions {
  background-color: #000000;
  color: #ffffff !important;
  border: 1px solid #000000;
}

.btn-directions:hover {
  background-color: #333333;
}

.btn-whatsapp {
  background-color: transparent;
  color: #000000 !important;
  border: 1px solid var(--border-color);
}

.btn-whatsapp:hover {
  background-color: #fafafa;
  border-color: #000000;
}

.btn-call {
  background-color: transparent;
  color: #000000 !important;
  border: 1px solid var(--border-color);
}

.btn-call:hover {
  background-color: #fafafa;
  border-color: #000000;
}

/* Final Lead section style */
.final-lead-section {
  position: relative;
  padding: 120px 0;
  color: #ffffff;
  text-align: center;
  background-color: #000000;
  overflow: hidden;
}

.final-lead-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.45;
}

.final-lead-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.final-lead-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1.1;
  color: #ffffff !important;
}

.final-lead-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
}

.final-lead-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

.final-lead-subnote {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

.final-lead-wa-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 2px;
  transition: var(--transition-fast);
  margin-top: 10px;
}

.final-lead-wa-link:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Floating Mobile CTA bottom bar */
.floating-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 15px 5%;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: none; /* Hidden on desktop */
}

.floating-mobile-cta.show {
  transform: translateY(0);
}

.floating-cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.floating-cta-price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.5px;
}

.btn-floating-whatsapp {
  background-color: #000000;
  color: #ffffff !important;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  transition: var(--transition-fast);
}

.btn-floating-whatsapp:hover {
  background-color: #333333;
}

/* Mobile Media Queries update */
@media (max-width: 768px) {
  .site-header {
    position: sticky;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    border-top: 1px solid var(--border-color);
    z-index: 999;
    display: flex;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .hero-title-new {
    font-size: 2.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .floating-mobile-cta {
    display: block; /* Show on mobile/tablet */
  }
}

@media (max-width: 480px) {
  .hero-title-new {
    font-size: 2.2rem;
  }

  .hero-cta-wrapper-new {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-new,
  .btn-secondary-new {
    width: 100%;
    text-align: center;
  }

  .location-actions {
    flex-direction: column;
    width: 100%;
  }

  .location-actions .btn-location {
    width: 100%;
    text-align: center;
  }
}

/* Force hero content centering & layout override to fix cutoff text */
.hero-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin: 0 auto !important;
  width: 90% !important;
  max-width: 1200px !important;
}

@media (max-width: 768px) {
  .hero-container {
    width: 95% !important;
  }
}

/* --- INLINE CSS MOVED FROM HTML --- */

/* Premium Color Tokens (Warm Wood & Sand Palette) */
:root {
  --bg-primary: #faf8f5; /* Ivory */
  --bg-secondary: #f3efea; /* Warm sand */
  --bg-card: #ffffff; /* Card white */
  --border-color: rgba(140, 120, 83, 0.25);
  --border-color-hover: rgba(140, 120, 83, 0.6);

  --text-primary: #1c1917; /* Charcoal */
  --text-muted: #6b6257; /* Warm muted */
  --text-light: #8e8477; /* Light sand-grey */

  --accent-color: #8c7853; /* Warm Wood gold */
  --accent-hover: #6e5d3e; /* Darker Wood */
  --accent-light: #fbf9f6; /* Light ivory tint */

  --font-heading: "Cinzel", serif;
  --font-body: "Outfit", sans-serif;

  --shadow-subtle: 0 4px 20px rgba(140, 120, 83, 0.06);
  --shadow-hover: 0 16px 40px rgba(140, 120, 83, 0.12);
}

/* Hero Adjustments for Premium Aesthetics */
.hero-section {
  background-color: var(--bg-primary);
}

/* Reputation Section styling */
.social-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.social-header-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 25px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.review-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}

.review-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.rating-stars {
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--accent-color);
  margin-bottom: 25px;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
  color: var(--text-primary);
}

.review-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Gallery 3D Carousel Section Styles */
.gallery-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  padding: 100px 0;
  overflow: hidden;
}

.premium-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.carousel-container:active {
  cursor: grabbing;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item {
  position: absolute;
  width: 320px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 12px;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease,
    z-index 0.6s;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  border-radius: 4px;
}

.carousel-image-wrapper {
  width: 100%;
  height: 440px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: var(--transition-smooth);
}

/* 3D Stack positions */
.carousel-item.active {
  opacity: 1;
  transform: translateX(0) scale(1.12);
  z-index: 10;
  pointer-events: auto;
  border-color: var(--accent-color);
  box-shadow: var(--shadow-hover);
}

.carousel-item.active .carousel-img {
  filter: grayscale(0%) contrast(1.1);
}

.carousel-item.prev {
  opacity: 0.65;
  transform: translateX(-340px) scale(0.9);
  z-index: 5;
  pointer-events: auto;
}

.carousel-item.next {
  opacity: 0.65;
  transform: translateX(340px) scale(0.9);
  z-index: 5;
  pointer-events: auto;
}

.carousel-item.prev-2 {
  opacity: 0.25;
  transform: translateX(-620px) scale(0.75);
  z-index: 2;
}

.carousel-item.next-2 {
  opacity: 0.25;
  transform: translateX(620px) scale(0.75);
  z-index: 2;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 20;
  box-shadow: var(--shadow-subtle);
}

.carousel-nav-btn:hover {
  background-color: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(140, 120, 83, 0.4);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

@media (max-width: 768px) {
  .carousel-item {
    position: absolute;
    width: 260px;
    transition:
      transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.6s ease,
      z-index 0.6s;
  }

  .carousel-image-wrapper {
    height: 330px;
  }

  .carousel-item.prev {
    transform: translateX(-160px) scale(0.8);
  }

  .carousel-item.next {
    transform: translateX(160px) scale(0.8);
  }

  .carousel-item.prev-2 {
    opacity: 0;
    transform: translateX(-300px) scale(0.65);
  }

  .carousel-item.next-2 {
    opacity: 0;
    transform: translateX(300px) scale(0.65);
  }

  .carousel-nav-btn {
    width: 44px;
    height: 44px;
  }
}

/* Hero Section Premium Styles */
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: 80vh;
  padding-top: 120px;
}
.hero-gallery-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 9 / 10;
  justify-self: center;
}
.frame-border-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-color);
  padding: 15px;
  background-color: var(--bg-card);
  z-index: 2;
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
}
.frame-img {
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  object-fit: cover;
  opacity: 0;
  animation: heroSlideshow 12s infinite ease-in-out;
  transition: var(--transition-smooth);
  filter: contrast(1.1) brightness(0.95);
}
.frame-img.slide-1 {
  animation-delay: 0s;
}
.frame-img.slide-2 {
  animation-delay: 4s;
}
.frame-img.slide-3 {
  animation-delay: 8s;
}
@keyframes heroSlideshow {
  0%,
  100% {
    opacity: 0;
  }
  4%,
  33% {
    opacity: 1;
  }
  37% {
    opacity: 0;
  }
}
.frame-shadow-offset {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent-color);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  max-width: 750px;
}
.hero-line-intro {
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 25px;
  font-weight: 600;
  display: block;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  line-height: 1.1;
  font-family: var(--font-heading);
  color: var(--text-primary);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.5;
}
.hero-offer-strip {
  margin-top: 30px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.offer-accent {
  text-decoration: line-through;
}
.offer-highlight {
  color: var(--accent-color);
  font-weight: bold;
}
.hero-cta-wrapper {
  display: flex;
  gap: 20px;
}
.btn-hero-primary {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: 15px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  border: 1px solid var(--text-primary);
  transition: all 0.3s ease;
  text-align: center;
}
.btn-hero-primary:hover {
  background-color: transparent;
  color: var(--text-primary);
}
.btn-hero-secondary {
  background-color: transparent;
  color: var(--text-primary);
  padding: 15px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  border: 1px solid var(--text-primary);
  transition: all 0.3s ease;
  text-align: center;
}

/* Hero Quick Fixes */
.hero-title {
  color: var(--text-primary) !important;
  opacity: 1 !important;
  z-index: 10;
  position: relative;
}
.hero-subtitle,
.hero-line-intro {
  color: var(--text-muted) !important;
  opacity: 1 !important;
  z-index: 10;
  position: relative;
}
.frame-img.slide-1 {
  opacity: 1 !important;
  animation: none !important;
}
.frame-img.slide-2,
.frame-img.slide-3 {
  display: none !important;
}

/* Offline Games Light Theme Override */
.offline-game-card {
  background-color: #111111 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  padding: 40px 20px !important;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.game-card-title {
  color: #ffffff !important;
  text-align: center;
  width: 100%;
}
.game-card-desc {
  color: rgba(255, 255, 255, 0.7) !important;
  text-align: center;
}
.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Reviews Carousel */
.reviews-grid {
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0 40px 0;
  scrollbar-width: thin;
  grid-template-columns: none !important;
}
.reviews-grid::-webkit-scrollbar {
  height: 6px;
}
.reviews-grid::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 4px;
}
.reviews-grid .review-card {
  flex: 0 0 350px !important;
  scroll-snap-align: center;
}

/* Base Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.modal-card {
  background: var(--bg-primary);
  padding: 40px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}


/* Fix missing offline games CSS */
.offline-game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px;
  text-align: center;
}
.game-image-wrapper {
  margin-bottom: 20px;
}
.game-card-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.game-card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-family: var(--font-heading);
}
.game-card-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
  }
  .hero-cta-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .hero-gallery-frame {
    margin-top: 40px;
  }
  .reviews-grid .review-card {
    flex: 0 0 280px !important;
  }
  .modal-card {
    padding: 25px;
    max-height: 85vh;
    overflow-y: auto;
    width: 90%;
  }
  .quick-consult-form .form-group input,
  .quick-consult-form .form-group select,
  .quick-consult-form .form-group textarea {
    font-size: 16px; /* Prevents zooming on mobile */
  }
  .offline-games-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .offline-game-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0;
  }
}

/* ==========================================================================
   UPDATED/NEW STYLES (LUXURY HERO & GAME FIX)
   ========================================================================== */

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000000;
  color: #ffffff;
  padding: 0;
}

.hero-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin: 0 auto !important;
  width: 95% !important;
  max-width: 1600px !important;
  padding-top: 180px;
}

.hero-content-new {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-line-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title-new {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #ffffff !important;
  margin: 0;
}

.hero-subtitle-new {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin: 0;
}

.hero-cta-wrapper-new {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.btn-primary-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
  padding: 18px 36px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-primary-new:hover {
  background-color: transparent !important;
  color: #ffffff !important;
}

.btn-secondary-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent !important;
  color: #ffffff !important;
  padding: 18px 36px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  transition: var(--transition-fast);
}

.btn-secondary-new:hover {
  border-color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 768px) {
  .hero-title-new {
    font-size: 13vw;
  }
  .hero-cta-wrapper-new {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary-new,
  .btn-secondary-new {
    width: 100%;
  }
}

/* Offline Games Gap Fix */
.offline-game-card {
  gap: 0 !important;
  padding: 30px !important;
}

.game-image-wrapper {
  aspect-ratio: auto !important;
  margin-bottom: 15px !important;
  background-color: transparent !important;
  border: none !important;
  height: 250px;
}

.game-card-img {
  height: 100%;
  width: auto;
  object-fit: contain !important;
  max-height: 250px;
}

/* Hide scrollbar for reviews grid */
.reviews-grid::-webkit-scrollbar {
  display: none;
}
.reviews-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ==========================================================================
   HERO SPLIT LAYOUT — TEXT LEFT, IMAGE RIGHT
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
  background-color: #000000;
  color: #ffffff;
  padding: 0 !important;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
  pointer-events: none;
}

.hero-split-container {
  position: relative;
  z-index: 5;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 50px;
  align-items: center;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 0 60px 0;
}

/* Left Column — Text */
.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  text-align: center !important;
  gap: 20px;
}

.hero-text-col .hero-line-intro {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
}

.hero-text-col .hero-title-new {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #ffffff !important;
  margin: 0;
}

.hero-text-col .hero-divider {
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
  position: relative;
  margin: 5px 0;
}

.hero-text-col .divider-gold-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.hero-text-col .hero-subtitle-new {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin: 0;
}

.hero-text-col .hero-cta-wrapper-new {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.hero-text-col .hero-offer-strip {
  margin-top: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.hero-text-col .offer-accent {
  text-decoration: line-through;
  opacity: 0.6;
}

.hero-text-col .offer-highlight {
  color: #ffffff;
  font-weight: 700;
}

/* Right Column — Image Showcase */
.hero-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-showcase {
  position: relative;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
}

.hero-showcase-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: calc(100vh - 260px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-showcase-img {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  filter: contrast(1.05) brightness(0.95);
}

.hero-showcase-img.active {
  opacity: 1;
}

/* Dot Indicators */
.hero-showcase-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.showcase-dot.active {
  background-color: #ffffff;
  transform: scale(1.3);
}

.showcase-dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Responsive: Tablet & Mobile */
@media (max-width: 1024px) {
  .hero-section {
    min-height: auto !important;
    height: auto !important;
  }

  .hero-split-container {
    grid-template-columns: 1fr !important;
    gap: 35px;
    padding: 120px 0 50px 0;
    text-align: center;
  }

  .hero-text-col {
    align-items: center !important;
    text-align: center !important;
  }

  .hero-text-col .hero-divider {
    margin: 5px auto;
  }

  .hero-text-col .hero-cta-wrapper-new {
    justify-content: center;
  }

  .hero-image-showcase {
    max-width: 380px;
  }

  .hero-showcase-frame {
    max-height: none;
  }
}

@media (max-width: 768px) {
  .hero-split-container {
    padding: 100px 0 40px 0;
    width: 98%;
    gap: 30px;
  }

  .hero-text-col .hero-title-new {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .hero-text-col .hero-cta-wrapper-new {
    flex-direction: column;
    width: 100%;
  }

  .hero-text-col .hero-cta-wrapper-new .btn-primary-new,
  .hero-text-col .hero-cta-wrapper-new .btn-secondary-new {
    width: 100%;
    text-align: center;
  }

  .hero-image-showcase {
    max-width: 90%;
  }

  .hero-showcase-frame {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 480px) {
  .hero-title-new {
    font-size: 2.2rem;
  }

  .hero-cta-wrapper-new {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-new,
  .btn-secondary-new {
    width: 100%;
    text-align: center;
  }

  .location-actions {
    flex-direction: column;
    width: 100%;
  }

  .location-actions .btn-location {
    width: 100%;
    text-align: center;
  }

  .offer-card-main {
    padding: 20px 10px;
  }

  .offline-game-card {
    padding: 20px 10px;
  }
}

/* ==========================================================================
   FOUNDER IMAGE FIX
   ========================================================================== */
.artist-image-wrapper {
  height: auto !important;
}
.artist-img {
  height: auto !important;
  object-fit: contain !important;
  object-position: top center;
}

/* ==========================================================================
   OFFLINE GAMES MOBILE SCROLL & STYLING FIX
   ========================================================================== */
.offline-game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-image-wrapper {
  aspect-ratio: auto;
  margin-bottom: 15px;
  background-color: transparent;
  border: none;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  max-height: 250px;
}

.game-card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.game-card-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .offline-games-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .offline-games-grid::-webkit-scrollbar {
    display: none;
  }

  .offline-game-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    margin: 0;
  }
}

/* EMERGENCY FIX FOR MODAL INTERACTIVITY */
.modal-overlay.show, .modal-overlay.show * {
    pointer-events: auto !important;
    user-select: auto !important;
}
.modal-card {
    z-index: 99999 !important;
}
.modal-close-btn {
    z-index: 100000 !important;
}
