:root {
  --bg: #05070d;
  --bg-card: #0c101a;
  --bg-elevated: #141a28;
  --text: #eef2f8;
  --text-muted: #93a0b5;
  --blue: #2f7bff;
  --orange: #f5a623;
  --accent: #2ee59d;
  --accent-2: #2f7bff;
  --gradient: linear-gradient(135deg, #2ee59d 0%, #2f7bff 55%, #f5a623 100%);
  --whatsapp: #25d366;
  --open: #1f9d55;
  --closed: #d64545;
  --radius: 16px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  --hours-h: 42px;
  --header-h: 100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: calc(var(--hours-h) + var(--header-h));
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1140px, 92vw); margin-inline: auto; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.center-title { text-align: center; font-family: "Syne", sans-serif; margin-bottom: 2rem; }
.center-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* Hours bar */
.hours-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: var(--hours-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: #02040a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
}
.hours-label { color: var(--text-muted); font-weight: 500; }
.hours-status {
  border: none;
  border-radius: 999px;
  padding: 0.28rem 0.9rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  cursor: default;
}
.hours-status.open { background: var(--open); box-shadow: 0 0 16px rgba(31,157,85,0.45); }
.hours-status.closed { background: var(--closed); box-shadow: 0 0 16px rgba(214,69,69,0.35); }

/* Header */
.header {
  position: fixed;
  top: var(--hours-h);
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(5, 7, 13, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img {
  height: 92px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(47,123,255,0.25));
}
.nav-pills {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.2s ease;
}
.pill:hover, .pill.active {
  color: #041018;
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(47,123,255,0.25);
}
.nav-social { display: flex; gap: 0.5rem; align-items: center; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.2s;
}
.social-btn.facebook { background: #1877f2; color: #fff; }
.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.social-btn:hover { transform: translateY(-2px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s;
  font-size: 0.95rem;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gradient);
  color: #041018;
  box-shadow: 0 10px 28px rgba(46,229,157,0.25);
}
.btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* Hero — banners a tamaño completo para leer leyendas */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #02040a;
}
.hero-carousel {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: clamp(320px, 62vh, 720px);
  background: #0a0e16;
  overflow: hidden;
}
.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 62vh, 720px);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0e16;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(5, 7, 13, 0.65);
  color: #fff;
  font-size: 1.9rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}
.carousel-btn:hover { background: rgba(46,229,157,0.45); }
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }
.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}
.carousel-dots button.active { background: var(--accent); transform: scale(1.2); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 2.75rem 4vw 3.25rem;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(46,229,157,0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(46,229,157,0.28);
}
.hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  margin-inline: auto;
  max-width: 760px;
}
.hero-sub-2 { font-size: 0.98rem; margin-bottom: 1.75rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

@media (max-width: 980px) {
  .hero-carousel,
  .carousel-track {
    min-height: clamp(240px, 48vh, 480px);
  }
  .carousel-btn { width: 40px; height: 40px; font-size: 1.5rem; }
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-tag {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.5rem;
}
.section-tag.center { text-align: center; }
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.about-copy h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.about-copy p { color: var(--text-muted); margin-bottom: 1rem; }
.about-visual {
  position: relative;
  min-height: 360px;
}
.about-gamer, .about-gamer-2 {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.about-gamer {
  width: 78%;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.08);
}
.about-gamer-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  aspect-ratio: 1;
  border: 3px solid var(--bg);
  transform: rotate(3deg);
}

/* Brands */
.brands-title {
  text-align: center;
  font-family: "Syne", sans-serif;
  margin-bottom: 1.5rem;
}
.brands-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.25rem 0;
}
.brands-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: brands-scroll 38s linear infinite;
  align-items: center;
}
.brands-track img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.95);
  opacity: 0.92;
}
@keyframes brands-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brands-grid-static {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.25rem;
  align-items: center;
}
.brands-grid-static img {
  height: 56px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  background: rgba(255,255,255,0.03);
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

/* CTA gamer */
.cta-gamer {
  background:
    radial-gradient(circle at 20% 20%, rgba(47,123,255,0.18), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(245,166,35,0.12), transparent 35%),
    var(--bg-elevated);
  border-block: 1px solid rgba(255,255,255,0.06);
}
.cta-gamer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.cta-gamer h2 { font-family: "Syne", sans-serif; margin: 0.4rem 0 0.8rem; }
.cta-gamer p { color: var(--text-muted); margin-bottom: 1.25rem; }
.cta-gamer-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.cta-gamer-imgs img {
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Footer */
.footer {
  background: #03050a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3.5rem 0 2rem;
}
.footer.compact { padding: 1.5rem 0; }
.payments { margin-bottom: 3rem; }
.payments-title {
  text-align: center;
  font-family: "Syne", sans-serif;
  margin-bottom: 1.25rem;
}
.payments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.payments-grid img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.3fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo { height: 70px; width: auto; margin-bottom: 1rem; }
.footer h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}
.footer p, .footer li { color: var(--text-muted); font-size: 0.95rem; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.45rem; }
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.map-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 16/11;
  margin-bottom: 0.75rem;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
}
.footer-copy {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.25rem;
}
.footer-mini { text-align: center; }
.hours-footer { margin-top: 0.5rem; color: var(--accent) !important; font-weight: 600; }

/* Services page */
.page-hero {
  padding: 2.5rem 0 1rem;
  background:
    radial-gradient(circle at top right, rgba(47,123,255,0.2), transparent 40%),
    var(--bg);
}
.page-hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}
.page-lead { color: var(--text-muted); max-width: 720px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.service-tile {
  aspect-ratio: 1;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  padding: 0;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
  text-decoration: none;
  color: #fff;
}
.service-tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 50px rgba(47,123,255,0.28);
}
.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-tile .tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(0,0,0,0.88));
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.service-tile h3 {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.service-tile .wa-hint {
  display: block;
  font-size: 0.72rem;
  color: var(--accent);
  margin-top: 0.35rem;
  font-weight: 600;
}
.services-note {
  margin-top: 1.75rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
}

/* About page */
.about-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.about-page-grid p { color: var(--text-muted); margin-bottom: 1rem; }
.about-page-visual {
  display: grid;
  gap: 0.85rem;
}
.about-page-visual img {
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 16/10;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Legal */
.legal-page {
  padding: 2.5rem 0 4rem;
  max-width: 760px;
}
.legal-page h1 {
  font-family: "Syne", sans-serif;
  margin-bottom: 1rem;
}
.legal-page p, .legal-page li { color: var(--text-muted); margin-bottom: 0.85rem; }
.legal-page ul { padding-left: 1.2rem; margin-bottom: 1.5rem; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 1000;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Chatbot */
.chatbot {
  position: fixed;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 1000;
  width: min(360px, calc(100vw - 2rem));
}
.chatbot-toggle {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  background: linear-gradient(135deg, var(--blue), #1a4fb8);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 10px 28px rgba(47,123,255,0.35);
  font-family: inherit;
}
.chatbot-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(46,229,157,0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,229,157,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(46,229,157,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,229,157,0); }
}
.chatbot-panel {
  margin-top: 0.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  max-height: 460px;
}
.chatbot-panel[hidden] { display: none !important; }
.chatbot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: rgba(47,123,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chatbot-header button {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}
.chatbot-messages {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 220px;
}
.chat-bubble {
  max-width: 90%;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.45;
}
.chat-bubble.bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.chat-bubble.user {
  align-self: flex-end;
  background: rgba(47,123,255,0.35);
  color: #fff;
}
.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1rem 0.75rem;
}
.chatbot-quick button {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  cursor: pointer;
  font-family: inherit;
}
.chatbot-quick button:hover { color: var(--accent); border-color: var(--accent); }
.chatbot-form {
  display: flex;
  gap: 0.4rem;
  padding: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.chatbot-form input {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.25);
  color: var(--text);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font-family: inherit;
}
.chatbot-form button {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: #041018;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

/* Mobile nav open */
.nav-pills.open-mobile {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: #05070d;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 20;
}
.mobile-social {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.35rem;
}
.nav-pills.open-mobile .mobile-social {
  display: flex;
}
.nav-pills.open-mobile .mobile-social .social-btn {
  width: 100%;
  justify-content: center;
  padding: 0.8rem 1rem;
}

@media (max-width: 980px) {
  .logo-img { height: 72px; }
  .nav-pills, .nav-social { display: none; }
  .nav-pills.open-mobile { display: flex; }
  .nav-toggle { display: flex; }
  .about-grid, .cta-gamer-inner, .footer-grid, .about-page-grid { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: repeat(2, 1fr); }
  .about-visual { min-height: 280px; }
  .chatbot { left: 0.75rem; right: auto; width: min(320px, calc(100vw - 5.5rem)); }
  .whatsapp-float { bottom: 1rem; right: 1rem; }
  .carousel-btn { width: 38px; height: 38px; }
}

/* ===== Compatibilidad móvil / Android / todos los navegadores ===== */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 0;
}
img, video, iframe, svg {
  max-width: 100%;
  height: auto;
}
.slide img {
  height: 100%;
  max-width: 100%;
}
button, a, .pill, .service-tile, .social-btn, .chatbot-toggle {
  -webkit-tap-highlight-color: rgba(46, 229, 157, 0.25);
  touch-action: manipulation;
}
.hours-bar,
.header,
.whatsapp-float,
.chatbot {
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}
.hours-bar {
  padding-top: env(safe-area-inset-top, 0);
  height: auto;
  min-height: var(--hours-h);
  flex-wrap: wrap;
  padding-bottom: 0.25rem;
}
.header {
  top: calc(var(--hours-h) + env(safe-area-inset-top, 0px));
}
body {
  padding-top: calc(var(--hours-h) + var(--header-h) + env(safe-area-inset-top, 0px));
}
.whatsapp-float {
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  right: calc(1rem + env(safe-area-inset-right, 0px));
}
.chatbot {
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  left: calc(1rem + env(safe-area-inset-left, 0px));
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
}

@media (max-width: 980px) {
  :root {
    --header-h: 76px;
    --hours-h: 48px;
  }
  .container { width: min(1140px, 94vw); }
  .hours-label { font-size: 0.75rem; text-align: center; }
  .hours-status { font-size: 0.7rem; padding: 0.25rem 0.75rem; }
  .nav { gap: 0.5rem; min-height: var(--header-h); }
  .logo-img { height: 64px; }
  .nav-pills.open-mobile {
    display: flex !important;
    gap: 0.65rem;
  }
  .nav-pills.open-mobile .pill {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }
  .hero-carousel,
  .carousel-track {
    min-height: clamp(220px, 52vw, 420px);
  }
  .hero-content { padding: 1.75rem 4vw 2.25rem; text-align: left; }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero-sub, .hero-sub-2 { font-size: 0.95rem; }
  .hero-actions { justify-content: flex-start; }
  .btn { width: 100%; max-width: 320px; }
  .section { padding: 2.75rem 0; }
  .about-gamer { width: 100%; }
  .about-gamer-2 {
    position: relative;
    right: auto;
    bottom: auto;
    width: 70%;
    margin-top: -2rem;
    margin-left: auto;
    transform: rotate(2deg);
  }
  .brands-track img { height: 40px; }
  .cta-gamer-imgs { grid-template-columns: 1fr 1fr; }
  .payments-grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .payments-grid img { height: 88px; }
  .footer-grid { gap: 1.5rem; }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .service-tile h3 { font-size: 0.72rem; }
  .service-tile .wa-hint { font-size: 0.65rem; }
  .page-hero { padding: 1.5rem 0 0.5rem; }
  .page-hero h1 { font-size: clamp(1.45rem, 6vw, 2rem); }
  .chatbot {
    left: 0.65rem;
    right: auto;
    width: min(300px, calc(100vw - 5.2rem));
    bottom: calc(4.6rem + env(safe-area-inset-bottom, 0px));
  }
  .chatbot-toggle { font-size: 0.82rem; padding: 0.65rem 0.9rem; }
  .chatbot-panel { max-height: min(58vh, 420px); }
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }
  .legal-page { padding: 1.5rem 0 3rem; }
}

@media (max-width: 480px) {
  :root { --header-h: 68px; }
  .logo-img { height: 56px; }
  .hours-bar {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.35rem 0.5rem;
  }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .payments-grid { grid-template-columns: 1fr; }
  .payments-grid img { height: 100px; }
  .carousel-btn.prev { left: 0.4rem; }
  .carousel-btn.next { right: 0.4rem; }
  .social-btn span { display: inline; }
}

@supports not (height: 100dvh) {
  .hero-carousel,
  .carousel-track {
    min-height: 280px;
  }
}
