@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Rajdhani:wght@400;500;600;700&family=Cinzel:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #050608;
  --bg-card: rgba(17, 20, 29, 0.4);
  --bg-card-hover: rgba(25, 30, 45, 0.6);
  --primary: #2563eb; /* Electric Blue */
  --primary-purple: #6366f1; /* Indigo/Purple */
  --primary-hover: #1e40af;
  --secondary: #3b82f6;
  --accent: #ff9d00;
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(7, 9, 14, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glow-primary: rgba(37, 99, 235, 0.3);
  --glow-purple: rgba(99, 102, 241, 0.3);
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --gold-gradient: linear-gradient(90deg, #FFD700, #FFC300, #FFB000);
  --nav-gold: #d4a853;
  --nav-gold-bright: #f0d078;
  --nav-gold-glow: rgba(212, 168, 83, 0.4);
  --nav-gold-glow-strong: rgba(212, 168, 83, 0.7);
  --nav-bg-transparent: linear-gradient(to bottom, rgba(12, 15, 20, 0.2), rgba(5, 6, 8, 0.1));
  --nav-bg-solid: linear-gradient(to bottom, rgba(15, 18, 25, 0.96), rgba(8, 10, 15, 0.98));
  --nav-edge-glow: rgba(212, 168, 83, 0.15);
  --font-nav: 'Cinzel', 'Rajdhani', serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(99, 102, 241, 0.05) 0%, transparent 40%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =============================================
   NAVBAR — Cinematic AAA Game Interface
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0.9rem 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Transparent state with Noise Texture */
  background: 
    linear-gradient(rgba(12, 15, 20, 0.6), rgba(5, 6, 8, 0.4)),
    url('https://grainy-gradients.vercel.app/noise.svg');
  background-blend-mode: overlay;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  border-bottom: 1px solid rgba(212, 168, 83, 0.12);
  box-shadow: 
    0 10px 30px -10px rgba(0, 0, 0, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

/* Diagonal reflection/shine (Shimmer) */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg, 
    transparent 40%, 
    rgba(255, 255, 255, 0.03) 45%, 
    rgba(255, 255, 255, 0.07) 50%, 
    rgba(255, 255, 255, 0.03) 55%, 
    transparent 60%
  );
  transition: none;
  pointer-events: none;
  z-index: 1;
  animation: navShine 8s infinite linear;
}

@keyframes navShine {
  from { transform: translateX(-50%); }
  to { transform: translateX(50%); }
}

/* Scrolled / Solid state - Premium Depth */
.navbar.scrolled {
  background: 
    linear-gradient(var(--nav-bg-solid), var(--nav-bg-solid)),
    url('https://grainy-gradients.vercel.app/noise.svg');
  background-blend-mode: overlay;
  padding: 0.65rem 0;
  border-bottom-color: rgba(212, 168, 83, 0.25);
  box-shadow: 
    0 20px 50px -10px rgba(0, 0, 0, 0.9),
    0 1px 0 rgba(212, 168, 83, 0.15) inset;
}

.navbar.scrolled::after {
  opacity: 1;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* --- LOGO --- */
.logo {
  font-family: var(--font-nav);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}

.logo img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--nav-gold);
  box-shadow:
    0 0 15px rgba(212, 168, 83, 0.3),
    0 0 5px rgba(212, 168, 83, 0.2) inset;
  filter: drop-shadow(0 0 8px rgba(212, 168, 83, 0.2));
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo img:hover {
  transform: scale(1.1) rotate(-3deg);
  box-shadow:
    0 0 25px var(--nav-gold-glow-strong),
    0 0 10px rgba(212, 168, 83, 0.4) inset;
  border-color: var(--nav-gold-bright);
  filter: drop-shadow(0 0 12px var(--nav-gold-glow));
}

.logo span {
  color: var(--nav-gold);
  text-shadow: 0 0 12px var(--nav-gold-glow);
}

/* --- NAV LINKS (Center) --- */
.nav-links {
  display: flex;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2.2px;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--nav-gold-bright);
  text-shadow: 0 0 15px var(--nav-gold-glow-strong), 0 0 30px rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-links a.active {
  color: var(--nav-gold-bright);
  text-shadow: 0 0 12px var(--nav-gold-glow-strong);
}

/* Animated underline — gold glow sweep */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--nav-gold-bright), transparent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px var(--nav-gold-glow-strong);
  border-radius: 4px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

/* Hover dot indicator */
.nav-links a::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 3px;
  height: 3px;
  background: var(--nav-gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--nav-gold-glow);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.nav-links a:hover::before {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

/* --- NAV AUTH (Right) --- */
.nav-auth {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  position: relative;
  z-index: 1001;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 168, 83, 0.2);
  color: #e2e8f0;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.lang-btn:hover {
  border-color: var(--nav-gold);
  background: rgba(212, 168, 83, 0.05);
  box-shadow: 0 0 15px rgba(212, 168, 83, 0.15);
  color: white;
}

.lang-btn i:first-child {
  color: var(--nav-gold);
  font-size: 0.8rem;
  opacity: 0.8;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(8, 10, 16, 0.98);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 4px;
  padding: 0.4rem;
  width: 170px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

.lang-switcher.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.7rem 1rem;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-family: var(--font-nav);
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-option:hover {
  background: rgba(212, 168, 83, 0.08);
  color: var(--nav-gold-bright);
}

.lang-option.active {
  color: var(--nav-gold);
  background: rgba(212, 168, 83, 0.1);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-login {
  background: transparent;
  color: var(--text-main);
}

.btn-login:hover {
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 15px var(--glow-primary);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--glow-primary);
  border-color: var(--secondary);
}

.btn-discord {
  background: rgba(88, 101, 242, 0.08);
  border: 1px solid rgba(88, 101, 242, 0.4);
  color: #8b93f7;
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.1);
  transition: all 0.3s ease;
}

.btn-discord:hover {
  background: rgba(88, 101, 242, 0.2);
  border-color: #5865F2;
  color: white;
  box-shadow: 
    0 0 25px rgba(88, 101, 242, 0.4),
    0 0 10px rgba(88, 101, 242, 0.2) inset;
  transform: translateY(-1px);
}

/* HERO SECTION */
.hero-cinematic {
  position: relative;
  width: 100%;
  height: 100vh; /* Full height for more immersion */
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #050608;
  background-image: url('images/hero_fantasy.png');
  background-size: cover;
  background-position: center bottom; /* Focus more on the ground/characters */
  background-repeat: no-repeat;
  /* Enhance the image itself */
  filter: brightness(0.85) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Multi-stop cinematic gradient: 
     - Dark at top for navbar
     - Clearer in middle for visual impact
     - Darker at bottom for transition to content
  */
  background: linear-gradient(
    to bottom, 
    rgba(5, 6, 8, 0.9) 0%, 
    rgba(5, 6, 8, 0.2) 20%, 
    rgba(5, 6, 8, 0) 50%, 
    rgba(5, 6, 8, 0.4) 80%, 
    rgba(5, 6, 8, 1) 100%
  );
  z-index: 2;
}

/* Subtle focus effect / Peripheral dimming */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%, 
    transparent 0%, 
    rgba(0, 0, 0, 0.2) 60%, 
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 1.5rem;
  margin-top: 5rem; /* Space for navbar */
}

.hero-text-wrapper {
  max-width: 700px;
  text-align: left;
  animation: heroSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: 7.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 12px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.2));
  animation: titleGlow 5s ease-in-out infinite alternate;
  line-height: 1;
}

@keyframes titleGlow {
  from { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.15)); text-shadow: 0 0 5px rgba(255, 215, 0, 0.1); }
  to { filter: drop-shadow(0 0 35px rgba(255, 215, 0, 0.45)); text-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 3rem;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border-left: 3px solid var(--nav-gold);
  padding-left: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Premium Hero Buttons */
.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.stats-section {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  padding-bottom: 4rem;
}

[data-parallax] {
  will-change: transform;
}

@media (max-width: 768px) {
  .hero-cinematic { height: 70vh; min-height: 400px; }
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .stats-section { margin-top: -30px; }
}

.high-demand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #ff7a18, #ff3c00);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 60, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--primary);
  box-shadow: 0 10px 30px var(--glow-primary);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary);
  text-shadow: 0 0 15px var(--glow-primary);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

/* PAYMENT METHODS SECTION */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
}

.payment-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px var(--glow-primary);
}

.payment-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.payment-card h3 svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.payment-methods-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 1rem;
  background: rgba(17, 20, 29, 0.5);
  border-radius: 8px;
  transition: var(--transition);
}

.payment-method:hover {
  background: rgba(37, 99, 235, 0.15);
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--glow-primary);
  border-color: var(--primary);
}

.payment-method svg,
.payment-method img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: contain;
}

.payment-method span {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-main);
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
}

/* PAGE SECTION */
.page-section {
  padding: 5rem 0;
}

/* CARDS */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px var(--glow-primary);
}

.game-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1e2b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center center;
  opacity: 0.9;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s, transform 0.8s ease;
  z-index: 1;
}

/* Specific fix for Throne and Liberty framing if needed */
.game-card-img img[alt*="Throne and Liberty"] {
  object-fit: cover;
  object-position: top center;
}

.game-card:hover .game-card-img img {
  filter: brightness(1.1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
  opacity: 1;
  transform: scale(1.05);
}

.game-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--bg-card), transparent);
}

.game-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.game-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.game-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* PRICE SECTION TITLE */
.price-section-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--nav-gold);
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-shadow: 0 0 8px var(--nav-gold-glow);
}

/* PRICE LIST */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  padding: 0.2rem 0;
}

.price-label {
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 58%;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.price-value {
  font-family: 'Courier New', monospace;
  color: #e8c547;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.price-unit {
  color: var(--text-muted);
  font-weight: 400;
}

.price-skeleton {
  height: 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  animation: pulse 1.5s infinite;
}

.price-error {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.wa-contact {
  margin-top: auto;
  padding-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

/* Selects row — side by side on desktop */
.wa-selects-row {
  display: flex;
  gap: 0.5rem;
}

.wa-selects-row .wa-select-field {
  flex: 1;
  min-width: 0;
}

.wa-select-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.wa-select-label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding-left: 2px;
}

.wa-amount-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.wa-amount-input::placeholder,
.wa-server-input::placeholder {
  color: var(--text-muted);
}

.wa-amount-input:focus,
.wa-server-input:focus {
  border-color: var(--primary);
}

.wa-server-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.wa-server-select,
.wa-faction-select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 0.82rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
  cursor: pointer;
  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 fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.wa-server-select option,
.wa-faction-select option {
  background: #1a1e2b;
  color: var(--text-primary);
}

.wa-server-select:focus,
.wa-faction-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.wa-server-select:hover,
.wa-faction-select:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
  .wa-selects-row {
    flex-direction: column;
  }
}

.input-error {
  border-color: #e53e3e !important;
  animation: shake 0.25s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-4px); }
  75%       { transform: translateX(4px); }
}

.price-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #25d366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.price-wa-btn:hover {
  background: #1ebe5d;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* FLOATING WIDGETS COLUMN (RIGHT) */
.floating-widgets {
  position: fixed;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1100;
  padding: 0;
  pointer-events: none; /* Allow clicks through empty space */
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  pointer-events: auto;
  opacity: 0;
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.float-btn:nth-child(1) { animation-delay: 0.1s; }
.float-btn:nth-child(2) { animation-delay: 0.2s; }
.float-btn:nth-child(3) { animation-delay: 0.3s; }
.float-btn:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Tooltips */
.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 15px);
  background: rgba(10, 12, 18, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.float-btn:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.float-btn:hover {
  transform: scale(1.15) rotate(8deg);
  filter: brightness(1.2);
}

.btn-whatsapp {
  background: #25D366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.btn-facebook {
  background: #1877F2;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.4);
}

.btn-facebook:hover {
  box-shadow: 0 0 30px rgba(24, 119, 242, 0.6);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 0 20px rgba(220, 39, 67, 0.4);
}

.btn-instagram:hover {
  box-shadow: 0 0 30px rgba(220, 39, 67, 0.6);
}

.btn-discord-float {
  background: #5865F2;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, discordBreath 3s infinite ease-in-out;
}

@keyframes discordBreath {
  0% { box-shadow: 0 0 15px rgba(88, 101, 242, 0.4); }
  50% { box-shadow: 0 0 30px rgba(88, 101, 242, 0.8); }
  100% { box-shadow: 0 0 15px rgba(88, 101, 242, 0.4); }
}

.social-icon {
  font-size: 1.6rem;
  transition: transform 0.2s ease;
}


/* CHAT WIDGET INTERNAL */
.chat-window {
  position: fixed;
  bottom: 6rem;
  right: 6rem;
  width: 350px;
  height: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-header {
  padding: 1rem;
  background: rgba(37, 99, 235, 0.1);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

.chat-status {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

.chat-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.chat-close:hover {
  color: white;
}

.chat-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  max-width: 80%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

.chat-message.bot {
  align-self: flex-start;
  background: #1a1e2b;
  border-bottom-left-radius: 2px;
}

.chat-message.user {
  align-self: flex-end;
  background: var(--primary);
  color: white;
  border-bottom-right-radius: 2px;
}

.chat-input {
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 0.5rem;
}

.chat-input input {
  flex: 1;
  background: #1a1e2b;
  border: 1px solid var(--border-color);
  padding: 0.8rem 1rem;
  border-radius: 6px;
  color: white;
  outline: none;
  font-family: var(--font-body);
}

.chat-input input:focus {
  border-color: var(--primary);
}

.chat-input button {
  background: var(--primary);
  border: none;
  color: white;
  width: 45px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.chat-input button:hover {
  background: var(--primary-hover);
}

/* FOOTER */
.footer {
  background: #050608;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FORMULARIOS (LOGIN/REGISTRO) */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #1a1e2b;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: white;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--primary);
  font-weight: 500;
}

/* SCROLL FADE ANIMATIONS */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  visibility: hidden;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, visibility;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* CAROUSEL SLIDER */
.carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 2.5 / 1;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  visibility: hidden;
  background: var(--bg-card);
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.carousel-img-pane {
  flex: 1;
  position: relative;
  background: radial-gradient(circle, var(--bg-card-hover), var(--bg-dark));
  overflow: hidden;
}

.carousel-img-pane img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active .carousel-img-pane img {
  opacity: 1;
}

.carousel-content-pane {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background: rgba(11, 14, 23, 0.95);
}

.carousel-content-pane h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #fff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.carousel-content-pane p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.carousel-content-pane .badge {
  align-self: flex-start;
  margin-bottom: 1rem;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* MOBILE HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  background: none;
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 6px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hamburger:hover {
  border-color: var(--nav-gold-glow);
  box-shadow: 0 0 10px rgba(212, 168, 83, 0.15);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.6), var(--nav-gold));
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--nav-gold); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--nav-gold); }

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* STAGGERED FADE-IN FOR GRIDS */
.games-grid .fade-in-section:nth-child(1) { transition-delay: 0s; }
.games-grid .fade-in-section:nth-child(2) { transition-delay: 0.1s; }
.games-grid .fade-in-section:nth-child(3) { transition-delay: 0.2s; }
.games-grid .fade-in-section:nth-child(4) { transition-delay: 0.3s; }
.games-grid .fade-in-section:nth-child(5) { transition-delay: 0.4s; }
.games-grid .fade-in-section:nth-child(6) { transition-delay: 0.5s; }

.payments-grid .fade-in-section:nth-child(1) { transition-delay: 0s; }
.payments-grid .fade-in-section:nth-child(2) { transition-delay: 0.1s; }
.payments-grid .fade-in-section:nth-child(3) { transition-delay: 0.15s; }
.payments-grid .fade-in-section:nth-child(4) { transition-delay: 0.2s; }
.payments-grid .fade-in-section:nth-child(5) { transition-delay: 0.25s; }
.payments-grid .fade-in-section:nth-child(6) { transition-delay: 0.3s; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 6, 8, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 1050;
    transform: none;
  }

  /* Gold vertical accent line in mobile menu */
  .nav-links::before {
    content: '';
    position: absolute;
    top: 30%;
    bottom: 30%;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent, var(--nav-gold-glow), transparent);
    z-index: -1;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 3px;
  }

  .nav-links a::after {
    bottom: -4px;
  }

  .nav-auth { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .hero-title { font-size: 3rem !important; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .payments-grid { grid-template-columns: 1fr; }
  
  .chat-window {
    width: calc(100% - 4rem);
    height: 60vh;
    right: 2rem;
    bottom: 6rem;
  }
  
  .carousel-wrapper { min-height: 500px; }
  .carousel-track { height: 500px; }
  .carousel-slide { flex-direction: column; }
  .carousel-img-pane { height: 50%; flex: none; }
  .carousel-content-pane { flex: 1; padding: 2rem; text-align: center; align-items: center; }
  .carousel-content-pane .badge { align-self: center; }

  .floating-widgets {
    bottom: 1rem;
    right: 1rem;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--nav-gold), var(--nav-gold-bright), var(--nav-gold));
  z-index: 9999;
  box-shadow: 0 0 10px var(--nav-gold-glow);
  pointer-events: none;
}

/* =============================================
   FADE-IN VARIANTS
   ============================================= */
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-in-left.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-in-right.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.9);
  visibility: hidden;
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, transform;
}
.fade-in-scale.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* =============================================
   GAME CARD — corner gold accent
   ============================================= */
.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent var(--nav-gold) transparent transparent;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.game-card:hover::before {
  opacity: 0.55;
}

/* =============================================
   SECTION HEADER — Cinzel + gradient text
   ============================================= */
.section-header h2,
.section-header h1 {
  font-family: var(--font-nav);
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 20%, var(--nav-gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

/* =============================================
   FOOTER REDESIGN
   ============================================= */
.footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(5, 6, 8, 1), rgba(5, 6, 8, 1)),
    url('https://grainy-gradients.vercel.app/noise.svg');
  background-blend-mode: overlay;
  border-top: none;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nav-gold), transparent);
  opacity: 0.5;
}

.footer-col h4 {
  font-family: var(--font-nav);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--nav-gold);
  font-size: 0.8rem;
}

.footer-links a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: translateX(-101%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::after {
  transform: translateX(0);
}

/* =============================================
   PAGE HERO (internal pages)
   ============================================= */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(8, 10, 16, 0.6) 0%, rgba(5, 6, 8, 0.98) 100%),
    url('https://grainy-gradients.vercel.app/noise.svg');
  background-blend-mode: overlay;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212, 168, 83, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nav-gold), transparent);
  opacity: 0.4;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  animation: heroSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-hero-content h1 {
  font-family: var(--font-nav);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-main);
  border-left: 4px solid var(--nav-gold);
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.page-hero-content p {
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 2px;
  padding-left: calc(1.5rem + 4px);
}

/* =============================================
   REVIEW CARDS
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--nav-gold);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.35);
  box-shadow: 0 15px 40px rgba(212, 168, 83, 0.1), 0 0 0 1px rgba(212, 168, 83, 0.08);
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars i {
  color: var(--nav-gold);
  font-size: 0.85rem;
  filter: drop-shadow(0 0 3px var(--nav-gold-glow));
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.25);
}

.review-author-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 600;
}

.review-author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.reviews-grid .fade-in-section:nth-child(1) { transition-delay: 0s; }
.reviews-grid .fade-in-section:nth-child(2) { transition-delay: 0.1s; }
.reviews-grid .fade-in-section:nth-child(3) { transition-delay: 0.2s; }
.reviews-grid .fade-in-section:nth-child(4) { transition-delay: 0.3s; }
.reviews-grid .fade-in-section:nth-child(5) { transition-delay: 0.4s; }
.reviews-grid .fade-in-section:nth-child(6) { transition-delay: 0.5s; }

/* =============================================
   TIMELINE (sobre-mi)
   ============================================= */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 4rem auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--nav-gold), var(--nav-gold), transparent);
  transform: translateX(-50%);
  opacity: 0.35;
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 3rem);
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 3rem);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 1.25rem;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--nav-gold);
  box-shadow: 0 0 14px var(--nav-gold-glow), 0 0 4px var(--nav-gold-glow-strong);
  z-index: 1;
  border: 2px solid var(--bg-dark);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 230px;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.08);
  transform: translateY(-3px);
}

.timeline-year {
  font-family: var(--font-nav);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--nav-gold);
  text-shadow: 0 0 10px var(--nav-gold-glow);
  margin-bottom: 0.2rem;
}

.timeline-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

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

@media (max-width: 640px) {
  .timeline::before { left: 18px; transform: none; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 3.5rem;
    padding-right: 0;
  }
  .timeline-item::after { left: 11px; transform: none; }
  .timeline-content { max-width: 100%; }
}

/* =============================================
   ABOUT CONTENT (sobre-mi)
   ============================================= */
.about-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.about-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-purple), var(--nav-gold));
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
}

.about-content p + p {
  margin-top: 1.5rem;
}

.about-content strong {
  color: var(--nav-gold);
}

/* =============================================
   FLUID TYPOGRAPHY
   ============================================= */
.hero-title {
  font-size: clamp(2.5rem, 9vw, 7.5rem);
}

.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

.section-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

/* Count-up tabular nums */
[data-count-target],
[data-count-display] {
  font-variant-numeric: tabular-nums;
}

/* =============================================
   NAV DROPDOWN (Boosting)
   ============================================= */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger .fa-chevron-down {
  font-size: 0.55rem;
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.nav-dropdown-wrapper:hover .nav-dropdown-trigger .fa-chevron-down,
.nav-dropdown-wrapper.active .nav-dropdown-trigger .fa-chevron-down {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--nav-gold);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: rgba(8, 10, 16, 0.98);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(212, 168, 83, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}

/* Gold top accent line */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nav-gold), transparent);
  opacity: 0.5;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu,
.nav-dropdown-wrapper.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.85rem 1.1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.nav-dropdown-item:hover {
  background: rgba(212, 168, 83, 0.08);
}

.nav-dropdown-item i {
  font-size: 1.1rem;
  color: var(--nav-gold);
  opacity: 0.7;
  width: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.nav-dropdown-item:hover i {
  opacity: 1;
  text-shadow: 0 0 12px var(--nav-gold-glow);
}

.nav-dropdown-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dropdown-item strong {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-dropdown-item:hover strong {
  color: var(--nav-gold-bright);
}

.nav-dropdown-item span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* Divider between items */
.nav-dropdown-item + .nav-dropdown-item {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .nav-dropdown-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 90%;
    max-width: 320px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    border: none;
    transition: all 0.4s ease;
  }
  
  .nav-dropdown-wrapper.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    padding: 0.5rem;
    margin-top: 0.75rem;
    border: 1px solid rgba(212, 168, 83, 0.2);
    transform: none;
  }
}

/* =============================================
   BOOSTING PAGE — Service Cards
   ============================================= */

/* Category Section */
.boost-category {
  margin-bottom: 3.5rem;
}

.boost-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.boost-category-header i {
  font-size: 1.3rem;
  color: var(--nav-gold);
  text-shadow: 0 0 10px var(--nav-gold-glow);
}

.boost-category-header h2 {
  font-family: var(--font-nav);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-main);
  margin: 0;
}

/* Service Cards Grid */
.boost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .boost-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* Individual Service Card */
.boost-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.boost-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.boost-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.boost-card:hover .boost-card-image img {
  transform: scale(1.1);
}

.boost-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(5, 6, 8, 0.5));
  pointer-events: none;
}

.boost-card-content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

/* Top accent line */
.boost-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-purple));
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.boost-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(212, 168, 83, 0.08);
}

.boost-card:hover::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--nav-gold), var(--primary), var(--nav-gold));
}

/* Badge */
.boost-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}

.boost-badge.hot {
  background: linear-gradient(90deg, #ff6b35, #ff3c00);
  color: white;
  box-shadow: 0 2px 10px rgba(255, 60, 0, 0.25);
}

.boost-badge.popular {
  background: linear-gradient(90deg, #2563eb, #6366f1);
  color: white;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25);
}

.boost-badge.gift {
  background: linear-gradient(90deg, #059669, #10b981);
  color: white;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.25);
}

.boost-badge.new {
  background: linear-gradient(90deg, var(--nav-gold), #f59e0b);
  color: #1a1a2e;
  box-shadow: 0 2px 10px rgba(212, 168, 83, 0.25);
}

/* Card Title */
.boost-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Card Description (bullet points) */
.boost-card-features {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0.25rem 0;
  flex: 1;
}

.boost-card-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.boost-card-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--nav-gold);
  font-size: 0.6rem;
  top: 3px;
  opacity: 0.7;
}

/* Price Row */
.boost-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.boost-price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.boost-price-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nav-gold);
  text-shadow: 0 0 12px var(--nav-gold-glow);
  letter-spacing: 0.5px;
}

.boost-price-value .currency {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Contact button */
.boost-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: #25d366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.boost-card-cta:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Boosting Hero Variant */
.boost-page-hero {
  position: relative;
  height: 50vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.boost-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, rgba(5, 6, 8, 0.85) 0%, rgba(5, 6, 8, 0.6) 40%, rgba(5, 6, 8, 1) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212, 168, 83, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.boost-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nav-gold), transparent);
  opacity: 0.4;
  z-index: 2;
}

.boost-page-hero .container {
  position: relative;
  z-index: 3;
}

.boost-hero-content {
  animation: heroSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.boost-hero-content h1 {
  font-family: var(--font-nav);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-main);
  border-left: 4px solid var(--nav-gold);
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.boost-hero-content p {
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 2px;
  padding-left: calc(1.5rem + 4px);
  max-width: 600px;
}

/* Staggered card animation */
.boost-grid .fade-in-section:nth-child(1) { transition-delay: 0s; }
.boost-grid .fade-in-section:nth-child(2) { transition-delay: 0.08s; }
.boost-grid .fade-in-section:nth-child(3) { transition-delay: 0.16s; }
.boost-grid .fade-in-section:nth-child(4) { transition-delay: 0.24s; }
.boost-grid .fade-in-section:nth-child(5) { transition-delay: 0.32s; }
.boost-grid .fade-in-section:nth-child(6) { transition-delay: 0.4s; }

/* How it works section */
.boost-how-it-works {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.boost-how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--nav-gold), var(--primary-purple));
}

.boost-how-it-works h3 {
  font-family: var(--font-nav);
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nav-gold);
  margin-bottom: 1.5rem;
}

.boost-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .boost-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .boost-steps { grid-template-columns: 1fr; }
}

.boost-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.boost-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

.boost-step strong {
  font-size: 0.85rem;
  color: var(--text-main);
}

.boost-step p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

