/* ============================================================
   GamzyHost — mejoras.css
   Sistema de diseño: var(--bg) #1d1a15 | var(--surface) #25221d
   var(--card) #2b2720 | var(--primary) #f7a01e | var(--muted) #afa89d
   Fuentes: 'Inter', 'Archivo Black'
   ============================================================ */

/* ── BANNER DE COOKIES RGPD ─────────────────────────────── */
#gh-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--card, #2b2720);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted, #afa89d);
  transform: translateY(0);
  transition: transform .4s ease;
}
#gh-cookie-banner.gh-hidden { transform: translateY(110%); }
#gh-cookie-banner p { flex: 1; margin: 0; min-width: 240px; line-height: 1.5; }
#gh-cookie-banner a { color: var(--primary, #f7a01e); text-decoration: underline; }
.gh-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

.gh-cookie-accept {
  background: var(--primary, #f7a01e);
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.gh-cookie-accept:hover { background: var(--primary-light, #ffc977); }

.gh-cookie-reject {
  background: transparent;
  color: var(--muted, #afa89d);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  padding: 9px 18px;
  font-size: 13px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.gh-cookie-reject:hover { border-color: rgba(255,255,255,.4); color: #fff; }

/* ── WIDGET ESTADO DEL SISTEMA ──────────────────────────── */
#gh-status-widget {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,160,30,.08);
  border: 1px solid rgba(247,160,30,.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #10b981;
  cursor: default;
  user-select: none;
}
#gh-status-widget.status-degraded { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.25); color: #f59e0b; }
#gh-status-widget.status-down     { background: rgba(239,68,68,.08);  border-color: rgba(239,68,68,.25);  color: #ef4444; }

.gh-status-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; position: relative; flex-shrink: 0;
}
.gh-status-pulse::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: currentColor; opacity: .35; animation: gh-pulse 2s ease-out infinite;
}
@keyframes gh-pulse {
  0%  { transform: scale(1); opacity: .35; }
  70% { transform: scale(2); opacity: 0; }
  100%{ transform: scale(1); opacity: 0; }
}

/* ── CALCULADORA DE PRECIO ──────────────────────────────── */
.gh-calc-section {
  background-color: var(--surface, #25221d);
  padding: 6rem 1.5rem;
  color: white;
  border-top: 1px solid rgba(255,255,255,.05);
  font-family: 'Inter', sans-serif;
}

.gh-calc-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* Header igual que .pricing-header-center */
.gh-calc-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gh-calc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary, #f7a01e);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gh-calc-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 .75rem;
}

.gh-calc-subtitle {
  color: var(--muted, #afa89d);
  font-size: 1rem;
  margin: 0;
}

/* Tarjeta principal — igual que .price-card-clean */
.gh-calc-card {
  background: var(--card, #2b2720);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
}

/* Fila RAM + selector */
.gh-calc-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .gh-calc-controls { grid-template-columns: 1fr; }
}

.gh-calc-control-group { display: flex; flex-direction: column; gap: 10px; }

.gh-calc-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted, #afa89d);
}

/* Slider — usa el dorado del tema */
.gh-calc-slider-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(29,26,21,.6);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 10px 14px;
}

.gh-calc-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.12);
  outline: none;
  cursor: pointer;
}
.gh-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary, #f7a01e);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(247,160,30,.2);
  transition: box-shadow .2s;
}
.gh-calc-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 6px rgba(247,160,30,.25);
}
.gh-calc-slider::-moz-range-thumb {
  width: 18px; height: 18px;
  border: none; border-radius: 50%;
  background: var(--primary, #f7a01e);
  cursor: pointer;
}

.gh-calc-ram-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary, #f7a01e);
  min-width: 48px;
  text-align: right;
  white-space: nowrap;
}

/* Select juego */
.gh-calc-select {
  width: 100%;
  background: rgba(29,26,21,.6);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23afa89d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  transition: border-color .2s;
}
.gh-calc-select:hover { border-color: rgba(255,255,255,.2); }
.gh-calc-select:focus { border-color: var(--primary, #f7a01e); }
.gh-calc-select option { background: var(--card, #2b2720); }

/* Separador y resultado */
.gh-calc-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin: 0 0 1.75rem;
}

.gh-calc-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gh-calc-price-block { display: flex; flex-direction: column; gap: 4px; }

.gh-calc-price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted, #afa89d);
}

.gh-calc-price-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--primary, #f7a01e);
  line-height: 1;
}

.gh-calc-price-period {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* CTA — igual que .btn-clean-solid */
.gh-calc-cta {
  display: inline-block;
  background: var(--primary, #f7a01e);
  color: #000 !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255,189,89,.3);
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.gh-calc-cta:hover {
  background: var(--primary-light, #ffc977);
  transform: translateY(-2px);
}

.gh-calc-note {
  font-size: 12px;
  color: rgba(255,255,255,.25);
  margin-top: 1.25rem;
  text-align: center;
}

/* ── TABLA COMPARATIVA ──────────────────────────────────── */
.gh-compare-section {
  background-color: var(--bg, #1d1a15);
  padding: 6rem 1.5rem;
  color: white;
  border-top: 1px solid rgba(255,255,255,.05);
  font-family: 'Inter', sans-serif;
}

.gh-compare-inner { max-width: 960px; margin: 0 auto; }

.gh-compare-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gh-compare-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary, #f7a01e);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gh-compare-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 .75rem;
}

.gh-compare-sub {
  color: var(--muted, #afa89d);
  font-size: 1rem;
  margin: 0;
}

.gh-compare-table-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}

.gh-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.gh-compare-table thead tr {
  background: var(--card, #2b2720);
}

.gh-compare-table th {
  padding: 16px 14px;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  color: var(--muted, #afa89d);
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.gh-compare-table th:first-child { text-align: left; padding-left: 20px; }

/* Columna GamzyHost destacada en dorado */
.gh-compare-table th.gh-col-us {
  background: rgba(247,160,30,.12);
  color: var(--primary, #f7a01e);
  border-left: 1px solid rgba(247,160,30,.2);
  border-right: 1px solid rgba(247,160,30,.2);
}

.gh-compare-table tbody tr {
  background: rgba(29,26,21,.5);
  transition: background .15s;
}
.gh-compare-table tbody tr:hover { background: rgba(43,39,32,.9); }
.gh-compare-table tbody tr:last-child td { border-bottom: none; }

.gh-compare-table td {
  padding: 13px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: var(--muted, #afa89d);
}

.gh-compare-table td.gh-col-us {
  background: rgba(247,160,30,.05);
  font-weight: 700;
  color: #fff;
  border-left: 1px solid rgba(247,160,30,.15);
  border-right: 1px solid rgba(247,160,30,.15);
}

.gh-compare-table td.gh-feature-name {
  text-align: left;
  padding-left: 20px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}

.gh-check  { color: #10b981; font-size: 15px; }
.gh-cross  { color: rgba(255,255,255,.2); font-size: 15px; }
.gh-partial{ color: var(--primary, #f7a01e); font-size: 12px; font-weight: 600; }

.gh-compare-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* ── PÁGINAS LEGALES ────────────────────────────────────── */
.gh-legal-page {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 24px 80px;
  color: var(--muted, #afa89d);
  font-size: 15px;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
}
.gh-legal-page h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gh-legal-page h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 10px;
}
.gh-legal-page .gh-legal-date {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding-bottom: 1.25rem;
}
.gh-legal-page a { color: var(--primary, #f7a01e); }

/* ── FAQ TABS + ACORDEÓN ───────────────────────────────── */
.gh-faq-section {
  background-color: var(--bg, #1d1a15);
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.gh-faq-inner { max-width: 820px; margin: 0 auto; }

.gh-faq-header { text-align: center; margin-bottom: 2.5rem; }

.gh-faq-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: #fff;
  text-transform: uppercase;
  margin: .5rem 0 .75rem;
}
.gh-faq-subtitle { color: var(--muted, #afa89d); font-size: .95rem; margin: 0; }
.gh-faq-subtitle a { color: var(--primary, #f7a01e); text-decoration: none; }
.gh-faq-subtitle a:hover { text-decoration: underline; }

/* ── Tabs ── */
.gh-faq-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  background: var(--card, #2b2720);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 5px;
}
.gh-faq-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 7px;
  color: var(--muted, #afa89d);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 10px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.gh-faq-tab:hover { color: #fff; }
.gh-faq-tab.active { background: var(--primary, #f7a01e); color: #000; }

/* ── Paneles ── */
.gh-faq-panel { display: none; flex-direction: column; gap: .55rem; }
.gh-faq-panel.gh-faq-panel-active { display: flex; }

/* ── Item ── */
.gh-faq-item {
  background: var(--card, #2b2720);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.gh-faq-item:hover { border-color: rgba(247,160,30,.25); }
.gh-faq-item.gh-faq-open {
  border-color: rgba(247,160,30,.35);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  border-left: 3px solid var(--primary, #f7a01e);
}

/* ── Pregunta ── */
.gh-faq-question {
  width: 100%; background: none; border: none;
  padding: 1.15rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; text-align: left;
  color: #fff;
  font-family: 'Inter', sans-serif; font-size: .93rem; font-weight: 600; line-height: 1.4;
}
.gh-faq-question:hover { color: var(--primary, #f7a01e); }
.gh-faq-item.gh-faq-open .gh-faq-question { color: var(--primary, #f7a01e); }

.gh-faq-icon {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(247,160,30,.1); color: var(--primary, #f7a01e);
  transition: transform .3s ease, background .2s;
}
.gh-faq-item.gh-faq-open .gh-faq-icon { transform: rotate(180deg); background: rgba(247,160,30,.2); }

/* ── Respuesta animada ── */
.gh-faq-answer { height: 0; overflow: hidden; transition: height .3s cubic-bezier(.4,0,.2,1); }
.gh-faq-answer-inner {
  padding: 0 1.4rem 1.25rem;
  color: var(--muted, #afa89d); font-size: .88rem; line-height: 1.7;
}
.gh-faq-answer-inner p { margin: 0 0 .5rem; }
.gh-faq-answer-inner p:last-child { margin: 0; }
.gh-faq-answer-inner ul { margin: .4rem 0 0; padding-left: 1.1rem; display: flex; flex-direction: column; gap: .25rem; }
.gh-faq-answer-inner strong { color: #fff; font-weight: 600; }
.gh-faq-answer-inner a { color: var(--primary, #f7a01e); text-decoration: none; }
.gh-faq-answer-inner a:hover { text-decoration: underline; }

/* ── CTA ── */
.gh-faq-cta {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2.25rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.06); flex-wrap: wrap;
}
.gh-faq-cta p { margin: 0; color: var(--muted, #afa89d); font-size: .93rem; flex: 1; min-width: 160px; }
.gh-faq-discord-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: #5865F2; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px;
  padding: 11px 22px; border-radius: 8px; text-decoration: none;
  transition: background .2s, transform .15s; white-space: nowrap;
}
.gh-faq-discord-btn:hover { background: #4752c4; transform: translateY(-1px); }

@media (max-width: 640px) {
  .gh-faq-section { padding: 4rem 1rem; }
  .gh-faq-tab { font-size: 12px; padding: 8px 6px; }
  .gh-faq-question { font-size: .86rem; padding: 1rem 1.1rem; }
  .gh-faq-answer-inner { padding: 0 1.1rem 1.1rem; }
  .gh-faq-cta { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════
   TRUST BAR — marquee animado
══════════════════════════════════════════════════════ */
.gh-trust-bar {
  width: 100%; overflow: hidden;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 14px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.gh-trust-track {
  display: flex; align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: gh-marquee 40s linear infinite;
}
.gh-trust-bar:hover .gh-trust-track { animation-play-state: paused; }
.gh-trust-item {
  display: inline-flex; align-items: center;
  gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  padding: 0 28px;
  text-transform: uppercase;
  line-height: 1;
  transition: color .2s;
  flex-shrink: 0;
}
.gh-trust-item .gh-trust-icon {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(255,255,255,.06);
  border-radius: 7px;
  color: rgba(255,255,255,.55);
}
.gh-trust-item .gh-trust-icon svg { display: block; }
.gh-trust-item:hover { color: rgba(255,255,255,.85); }
.gh-trust-item:hover .gh-trust-icon { background: rgba(255,255,255,.11); color: #fff; }
.gh-trust-sep {
  display: inline-block; flex-shrink: 0;
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  margin: 0;
}
@keyframes gh-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS — 3 pasos
══════════════════════════════════════════════════════ */
.gh-steps-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, transparent 100%);
}
.gh-steps-inner { max-width: 960px; margin: 0 auto; }
.gh-steps-header { text-align: center; margin-bottom: 3.5rem; }
.gh-steps-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800; color: #fff; margin: .5rem 0 .75rem;
  letter-spacing: -.02em;
}
.gh-steps-sub { color: rgba(255,255,255,.45); font-size: .97rem; margin: 0; }

.gh-steps-grid {
  display: flex; align-items: stretch; gap: 0;
  flex-wrap: wrap; justify-content: center;
}
.gh-step-card {
  flex: 1; min-width: 220px; max-width: 280px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 2rem 1.75rem;
  position: relative; text-align: center;
  transition: transform .25s, border-color .25s, background .25s;
}
.gh-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
}
.gh-step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.35);
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  padding: 3px 12px; border-radius: 999px;
}
.gh-step-icon {
  width: 60px; height: 60px; margin: .75rem auto 1.25rem;
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
}
.gh-step-title {
  font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0 0 .6rem;
}
.gh-step-desc {
  font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.6; margin: 0;
}
.gh-step-connector {
  flex-shrink: 0; width: 48px;
  display: flex; align-items: center; justify-content: center;
}
.gh-step-connector span {
  display: block; width: 100%; height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,.1), rgba(255,255,255,.25), rgba(255,255,255,.1));
}
@media (max-width: 700px) {
  .gh-steps-grid { flex-direction: column; align-items: center; gap: 1.5rem; }
  .gh-step-connector { width: 1px; height: 32px; }
  .gh-step-connector span { width: 1px; height: 100%; background: linear-gradient(to bottom, rgba(255,255,255,.1), rgba(255,255,255,.25), rgba(255,255,255,.1)); }
  .gh-step-card { max-width: 100%; width: 100%; }
}

/* ══════════════════════════════════════════════════════
   BADGE "NUEVO" — nodo Ryzen
══════════════════════════════════════════════════════ */
.gh-new-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: #fff;
  font-size: 9.5px; font-weight: 800; letter-spacing: .1em;
  padding: 3px 9px;
  border-radius: 999px;
  vertical-align: middle;
  margin: 0 6px;
  position: relative;
  line-height: 1.4;
  box-shadow: 0 0 10px rgba(249,115,22,.4);
  animation: gh-badge-glow 2.5s ease-in-out infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes gh-badge-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(249,115,22,.35); }
  50%       { box-shadow: 0 0 18px rgba(249,115,22,.7); }
}

/* ══════════════════════════════════════════════════════
   ANNOUNCEMENT BAR — estilo efferd
══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
   ANNOUNCEMENT BAR — estilo efferd
══════════════════════════════════════════════════════ */
#gh-announce-bar {
  width: 100%;
  background: #0d0d10;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 9px 48px 9px 16px;  /* right padding leaves room for close btn */
  position: relative;
  z-index: 200;
}
.gh-announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}
.gh-announce-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(139,92,246,.15);
  border: 1px solid rgba(139,92,246,.35);
  color: #c4b5fd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
}
.gh-announce-text {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
  line-height: 1;
}
.gh-announce-text strong {
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.gh-announce-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #a78bfa;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s, opacity .2s;
  flex-shrink: 0;
}
.gh-announce-link svg { width: 11px; height: 11px; flex-shrink: 0; transition: transform .2s; }
.gh-announce-link:hover { color: #c4b5fd; }
.gh-announce-link:hover svg { transform: translateX(3px); }
.gh-announce-close {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.25);
  padding: 5px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  line-height: 1;
  transition: color .2s, background .2s;
}
.gh-announce-close:hover {
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.07);
}
/* On small screens, collapse text and badge */
@media (max-width: 600px) {
  .gh-announce-text { white-space: normal; font-size: 12px; }
  #gh-announce-bar { padding-right: 40px; }
}
@media (max-width: 420px) {
  .gh-announce-badge { display: none; }
}

/* ══════════════════════════════════════════════════════
   GAME CARDS — Elige tu juego
══════════════════════════════════════════════════════ */
.gh-games-section { padding: 5rem 1.5rem;background-color: #25221d;  }
.gh-games-inner { max-width: 1080px; margin: 0 auto; }
.gh-games-header { text-align: center; margin-bottom: 3rem; }
.gh-games-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800; color: #fff;
  margin: .5rem 0 .75rem; letter-spacing: -.02em;
}
.gh-games-sub { color: rgba(255,255,255,.45); font-size: .95rem; margin: 0; }

.gh-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Card base */
.gh-game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  height: 300px;
  transition: transform .3s ease, border-color .3s, box-shadow .3s;
  background: #111;
}
.gh-game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
}

/* Background image with zoom */
.gh-game-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform .5s ease;
}
.gh-game-card:hover .gh-game-bg { transform: scale(1.07); }

/* Dark overlay — heavy enough to read text */
.gh-game-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.1)  0%,
    rgba(0,0,0,.15) 30%,
    rgba(0,0,0,.65) 65%,
    rgba(0,0,0,.92) 100%
  );
}

/* "Próximamente" badge */
.gh-game-soon-badge {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,.75);
  font-size: 9.5px; font-weight: 700; letter-spacing: .1em;
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase;
}

/* Content sits at bottom */
.gh-game-content {
  position: relative; z-index: 2;
  padding: 16px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gh-game-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.gh-game-title-wrap { flex: 1; }
.gh-game-icon { font-size: 1.4rem; line-height: 1; margin-bottom: 4px; }
.gh-game-name {
  font-size: 1.1rem; font-weight: 800; color: #fff;
  margin: 0; line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
}
.gh-game-desc {
  font-size: .75rem; color: rgba(255,255,255,.55);
  margin: 4px 0 0; line-height: 1.45;
}
.gh-game-price {
  text-align: right;
  flex-shrink: 0;
}
.gh-game-from {
  display: block;
  font-size: 9px; font-weight: 600;
  color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 1px;
}
.gh-game-amount {
  font-size: 1.15rem; font-weight: 800; color: #fff;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
}
.gh-game-amount em {
  font-style: normal;
  font-size: .65rem; font-weight: 500;
  color: rgba(255,255,255,.5);
}

/* CTA row */
.gh-game-cta {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.4);
  transition: color .2s, border-color .2s;
}
.gh-game-card:hover .gh-game-cta {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.15);
}
.gh-game-cta svg { width: 13px; height: 13px; flex-shrink: 0; transition: transform .2s; }
.gh-game-card:hover .gh-game-cta svg { transform: translateX(3px); }

.gh-game-card--soon .gh-game-cta { color: rgba(255,255,255,.3); }

/* Responsive */
@media (max-width: 900px) {
  .gh-games-grid { grid-template-columns: repeat(2, 1fr); }
  .gh-game-card { height: 260px; }
}
@media (max-width: 500px) {
  .gh-games-grid { grid-template-columns: 1fr; gap: 12px; }
  .gh-game-card { height: 220px; }
}
