@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=Cinzel+Decorative:wght@400;700&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* el MOBA estratégico / Hextech Palette - Upgraded Pro Max */
  --bg-darkest: #02060c;      /* Deepest void black */
  --bg-dark: #071221;         /* League client slate blue */
  --bg-card: rgba(8, 20, 36, 0.65); /* Glassmorphism Card background */
  --bg-card-hover: rgba(15, 34, 59, 0.85); /* Hover Card */
  
  --gold-primary: #c89b3c;    /* Hextech Gold */
  --gold-secondary: #f0e6d2;  /* Golden Sands/Off-white */
  --gold-dark: #785a28;       /* Metallic Bronze/Gold */
  --gold-light: #f0e6d2;      /* Off-white gold highlights */
  --gold-glow: rgba(200, 155, 60, 0.4);
  
  --blue-primary: #005a82;    /* Hextech Magic Blue */
  --blue-secondary: #00a3c4;  /* Medium magic blue */
  --blue-light: #00e5ff;      /* Bright cyan energy glow */
  --blue-dark: #092c34;       /* Deep water/oil shadow */
  --blue-glow: rgba(0, 229, 255, 0.35);
  
  --success: #24d187;
  --danger: #ff4b5c;          /* High contrast danger red */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  
  --glass-bg: rgba(6, 15, 28, 0.7);
  --glass-border: rgba(200, 155, 60, 0.25);
  --glass-border-hover: rgba(0, 229, 255, 0.5);
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(0, 229, 255, 0.25);
  color: #fff;
  text-shadow: 0 0 8px var(--blue-light);
}

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

body {
  background-color: var(--bg-darkest);
  color: var(--gold-light);
  font-family: 'Chakra Petch', sans-serif;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Background Gradients & Effects */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(9, 20, 40, 0.6) 0%, rgba(1, 10, 19, 0.95) 100%);
  z-index: -2;
  pointer-events: none;
}

/* Magic Particles Canvas */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999; /* Drawn on top of the black background and elements for visual impact */
  pointer-events: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
  border-left: 1px solid var(--gold-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border: 1px solid var(--gold-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.font-ui {
  font-family: 'Chakra Petch', sans-serif;
}

p {
  color: #a0aab5;
}

.border-hextech {
  border: 1px solid var(--gold-dark);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 229, 255, 0.05);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

/* Corner brackets effect for cards — DISABLED */
.border-hextech::before, .border-hextech::after {
  display: none;
}

.border-hextech:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(0, 229, 255, 0.15), inset 0 0 20px rgba(0, 229, 255, 0.08);
  transform: translateY(-4px);
}

/* Golden Lines */
.gold-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 20%, var(--gold-primary) 50%, var(--gold-dark) 80%, transparent 100%);
  margin: 1.5rem 0;
  width: 100%;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: linear-gradient(180deg, var(--bg-darkest) 0%, rgba(9, 20, 40, 0.8) 100%);
  border-bottom: 2px solid var(--gold-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  height: 60px; /* Increased size */
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
  transition: var(--transition-smooth);
}

.nav-brand img:hover {
  transform: scale(1.08) rotate(2deg);
  filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.9));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 15px;
  align-items: center;
}

/* Premium Nav Link hover effects (Adapted from React component to Hextech Theme) */
.nav-link-item {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 6px 12px;
  transition: var(--transition-fast);
  text-align: center;
}

.nav-link-text {
  position: relative;
  z-index: 10;
  display: block;
  text-transform: uppercase;
  color: var(--gold-secondary);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-icon {
  width: 15px;
  height: 15px;
  display: block;
  margin: 0 auto 3px;
  color: var(--gold-secondary);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  position: relative;
  z-index: 10;
}

.nav-link-item:hover .nav-icon {
  color: #fff;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
}

.nav-link-item.active .nav-icon {
  color: var(--blue-light);
  filter: drop-shadow(0 0 6px var(--blue-glow));
}

.nav-link-item:hover .nav-link-text {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.nav-link-item.active .nav-link-text {
  color: var(--blue-light) !important;
  text-shadow: 0 0 8px var(--blue-glow);
}

.nav-link-item.active .nav-link-border {
  transform: scaleY(1);
  opacity: 1;
  border-color: var(--blue-light);
}

/* Border animation: top and bottom borders scaling */
.nav-link-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1.5px solid var(--gold-primary);
  border-bottom: 1.5px solid var(--gold-primary);
  transform: scaleY(2);
  opacity: 0;
  transition: var(--transition-smooth);
  transform-origin: center;
  pointer-events: none;
}

.nav-link-item:hover .nav-link-border {
  transform: scaleY(1);
  opacity: 1;
}

/* Background animation: fill vertical scale from top */
.nav-link-bg {
  position: absolute;
  top: 1.5px;
  left: 0;
  width: 100%;
  height: calc(100% - 3px);
  background: linear-gradient(180deg, rgba(0, 90, 130, 0.45) 0%, rgba(9, 44, 52, 0.6) 100%);
  border-left: 1.5px solid var(--blue-light);
  border-right: 1.5px solid var(--blue-light);
  transform: scaleY(0);
  opacity: 0;
  transition: var(--transition-smooth);
  transform-origin: top;
  pointer-events: none;
  z-index: 1;
}

.nav-link-item:hover .nav-link-bg {
  transform: scaleY(1);
  opacity: 1;
}


/* Premium Buttons */
.btn-lol {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  border: 1px solid var(--gold-secondary);
  color: var(--bg-darkest);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.8rem 2rem;
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  text-decoration: none;
  text-align: center;
}

.btn-lol::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.btn-lol:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--gold-primary), inset 0 0 10px rgba(255,255,255,0.2);
  border-color: var(--gold-light);
}

.btn-lol:hover::before {
  left: 100%;
}

.btn-lol:active {
  transform: translateY(1px);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 50%, var(--blue-dark) 100%);
  border-color: var(--blue-light);
  color: var(--blue-light);
  text-shadow: 0 0 5px rgba(0, 229, 255, 0.6);
}

.btn-cyan:hover {
  color: #fff;
  box-shadow: 0 0 15px var(--blue-light);
  border-color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 10%;
  overflow: hidden;
  background-color: #000; /* Coincide con el color de fondo del video para ocultar los bordes */
  z-index: 1; /* Establishes stacking context */
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: contrast(135%) brightness(100%);
  z-index: 1; /* Plays above general backdrop but behind hero content */
  transform: scale(0.85);
  transform-origin: center;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 3; /* Puts content on top of background video */
}

.hero-text-block {
  max-width: 620px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center; /* Aligns the actions block to the center of the container */
}

.hero-subtitle {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 4.8rem;
  line-height: 1.1;
  color: #fff;
  text-transform: none;
  letter-spacing: -1.5px;
  margin-bottom: 2.8rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.brush-gold {
  position: relative;
  display: inline-block;
  color: var(--bg-darkest);
  padding: 0.1rem 1.2rem;
  z-index: 1;
}

.brush-gold::before {
  content: '';
  position: absolute;
  top: 5%;
  left: -3%;
  width: 106%;
  height: 90%;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 55%, var(--gold-dark) 100%);
  z-index: -1;
  transform: rotate(-1.5deg) skewX(-8deg);
  border-radius: 5px 9px 4px 7px;
  box-shadow: 0 4px 24px rgba(200, 155, 60, 0.55), inset 0 0 12px rgba(255, 235, 150, 0.2);
}

.btn-lol.btn-pill-cyan {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 55%, var(--gold-dark) 100%);
  border: 1.5px solid var(--gold-secondary);
  color: var(--bg-darkest);
  font-weight: 800;
  font-size: 1rem;
  padding: 1rem 3rem;
  border-radius: 50px;
  box-shadow: 0 5px 25px rgba(200, 155, 60, 0.4), inset 0 0 10px rgba(255, 235, 150, 0.15);
  letter-spacing: 1.5px;
  text-shadow: none;
}

.btn-lol.btn-pill-cyan:hover {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 55%, var(--gold-primary) 100%);
  color: var(--bg-darkest);
  box-shadow: 0 0 35px rgba(200, 155, 60, 0.6), 0 0 60px rgba(200, 155, 60, 0.2);
  border-color: var(--gold-secondary);
  transform: translateY(-3px) scale(1.02);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

/* Animated background energy orbs */
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -5; /* Behind content and video but in front of background */
  pointer-events: none;
  opacity: 0.65;
  mix-blend-mode: screen;
}

.orb-cyan {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.28) 0%, transparent 70%);
  top: 10%;
  left: 5%;
  animation: float-orb-1 25s ease-in-out infinite alternate;
}

.orb-gold {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.22) 0%, transparent 70%);
  bottom: 10%;
  right: 5%;
  animation: float-orb-2 30s ease-in-out infinite alternate;
}

@keyframes float-orb-1 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(80px, 50px) scale(1.15);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50px, 90px) scale(0.95);
    opacity: 0.3;
  }
}

@keyframes float-orb-2 {
  0% {
    transform: translate(0, 0) scale(1.1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-90px, -60px) scale(0.85);
    opacity: 0.7;
  }
  100% {
    transform: translate(60px, 40px) scale(1.2);
    opacity: 0.45;
  }
}

/* MMR Calculator Section */
.calculator-section {
  padding: 6rem 5%;
  position: relative;
  background: linear-gradient(180deg, rgba(1, 10, 19, 0) 0%, rgba(9, 20, 40, 0.5) 50%, rgba(1, 10, 19, 0) 100%);
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--blue-light);
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.calculator-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 4px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 3rem;
}

.calc-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(1, 10, 19, 0.4);
  padding: 2.5rem;
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.calc-column:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(200, 155, 60, 0.1);
}

.calc-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  font-family: 'Chakra Petch', sans-serif;
}

.rank-display-box {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1.5rem;
}

.rank-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(200, 155, 60, 0.2));
  transition: transform 0.5s ease;
}

.rank-display-box:hover .rank-image {
  transform: scale(1.08) rotate(2deg);
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
}

.selector-wrapper {
  width: 100%;
  margin-bottom: 1rem;
}

.selector-wrapper label {
  display: block;
  font-size: 0.8rem;
  font-family: 'Chakra Petch', sans-serif;
  color: var(--gold-secondary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.lol-select {
  width: 100%;
  background: var(--bg-darkest);
  border: 1px solid var(--gold-dark);
  color: var(--gold-light);
  padding: 0.8rem 1.2rem;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lol-select:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 8px var(--blue-light);
}

.lol-select option {
  background: var(--bg-dark);
  color: var(--gold-light);
}

/* Mid Arrow indicator */
.calc-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.arrow-icon {
  font-size: 2rem;
  color: var(--gold-primary);
  animation: bounce-horizontal 2s infinite ease-in-out;
}

.las-badge {
  background: rgba(0, 163, 196, 0.15);
  border: 1px solid var(--blue-light);
  color: var(--blue-light);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Pricing Results */
.pricing-card {
  border-top: 1px solid var(--gold-dark);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(1, 10, 19, 0.3);
  padding: 2rem;
  border-radius: 4px;
}

.price-details h4 {
  font-size: 0.85rem;
  font-family: 'Chakra Petch', sans-serif;
  text-transform: uppercase;
  color: #a0aab5;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  color: var(--blue-light);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.price-amount span {
  font-size: 1rem;
  color: var(--gold-secondary);
  margin-left: 5px;
}

.pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calculator-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 1.5rem;
  color: #6a7c8e;
}

/* Features/Ventajas Section */
.features-section {
  padding: 6rem 5%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  border-color: var(--blue-light);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(9, 44, 52, 0.5);
  border: 1px solid var(--blue-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: var(--transition-smooth);
  color: var(--blue-light);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--blue-primary);
  box-shadow: 0 0 20px var(--blue-light);
  border-color: var(--blue-light);
  color: #fff;
  transform: rotateY(180deg);
}

.feature-icon-wrapper svg {
  width: 35px;
  height: 35px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--gold-secondary);
  font-family: 'Chakra Petch', sans-serif;
  text-transform: uppercase;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ / Accordion Section */
.faq-section {
  padding: 6rem 5%;
  background: linear-gradient(180deg, rgba(9, 20, 40, 0.5) 0%, rgba(1, 10, 19, 0.9) 100%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--gold-primary);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-family: 'Chakra Petch', sans-serif;
  text-transform: uppercase;
  margin: 0;
}

.faq-toggle {
  color: var(--gold-primary);
  font-size: 1.2rem;
  font-family: 'Chakra Petch', sans-serif;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--blue-light);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background: rgba(1, 10, 19, 0.4);
}

.faq-item.active .faq-body {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
}

.faq-body-content {
  padding: 1.5rem 2rem;
  color: #a4b4c3;
  font-size: 0.95rem;
  border-top: 1px dashed var(--gold-dark);
}

/* ==========================================
   RESTYLED MULTI-COLUMN FOOTER (FOTO 6)
   ========================================== */
.footer {
  background: #02060c;
  border-top: 1px solid var(--gold-dark);
  padding: 5rem 5% 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

/* Brand column customization */
.brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.footer-brand span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-secondary);
  letter-spacing: 2px;
}

.footer-logo {
  height: 55px; /* Increased size */
  width: auto;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.4));
  transition: var(--transition-smooth);
}

.footer-logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 14px var(--blue-light));
}

.footer-disclaimer {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #6a7c8e;
  margin-bottom: 1.2rem;
}

.footer-ad-contact {
  font-size: 0.85rem;
  color: #a4b4c3;
  margin-bottom: 1.5rem;
}

.footer-ad-contact a {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.footer-ad-contact a:hover {
  color: var(--blue-light);
  text-shadow: 0 0 5px rgba(0, 229, 255, 0.3);
}

/* App Badges styling */
.store-badge-wrapper {
  display: flex;
  gap: 12px;
  width: 100%;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 18, 33, 0.7);
  border: 1px solid var(--gold-dark);
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--gold-secondary);
  transition: var(--transition-smooth);
  flex: 1;
  min-width: 155px;
  max-width: 180px;
}

.store-badge:hover {
  background: rgba(15, 34, 59, 0.85);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.1);
}

.store-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  transition: var(--transition-fast);
}

.store-badge:hover .store-icon {
  color: var(--blue-light);
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-subtext {
  font-size: 0.65rem;
  color: #6a7c8e;
  text-transform: uppercase;
}

.store-maintext {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Chakra Petch', sans-serif;
}

/* Links columns */
.links-col {
  text-align: left;
}

.links-col h4 {
  font-size: 1.1rem;
  color: var(--gold-secondary);
  font-family: 'Chakra Petch', sans-serif;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer-links li::before {
  content: '•';
  color: var(--gold-dark);
  margin-right: 8px;
  font-size: 0.8rem;
}

.footer-links a {
  color: #8fa0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--blue-light);
  padding-left: 4px;
}

/* Help column */
.help-col {
  text-align: left;
}

.help-col h4 {
  font-size: 1.1rem;
  color: var(--gold-secondary);
  font-family: 'Chakra Petch', sans-serif;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.help-desc {
  font-size: 0.9rem;
  color: #8fa0b0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.help-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.btn-help {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  color: var(--gold-secondary);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Chakra Petch', sans-serif;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.btn-help:hover {
  background: var(--bg-card-hover);
  border-color: var(--blue-light);
  color: var(--blue-light);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.1);
  transform: translateY(-2px);
}

.btn-help-outline {
  background: transparent;
  border-color: rgba(200, 155, 60, 0.3);
  color: #8fa0b0;
}

.btn-help-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-secondary);
}

/* Footer bottom strip */
.footer-bottom {
  border-top: 1px solid rgba(120, 90, 40, 0.2);
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-left p {
  font-size: 0.85rem;
  color: #6a7c8e;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Language selector */
.language-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gold-secondary);
  cursor: pointer;
  padding: 4px 8px;
  border: 1px solid rgba(120, 90, 40, 0.3);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.language-selector:hover {
  border-color: var(--gold-primary);
  color: #fff;
}

.globe-icon {
  width: 14px;
  height: 14px;
}

.chevron-down {
  font-size: 0.65rem;
  color: var(--gold-primary);
}

/* Social icons layout */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #6a7c8e;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  color: var(--blue-light);
  transform: translateY(-2px);
  filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.5));
}

.social-icons svg {
  width: 18px;
  height: 18px;
}

/* Keyframe Animations */
@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
  }
  100% {
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.8), 0 0 30px rgba(0, 229, 255, 0.4);
  }
}

@keyframes bounce-horizontal {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 3%;
  }
  
  .nav-links {
    display: none; /* Mobile menu can be simplified */
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .calc-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
  
  .pricing-card {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }
  
  .btn-lol {
    width: 100%;
  }
}

/* ==========================================
   NEW UPGRADED SECTIONS & INTERACTIVE ITEMS
   ========================================== */

/* Calculator Extras */
.extras-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1rem;
  color: var(--gold-secondary);
  margin: 2.5rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  position: relative;
}
.extras-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold-primary);
  margin: 8px auto 0;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 2rem;
}
.extra-card {
  background: rgba(1, 10, 19, 0.4);
  border: 1px solid var(--gold-dark);
  padding: 1rem;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
  user-select: none;
  position: relative;
}
.extra-card:hover {
  border-color: var(--gold-primary);
  background: rgba(200, 155, 60, 0.05);
}
.extra-card.active {
  border-color: var(--blue-light);
  background: rgba(0, 229, 255, 0.08);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}
.extra-card input[type="checkbox"] {
  display: none;
}
.extra-checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold-primary);
  border-radius: 2px;
  position: relative;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.extra-card.active .extra-checkbox-custom {
  border-color: var(--blue-light);
  background: var(--blue-primary);
  box-shadow: 0 0 5px var(--blue-light);
}
.extra-card.active .extra-checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: bold;
}
.extra-info {
  display: flex;
  flex-direction: column;
}
.extra-name {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
}
.extra-percent {
  font-size: 0.75rem;
  color: var(--blue-light);
  margin-top: 2px;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
}

/* especialistas Profiles Section */
.specialists-section {
  padding: 6rem 5%;
}
.specialists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.specialist-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Ensure all text in specialist card renders above the shield watermark */
.specialist-card h3,
.specialist-card .specialist-title,
.specialist-card .specialist-stats,
.specialist-card .specialist-skills,
.specialist-card .specialist-status-dot {
  position: relative;
  z-index: 2;
}
.specialist-avatar-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.2rem;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 0 12px rgba(200, 155, 60, 0.25);
  background: var(--bg-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

/* Rank shield decorative image — bottom-right watermark */
.specialist-rank-img {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 130px;
  height: 130px;
  object-fit: contain;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  filter: saturate(1.4);
}

.specialist-card:hover .specialist-rank-img {
  opacity: 0.22;
  transform: scale(1.06) rotate(3deg);
}
.specialist-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 15px rgba(200, 155, 60, 0.3);
  background: var(--bg-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold-secondary);
  transition: var(--transition-smooth);
  object-fit: cover;
}
.specialist-card:hover .specialist-avatar {
  border-color: var(--blue-light);
  box-shadow: 0 0 20px var(--blue-light);
  transform: rotate(5deg) scale(1.05);
}
.specialist-status-dot {
  width: 14px;
  height: 14px;
  background: var(--success);
  border: 2px solid var(--bg-dark);
  border-radius: 50%;
  position: absolute;
  bottom: 2px;
  right: 2px;
  box-shadow: 0 0 8px var(--success);
  animation: status-pulse 2s infinite;
  z-index: 3;
}
@keyframes status-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}
.specialist-card h3 {
  font-size: 1.3rem;
  font-family: 'Chakra Petch', sans-serif;
  margin-bottom: 0.2rem;
  color: var(--gold-light);
}
.specialist-title {
  font-size: 0.8rem;
  color: var(--blue-light);
  text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.specialist-stats {
  display: flex;
  justify-content: space-around;
  border-top: 1px dashed rgba(120, 90, 40, 0.3);
  border-bottom: 1px dashed rgba(120, 90, 40, 0.3);
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}
.stat-box {
  text-align: center;
}
.stat-val {
  font-size: 1.1rem;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  color: var(--gold-secondary);
}
.stat-lbl {
  font-size: 0.7rem;
  color: #6a7c8e;
  text-transform: uppercase;
  margin-top: 2px;
}
.specialist-skills {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.skill-pill {
  background: rgba(9, 44, 52, 0.4);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--blue-light);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  transition: var(--transition-fast);
}
.specialist-card:hover .skill-pill {
  border-color: var(--blue-light);
  background: rgba(9, 44, 52, 0.7);
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 5%;
  background: linear-gradient(180deg, rgba(7, 18, 33, 0.4) 0%, rgba(1, 10, 19, 0) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  position: relative;
  transition: var(--transition-smooth);
}
.testimonial-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.05);
}
.quote-icon {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 3.5rem;
  color: rgba(200, 155, 60, 0.08);
  font-family: 'Cinzel Decorative', serif;
  line-height: 1;
}
.stars {
  color: var(--gold-primary);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: #c4d0da;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(120, 90, 40, 0.2);
  padding-top: 1.2rem;
}
.client-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--blue-dark);
  border: 1px solid var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: bold;
  color: var(--blue-light);
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}
.client-details h4 {
  font-size: 0.95rem;
  margin: 0 0 2px 0;
  color: var(--gold-light);
  font-family: 'Chakra Petch', sans-serif;
}
.client-rank-change {
  font-size: 0.75rem;
  color: var(--success);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Floating Support Buttons */
.floating-support {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}
.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  border: none;
  outline: none;
  text-decoration: none;
}
.floating-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.btn-whatsapp {
  background: #25d366;
  border: 1px solid #1ebd58;
}
.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
  transform: scale(1.1) translateY(-4px);
}
.btn-discord {
  background: #5865f2;
  border: 1px solid #4752c4;
}
.btn-discord:hover {
  background: #4752c4;
  box-shadow: 0 0 25px rgba(88, 101, 242, 0.7);
  transform: scale(1.1) translateY(-4px);
}
.floating-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-darkest);
  border: 1px solid var(--gold-primary);
  color: var(--gold-secondary);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-family: 'Chakra Petch', sans-serif;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}
.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Logo Upgrades */
.hero-logo-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -3.5rem;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.hero-logo {
  max-width: 275px; /* Decreased size slightly for cleaner layout */
  height: auto;
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.4)) drop-shadow(0 0 40px rgba(0, 229, 255, 0.2));
  animation: float-logo 4s ease-in-out infinite alternate;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.hero-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.8)) drop-shadow(0 0 55px rgba(0, 229, 255, 0.5));
}

@keyframes float-logo {
  0% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.45)) drop-shadow(0 0 35px rgba(0, 229, 255, 0.2));
  }
  50% {
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 0 22px rgba(0, 229, 255, 0.75)) drop-shadow(0 0 45px rgba(0, 229, 255, 0.35));
  }
  100% {
    transform: translateY(-16px) scale(1.04);
    filter: drop-shadow(0 0 32px rgba(0, 229, 255, 0.95)) drop-shadow(0 0 65px rgba(0, 229, 255, 0.5));
  }
}

/* Queue Selector Tab styles */
.queue-selector-wrapper {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.queue-selector-wrapper label {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.85rem;
  color: var(--gold-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.queue-tabs {
  display: flex;
  background: rgba(1, 10, 19, 0.6);
  border: 1px solid var(--gold-dark);
  padding: 4px;
  border-radius: 4px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.queue-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--gold-light);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.queue-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  border-radius: 2px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.queue-tab:hover {
  color: #fff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.queue-tab.active {
  color: var(--bg-darkest);
  text-shadow: none;
}

.queue-tab.active::before {
  opacity: 1;
}

.queue-tab.active {
  box-shadow: 0 0 15px var(--gold-glow);
}

/* Micro-interaction: Pricing Pulse */
.price-amount {
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), text-shadow 0.25s ease, color 0.25s ease;
  display: inline-block;
}

.price-amount.pulse-price {
  transform: scale(1.08);
  color: #fff;
  text-shadow: 0 0 18px var(--blue-light);
}

/* ==========================================
   PREMIUM FEATURES GRID & LAYOUTS
   ========================================== */
.premium-features-section {
  padding: 6rem 5%;
  background: linear-gradient(180deg, rgba(2, 6, 12, 0.4) 0%, rgba(8, 20, 36, 0.2) 100%);
}

.premium-features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.features-intro {
  flex: 0 0 35%;
  max-width: 420px;
  text-align: left;
}

.premium-badge {
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--blue-secondary);
  color: var(--blue-light);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.05);
}

.features-main-title {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--gold-secondary);
  text-align: left;
}

.features-main-desc {
  font-size: 1rem;
  color: #a0aab5;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  text-align: left;
}

.btn-start-optimization {
  display: inline-block;
  padding: 0.9rem 2.5rem;
}

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

.feature-split-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  padding: 2.2rem 2rem;
  border-radius: 4px;
  position: relative;
  transition: var(--transition-smooth);
  text-align: left;
}

.feature-split-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--blue-light);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.05);
}

.card-num {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 0.75rem;
  color: rgba(200, 155, 60, 0.35);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.feature-split-card:hover .card-num {
  color: var(--blue-light);
}

.feature-split-card h3 {
  font-size: 1.15rem;
  font-family: 'Chakra Petch', sans-serif;
  margin-bottom: 0.8rem;
  color: var(--gold-light);
  text-transform: uppercase;
  text-align: left;
}

.feature-split-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #8fa0b0;
  text-align: left;
}

.cashback-badge {
  background: rgba(36, 209, 135, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 1px 6px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 5px;
  vertical-align: middle;
}

/* ==========================================
   SATISFACCIÓN GARANTIZADA SECTION
   ========================================== */
.guarantee-section {
  padding: 6rem 5%;
  background: linear-gradient(180deg, rgba(8, 20, 36, 0.2) 0%, rgba(2, 6, 12, 0.4) 100%);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  border-left: 3px solid var(--gold-primary);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  position: relative;
  transition: var(--transition-smooth);
  text-align: left;
}

.guarantee-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  border-left-color: var(--blue-light);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.guarantee-num {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 0.75rem;
  color: rgba(200, 155, 60, 0.3);
  font-weight: 700;
}

.guarantee-card h3 {
  font-size: 1.15rem;
  font-family: 'Chakra Petch', sans-serif;
  margin-bottom: 0.8rem;
  color: var(--gold-light);
  text-transform: uppercase;
  text-align: left;
}

.guarantee-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #8fa0b0;
  text-align: left;
}

.guarantee-icon-wrapper {
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
}

.guarantee-icon-wrapper svg {
  width: 36px;
  height: 36px;
}

.guarantee-card:hover .guarantee-icon-wrapper {
  color: var(--blue-light);
}

/* ==========================================
   SEO INFO ACCORDION SECTION
   ========================================== */
.seo-info-section {
  padding: 6rem 5%;
  background: linear-gradient(180deg, rgba(2, 6, 12, 0.4) 0%, rgba(8, 20, 36, 0.1) 100%);
}

.seo-info-container {
  max-width: 900px;
  margin: 0 auto;
}

.seo-main-title {
  font-size: 2.2rem;
  color: var(--gold-secondary);
  text-align: left;
  margin-bottom: 0.5rem;
}

.seo-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 2rem;
}

.seo-acc-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.seo-acc-item:hover {
  border-color: var(--gold-primary);
}

.seo-acc-header {
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.seo-acc-header h3 {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-family: 'Chakra Petch', sans-serif;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
}

.seo-acc-toggle {
  color: var(--gold-primary);
  font-size: 1.4rem;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.seo-acc-item.active .seo-acc-toggle {
  transform: rotate(45deg);
  color: var(--blue-light);
}

.seo-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background: rgba(1, 10, 19, 0.4);
}

.seo-acc-item.active .seo-acc-body {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
}

.seo-acc-body p {
  padding: 1.5rem 2rem;
  color: #a0aab5;
  font-size: 0.92rem;
  line-height: 1.7;
  border-top: 1px dashed rgba(120, 90, 40, 0.3);
  text-align: left;
}

/* ==========================================
   CTA BANNER SECTION
   ========================================== */
.cta-banner-section {
  padding: 6rem 5% 4rem;
}

.cta-banner-container {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(8, 20, 36, 0.9) 0%, rgba(2, 6, 12, 0.95) 100%);
  border: 1px solid var(--gold-primary);
  padding: 4rem 5rem;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 229, 255, 0.05);
}

.cta-banner-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 85% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-content {
  text-align: left;
}

.cta-badge {
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--blue-secondary);
  color: var(--blue-light);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
  font-family: 'Chakra Petch', sans-serif;
}

.cta-title {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
}

.cta-desc {
  color: #a0aab5;
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.6;
  text-align: left;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cta-action {
  padding: 1rem 3.5rem;
  font-size: 1rem;
  box-shadow: 0 0 20px var(--gold-glow);
}

.cta-note {
  font-size: 0.75rem;
  color: var(--blue-light);
  letter-spacing: 0.5px;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .premium-features-container {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .features-intro {
    max-width: 100%;
    text-align: center;
  }
  .features-main-title, .features-main-desc {
    text-align: center;
  }
  .features-intro .btn-lol {
    margin: 0 auto;
    display: block;
    max-width: 250px;
  }
  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cta-banner-container {
    flex-direction: column;
    padding: 3rem;
    text-align: center;
  }
  .cta-banner-content {
    text-align: center;
  }
  .cta-title, .cta-desc {
    text-align: center;
  }
  .cta-banner-actions {
    width: 100%;
  }
  .btn-cta-action {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .features-split-grid {
    grid-template-columns: 1fr;
  }
  .cta-title {
    font-size: 1.7rem;
  }
}

/* ==========================================
   CARACTERÍSTICAS OVERVIEW (FOTO 1)
   ========================================== */
.features-overview {
  padding: 5rem 5% 3rem;
  background: linear-gradient(180deg, rgba(2, 6, 12, 0) 0%, rgba(7, 18, 33, 0.4) 100%);
}

.features-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.features-overview-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  padding: 3rem 2rem;
  border-radius: 6px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-overview-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--blue-light);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.1);
}

.features-overview-icon-wrapper {
  color: var(--gold-primary);
  background: rgba(200, 155, 60, 0.05);
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.features-overview-card:hover .features-overview-icon-wrapper {
  color: var(--blue-light);
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--blue-light);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
  transform: scale(1.1);
}

.features-overview-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.features-overview-card h3 {
  font-size: 1.2rem;
  font-family: 'Chakra Petch', sans-serif;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.features-overview-card p {
  font-size: 0.9rem;
  color: #8fa0b0;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .features-overview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-logo-wrapper {
    margin-bottom: 6rem; /* Responsive gap on smaller screens */
  }
  .hero-text-block {
    align-self: center; /* Centers the content block on mobile */
    text-align: center;
    align-items: center;
  }
  .hero-tagline, .hero-desc {
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
}


/* ==========================================
   SPOTLIGHT GLOW CARD BORDERS (Adapted from React SpotlightCard)
   ========================================== */
.glow-overlay[data-glow] {
  --base: 220; /* Default Hue (Blue/Cyan) */
  --spread: 200;
  --radius: inherit; /* Inherits the border radius of the parent card */
  --border: 1.5; /* Border size in px */
  --backdrop: transparent; /* Transparent so it overlays card background */
  --backup-border: rgba(120, 90, 40, 0.25); /* Default subtle gold border */
  --size: 250; /* Spotlight diameter */
  --outer: 1;
  --border-size: calc(var(--border, 1.5) * 1px);
  --spotlight-size: calc(var(--size, 150) * 1px);
  --hue: calc(var(--base) + (var(--xp, 0) * var(--spread, 0)));
  
  position: absolute;
  inset: 0;
  pointer-events: none;
  touch-action: none;
  background-color: var(--backdrop, transparent);
  background-image: radial-gradient(
    var(--spotlight-size) var(--spotlight-size) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(var(--hue, 210) 100% 70% / 0.08), transparent
  );
  background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
  background-position: 50% 50%;
  background-attachment: fixed;
  border: var(--border-size) solid var(--backup-border) !important;
  border-radius: var(--radius);
  z-index: 4; /* Below corner brackets (z-index: 5) but above content */
  box-sizing: border-box;
}

.glow-overlay[data-glow]::before,
.glow-overlay[data-glow]::after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: calc(var(--border-size) * -1);
  border: var(--border-size) solid transparent;
  border-radius: inherit;
  background-attachment: fixed;
  background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
  background-repeat: no-repeat;
  background-position: 50% 50%;
  
  /* Masking setup to only show the border outline */
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.glow-overlay[data-glow]::before {
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.75) calc(var(--spotlight-size) * 0.75) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(var(--hue, 210) 100% 60% / 0.75), transparent 100%
  );
  filter: brightness(1.8);
}

.glow-overlay[data-glow]::after {
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.5) calc(var(--spotlight-size) * 0.5) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(0 100% 100% / 0.5), transparent 100%
  );
}

/* Custom glow underlay inside the overlay if nested [data-glow] is used */
.glow-overlay[data-glow] [data-glow] {
  position: absolute;
  inset: 0;
  will-change: filter;
  opacity: var(--outer, 1);
  border-radius: inherit;
  filter: blur(calc(var(--border-size) * 10));
  background: none;
  pointer-events: none;
  border: none;
  z-index: 1;
}

.glow-overlay[data-glow] > [data-glow]::before {
  inset: -10px;
  border-width: 10px;
  content: "";
  position: absolute;
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.75) calc(var(--spotlight-size) * 0.75) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(var(--hue, 210) 100% 60% / 0.25), transparent 100%
  );
}

/* ==========================================
   SHOWCASE CAROUSEL SECTION
   ========================================== */
.showcase-carousel-section {
  position: relative;
  background: linear-gradient(180deg, rgba(1, 10, 19, 0) 0%, rgba(9, 20, 40, 0.45) 50%, rgba(1, 10, 19, 0) 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.carousel-scroll-container {
  height: 140vh; /* Scroll space linking */
  position: relative;
  width: 100%;
}

.carousel-sticky-wrap {
  position: sticky;
  top: 90px;
  height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
  width: 100%;
}

.carousel-row {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  transition: transform 0.1s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.carousel-card {
  position: relative;
  min-width: 32vw;
  height: 28vh;
  min-height: 220px;
  overflow: hidden;
  border-radius: 12px;
  --radius: 12; /* border radius value for data-glow */
}

@media (max-width: 768px) {
  .carousel-card {
    min-width: 75vw;
    height: 22vh;
    min-height: 180px;
  }
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-card:hover img {
  transform: scale(1.08);
}

/* Card Reveal content box */
.card-reveal-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(6, 15, 28, 0.85);
  border: 1px solid var(--gold-dark);
  padding: 1.2rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  z-index: 10;
  text-align: left;
}

.carousel-card:hover .card-reveal-content {
  transform: translateY(0);
  opacity: 1;
  border-color: var(--blue-light);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

.card-reveal-content h4 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-secondary);
  margin-top: 6px;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-reveal-content p {
  font-size: 0.8rem;
  color: #a4b4c3;
  line-height: 1.5;
}

/* Badges styling */
.badge-lol, .badge-val {
  display: inline-block;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.badge-lol {
  background: rgba(200, 155, 60, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-secondary);
}

.badge-val {
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid var(--blue-light);
  color: var(--blue-light);
}

/* Blur fades on the sides of the carousel wrapper to create a soft edge gradient */
.carousel-sticky-wrap::before, .carousel-sticky-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15vw;
  z-index: 15;
  pointer-events: none;
}

.carousel-sticky-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #02060c 0%, transparent 100%);
}

.carousel-sticky-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #02060c 0%, transparent 100%);
}

/* ==========================================
   AUTHENTICATION STYLES (LOGIN & REGISTER)
   ========================================== */

/* Navbar Actions Row */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-auth {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition-fast);
  outline: none;
}

.btn-auth-login {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--gold-secondary);
  padding: 0.5rem 1rem;
}

.btn-auth-login .auth-icon {
  width: 16px;
  height: 16px;
  stroke: var(--gold-primary);
  transition: var(--transition-fast);
}

.btn-auth-login:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.btn-auth-login:hover .auth-icon {
  stroke: #fff;
  filter: drop-shadow(0 0 5px var(--blue-light));
  transform: translateX(2px);
}

.btn-auth-register {
  background: rgba(0, 90, 130, 0.2);
  border: 1px solid var(--blue-secondary);
  color: var(--blue-light);
  padding: 0.6rem 1.4rem;
  position: relative;
  overflow: hidden;
}

.btn-auth-register::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.25), transparent);
  transition: 0.5s;
}

.btn-auth-register:hover {
  color: #fff;
  border-color: var(--blue-light);
  box-shadow: 0 0 12px var(--blue-glow);
  background: rgba(0, 90, 130, 0.4);
}

.btn-auth-register:hover::before {
  left: 100%;
}

/* User Profile Menu in Navbar */
.user-profile-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 90, 130, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 0.5rem 1.2rem;
  font-family: 'Chakra Petch', sans-serif;
  transition: var(--transition-smooth);
}

.user-profile-menu:hover {
  border-color: var(--blue-light);
  box-shadow: 0 0 10px var(--blue-glow);
}

.user-tag {
  color: var(--gold-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.user-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-logout {
  background: transparent;
  border: none;
  color: rgba(240, 230, 210, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  transition: var(--transition-fast);
}

.btn-logout:hover {
  color: var(--danger);
  transform: scale(1.1);
  filter: drop-shadow(0 0 4px rgba(255, 75, 92, 0.6));
}

.btn-logout svg {
  width: 16px;
  height: 16px;
}

/* Auth Modal Overlay */
.auth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 12, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Modal Container */
.auth-modal-container {
  width: 90%;
  max-width: 440px;
  background: var(--bg-dark);
  border: 1px solid var(--gold-dark);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(200, 155, 60, 0.15);
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
  padding: 2.2rem 2rem;
}

.auth-modal-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 229, 255, 0.08);
  pointer-events: none;
}

.auth-modal-overlay.active .auth-modal-container {
  transform: translateY(0);
}

/* Hextech Corner Brackets for Modal */
.hextech-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold-primary);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.hextech-corner.top-left {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.hextech-corner.top-right {
  top: -2px;
  right: -2px;
  border-left: none;
  border-bottom: none;
}

.hextech-corner.bottom-left {
  bottom: -2px;
  left: -2px;
  border-right: none;
  border-top: none;
}

.hextech-corner.bottom-right {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.auth-modal-container:hover .hextech-corner {
  width: 24px;
  height: 24px;
  border-color: var(--blue-light);
  filter: drop-shadow(0 0 6px var(--blue-light));
}

.auth-modal-container:hover {
  border-color: var(--gold-primary);
}

/* Modal Header & Tabs */
.auth-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--gold-dark);
  margin-bottom: 1.8rem;
  padding-bottom: 0.2rem;
}

.auth-tabs {
  display: flex;
  gap: 24px;
}

.auth-tab {
  background: transparent;
  border: none;
  color: rgba(240, 230, 210, 0.4);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-fast);
}

.auth-tab:hover {
  color: var(--gold-secondary);
}

.auth-tab.active {
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(200, 155, 60, 0.4);
}

.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

.auth-modal-close {
  background: transparent;
  border: none;
  color: var(--gold-dark);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 0.8;
  margin-bottom: 5px;
}

.auth-modal-close:hover {
  color: var(--danger);
  transform: scale(1.15) rotate(90deg);
}

/* Forms Visibility */
.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form-group {
  margin-bottom: 1.4rem;
}

.auth-form-group label {
  display: block;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-secondary);
  margin-bottom: 0.5rem;
}

.auth-input-wrapper {
  position: relative;
}

.auth-input-wrapper input {
  width: 100%;
  background: rgba(2, 6, 12, 0.65);
  border: 1px solid rgba(120, 90, 40, 0.4);
  padding: 0.85rem 1.1rem;
  color: #fff;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.auth-input-wrapper input::placeholder {
  color: rgba(240, 230, 210, 0.2);
}

.auth-input-wrapper input:focus {
  outline: none;
  border-color: var(--blue-secondary);
  box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.1);
  background: rgba(2, 6, 12, 0.8);
}

.auth-input-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--blue-light);
  box-shadow: 0 0 10px var(--blue-light);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.auth-input-wrapper input:focus ~ .auth-input-border {
  width: 100%;
}

/* Form Options & Links */
.auth-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
  font-size: 0.82rem;
}

/* Checkbox Style */
.auth-checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  user-select: none;
  color: rgba(240, 230, 210, 0.65);
  font-weight: 500;
}

.auth-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.auth-checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  background-color: rgba(2, 6, 12, 0.7);
  border: 1px solid var(--gold-dark);
  transition: var(--transition-fast);
}

.auth-checkbox-container:hover input ~ .auth-checkmark {
  border-color: var(--gold-primary);
}

.auth-checkbox-container input:checked ~ .auth-checkmark {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.auth-checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.auth-checkbox-container input:checked ~ .auth-checkmark::after {
  display: block;
}

.auth-checkbox-container .auth-checkmark::after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 7px;
  border: solid var(--bg-darkest);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.auth-forgot-link {
  color: var(--blue-light);
  text-decoration: none;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.auth-forgot-link:hover {
  color: #fff;
  text-shadow: 0 0 6px var(--blue-light);
}

.btn-auth-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem;
  font-size: 0.95rem;
}

/* Auth Divider */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.6rem 0;
  color: rgba(240, 230, 210, 0.25);
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(120, 90, 40, 0.15);
}

.auth-divider:not(:empty)::before {
  margin-right: 1.2em;
}

.auth-divider:not(:empty)::after {
  margin-left: 1.2em;
}

/* Social Grid */
.auth-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(2, 6, 12, 0.5);
  border: 1px solid rgba(120, 90, 40, 0.25);
  color: var(--gold-secondary);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.75rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-social:hover {
  background: rgba(200, 155, 60, 0.04);
  border-color: var(--gold-primary);
  color: #fff;
  box-shadow: inset 0 0 5px rgba(200, 155, 60, 0.15);
}

.social-logo {
  height: 14px;
}

.social-svg {
  width: 15px;
  height: 15px;
  color: #5865F2;
}

.auth-inline-link {
  color: var(--gold-primary);
  text-decoration: none;
}

.auth-inline-link:hover {
  text-decoration: underline;
  color: var(--gold-secondary);
}

/* Toast Notifications styling (Hextech theme) */
.auth-toast {
  position: fixed;
  bottom: -100px;
  right: 20px;
  background: rgba(7, 18, 33, 0.95);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(200, 155, 60, 0.3);
  color: #fff;
  padding: 1.1rem 1.6rem;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  z-index: 1100;
  transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-toast.active {
  bottom: 25px;
}

.auth-toast-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-toast-success {
  border-color: var(--success);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(36, 209, 135, 0.3);
}

.auth-toast-success .auth-toast-icon {
  color: var(--success);
  filter: drop-shadow(0 0 3px var(--success));
}

.auth-toast-error {
  border-color: var(--danger);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 75, 92, 0.3);
}

.auth-toast-error .auth-toast-icon {
  color: var(--danger);
  filter: drop-shadow(0 0 3px var(--danger));
}

/* ==========================================
   RESPONSIVE AUTH OVERRIDES
   ========================================== */

@media (max-width: 768px) {
  .nav-actions {
    gap: 8px;
  }
  
  .btn-auth-login span {
    display: none; /* Hide login button text, show icon only */
  }
  
  .btn-auth-login {
    padding: 0.5rem;
  }
  
  .btn-auth-register {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .navbar .btn-lol {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .user-profile-menu {
    padding: 0.4rem 0.8rem;
    gap: 8px;
  }

  .user-tag {
    display: none; /* Simplify profile container in mobile */
  }

  .user-name {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .btn-auth-register {
    display: none; /* Hide register button on tiny mobile screens to avoid overlap */
  }
  
  .navbar .btn-lol {
    display: none; /* Hide "Calcular Precio" inside navbar to save space. User can see it in hero */
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 0;
}

.mobile-menu-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--gold-primary);
  box-shadow: 0 0 5px var(--gold-glow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-btn.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--blue-light);
  box-shadow: 0 0 5px var(--blue-glow);
}

.mobile-menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--blue-light);
  box-shadow: 0 0 5px var(--blue-glow);
}

/* Mobile Side Drawer Overlay and Container */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 12, 0.85);
  backdrop-filter: blur(8px);
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--bg-dark);
  border-left: 1.5px solid var(--gold-dark) !important;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.8rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.active .mobile-drawer-content {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  border-bottom: 1.5px dashed var(--gold-dark);
  padding-bottom: 1rem;
}

.drawer-logo {
  height: 45px;
  filter: drop-shadow(0 0 5px var(--blue-light));
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--gold-primary);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-fast);
}

.drawer-close-btn:hover {
  color: var(--danger);
  transform: scale(1.1) rotate(90deg);
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 3rem;
}

.mobile-drawer-links li {
  display: flex;
  align-items: center;
}

.mobile-drawer-links li::before {
  content: '◆';
  color: var(--gold-primary);
  margin-right: 12px;
  font-size: 0.8rem;
  text-shadow: 0 0 5px var(--gold-glow);
}

.mobile-drawer-item {
  color: var(--gold-secondary);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-fast);
}

.mobile-drawer-item:hover,
.mobile-drawer-item.active {
  color: var(--blue-light);
  padding-left: 6px;
  text-shadow: 0 0 8px var(--blue-glow);
}

.mobile-drawer-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-drawer-actions .btn-auth,
.mobile-drawer-actions .btn-lol {
  width: 100% !important;
  text-align: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
}

/* Order Confirmation Custom Modal (Hextech themed) */
.order-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 12, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.order-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.order-modal-container {
  width: 90%;
  max-width: 480px;
  background: var(--bg-dark);
  border: 1px solid var(--gold-dark);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 255, 0.15);
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
  padding: 2.2rem 2rem;
}

.order-modal-overlay.active .order-modal-container {
  transform: translateY(0);
}

.order-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--gold-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

.order-modal-header h3 {
  font-size: 1.25rem;
  color: var(--gold-primary);
  text-shadow: 0 0 8px var(--gold-glow);
  margin: 0;
  text-transform: uppercase;
}

.order-modal-close {
  background: transparent;
  border: none;
  color: var(--gold-dark);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 0.8;
}

.order-modal-close:hover {
  color: var(--danger);
  transform: scale(1.1) rotate(90deg);
}

.order-summary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
  background: rgba(1, 10, 19, 0.5);
  padding: 1.2rem;
  border: 1px dashed var(--gold-dark);
  border-radius: 4px;
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #a0aab5;
}

.order-summary-item .label {
  font-weight: 600;
  color: var(--gold-secondary);
}

.order-summary-item .val {
  color: #fff;
  text-align: right;
  max-width: 60%;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gold-dark);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.order-summary-total .label {
  font-weight: 700;
  color: var(--gold-primary);
  font-size: 1.05rem;
}

.order-summary-total .val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-light);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.order-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-modal-actions .btn-lol {
  width: 100%;
}

/* ==========================================
   SHOPPING CART STYLES (CARRITO DE COMPRAS)
   ========================================== */

/* Cart trigger button in navbar */
.btn-cart-trigger {
  background: transparent;
  border: none;
  color: var(--gold-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  position: relative;
  transition: var(--transition-fast);
  outline: none;
}

.btn-cart-trigger .cart-icon {
  width: 20px;
  height: 20px;
  stroke: var(--gold-primary);
  fill: none;
  transition: var(--transition-fast);
}

.btn-cart-trigger:hover .cart-icon {
  stroke: #fff;
  filter: drop-shadow(0 0 5px var(--blue-light));
  transform: scale(1.05);
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--gold-primary);
  color: var(--bg-darkest);
  border: 1px solid var(--bg-dark);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.bounce {
  transform: scale(1.4);
}

/* Overlay background */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 6, 12, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Cart Slide-out Panel */
.cart-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100dvh;
  background: var(--bg-dark);
  background-image: radial-gradient(circle at 100% 0%, rgba(0, 90, 130, 0.15) 0%, transparent 70%);
  border-left: 1.5px solid var(--gold-dark);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.85), -10px 0 30px rgba(200, 155, 60, 0.08);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-panel.active {
  transform: translateX(0);
}

/* Hextech Corner decorations inside Cart and modals */
.hextech-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--gold-primary);
  pointer-events: none;
  z-index: 2;
}

.hextech-corner.top-left {
  top: 6px;
  left: 6px;
  border-right: none;
  border-bottom: none;
}

.hextech-corner.top-right {
  top: 6px;
  right: 6px;
  border-left: none;
  border-bottom: none;
}

.hextech-corner.bottom-left {
  bottom: 6px;
  left: 6px;
  border-right: none;
  border-top: none;
}

.hextech-corner.bottom-right {
  bottom: 6px;
  right: 6px;
  border-left: none;
  border-top: none;
}

/* Header */
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 1.5rem;
  border-bottom: 1.5px solid rgba(200, 155, 60, 0.2);
}

.cart-header h3 {
  color: var(--gold-secondary);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(200, 155, 60, 0.2);
  margin: 0;
}

.cart-close {
  background: transparent;
  border: none;
  color: var(--gold-primary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-close:hover {
  color: #fff;
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px var(--blue-light));
}

/* Body */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Custom Scrollbar for Cart Body */
.cart-body::-webkit-scrollbar {
  width: 6px;
}
.cart-body::-webkit-scrollbar-track {
  background: rgba(2, 6, 12, 0.3);
}
.cart-body::-webkit-scrollbar-thumb {
  background: rgba(120, 90, 40, 0.5);
  border-radius: 3px;
}
.cart-body::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Empty State */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 80%;
  color: rgba(240, 230, 210, 0.5);
  padding: 2rem;
}

.empty-cart-icon {
  width: 54px;
  height: 54px;
  stroke: var(--gold-dark);
  margin-bottom: 1.2rem;
  animation: floatEmptyIcon 4s ease-in-out infinite;
}

@keyframes floatEmptyIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.cart-empty-state p {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-secondary);
  margin-bottom: 0.4rem;
}

.cart-empty-state span {
  font-size: 0.8rem;
  line-height: 1.4;
  max-width: 220px;
}

/* Cart Items */
.cart-item {
  background: rgba(7, 18, 33, 0.5);
  border: 1px solid rgba(120, 90, 40, 0.25);
  padding: 1rem;
  display: flex;
  gap: 15px;
  align-items: center;
  position: relative;
  transition: var(--transition-smooth);
}

.cart-item:hover {
  border-color: var(--blue-secondary);
  background: rgba(7, 18, 33, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(0, 229, 255, 0.05);
}

.cart-item-rank-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(2, 6, 12, 0.4);
  border: 1px solid rgba(200, 155, 60, 0.15);
  padding: 4px;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.cart-item-queue {
  font-size: 0.7rem;
  color: var(--blue-light);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.cart-item-extras {
  font-size: 0.7rem;
  color: rgba(240, 230, 210, 0.55);
  line-height: 1.3;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cart-item-price {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-primary);
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: rgba(240, 230, 210, 0.3);
  cursor: pointer;
  padding: 4px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-remove:hover {
  color: var(--danger);
  transform: scale(1.15);
  filter: drop-shadow(0 0 3px rgba(255, 75, 92, 0.5));
}

.cart-item-remove svg {
  width: 16px;
  height: 16px;
}

/* Footer Section */
.cart-footer {
  padding: 1.5rem;
  border-top: 1.5px solid rgba(200, 155, 60, 0.2);
  background: rgba(2, 6, 12, 0.5);
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.summary-label {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  color: var(--gold-secondary);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.summary-total {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  color: var(--blue-light);
  font-size: 1.4rem;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-proceed-checkout {
  width: 100%;
  padding: 0.9rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  box-shadow: 0 5px 15px rgba(200, 155, 60, 0.15);
}

.btn-clear-cart {
  background: transparent;
  border: none;
  color: rgba(240, 230, 210, 0.4);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 5px;
}

.btn-clear-cart:hover {
  color: var(--danger);
  text-decoration: underline;
}

/* Responsive Overrides for Cart */
@media (max-width: 480px) {
  .cart-panel {
    width: 100%;
  }
}

/* ==========================================
   REBUILT TWO-COLUMN CALCULATOR STYLES
   ========================================== */
.calculator-layout-container {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.calculator-settings-panel {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 4px;
}

.rank-config-block {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.block-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 2rem;
  position: relative;
}

.block-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-light);
  border: 1px solid var(--blue-secondary);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px var(--blue-glow);
  margin-bottom: 0.5rem;
}

.block-header h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--gold-secondary);
  letter-spacing: 1.5px;
}

.block-header p {
  font-size: 0.85rem;
  color: #6a7c8e;
  margin: 2px 0 0;
}

/* Tier Selector Row */
.tier-select-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.8rem;
  background: rgba(1, 10, 19, 0.45);
  padding: 1.2rem;
  border: 1px solid rgba(120, 90, 40, 0.25);
  border-radius: 4px;
  justify-content: center;
}

.tier-btn[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(100%);
  border-color: rgba(120, 90, 40, 0.15) !important;
}

.tier-btn {
  background: rgba(2, 6, 12, 0.6);
  border: 1px solid rgba(120, 90, 40, 0.3);
  border-radius: 4px;
  width: 110px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 6px;
  outline: none;
  position: relative;
  overflow: hidden;
}

.tier-btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 75%;
  height: 75%;
  object-fit: contain;
  filter: grayscale(90%) opacity(0.15);
  transition: var(--transition-smooth);
  z-index: 1;
}

.tier-btn-text {
  position: relative;
  z-index: 2;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold-secondary);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9), 0 0 2px rgba(0, 0, 0, 1);
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
}

.tier-btn:hover {
  border-color: var(--gold-primary);
  background: rgba(200, 155, 60, 0.08);
}

.tier-btn:hover img {
  filter: grayscale(20%) opacity(0.35);
  transform: translate(-50%, -50%) scale(1.08);
}

.tier-btn.active {
  border-color: var(--blue-light);
  background: rgba(0, 229, 255, 0.08);
  box-shadow: 0 0 10px var(--blue-glow);
}

.tier-btn.active img {
  filter: grayscale(0%) opacity(0.45);
  transform: translate(-50%, -50%) scale(1.12);
}

.tier-btn.active .tier-btn-text {
  color: var(--blue-light);
  text-shadow: 0 0 8px var(--blue-glow), 0 1px 4px rgba(0, 0, 0, 0.9);
}

/* Division Selector Row */
.division-select-row {
  display: flex;
  gap: 12px;
  margin-bottom: 2rem;
  justify-content: flex-start;
}

.div-btn {
  flex: 1;
  max-width: 100px;
  background: rgba(2, 6, 12, 0.65);
  border: 1px solid var(--gold-dark);
  color: var(--gold-secondary);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 0;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  outline: none;
}

.div-btn:hover {
  border-color: var(--gold-primary);
  color: #fff;
  background: rgba(200, 155, 60, 0.05);
}

.div-btn.active {
  border-color: var(--blue-light);
  color: var(--bg-darkest);
  background: linear-gradient(135deg, var(--blue-secondary) 0%, var(--blue-light) 100%);
  box-shadow: 0 0 10px var(--blue-glow);
}

.dropdowns-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.dropdowns-row .select-field {
  flex: 1;
  min-width: 140px;
  text-align: left;
}

.select-field label {
  display: block;
  font-size: 0.72rem;
  color: var(--gold-secondary);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Sticky Checkout Card Column */
.calculator-checkout-column {
  position: sticky;
  top: 110px;
  z-index: 10;
}

.checkout-sticky-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  padding: 2.2rem 1.8rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px solid var(--gold-dark);
  padding-bottom: 0.8rem;
}

.checkout-header h3 {
  font-size: 1.15rem;
  color: var(--gold-secondary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.las-badge {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--blue-light);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 6px rgba(0, 229, 255, 0.4);
}

/* Mode toggler tab */
.checkout-mode-toggle {
  display: flex;
  background: rgba(2, 6, 12, 0.65);
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  padding: 3px;
}

.mode-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--gold-secondary);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.6rem 0.3rem;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition-fast);
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.mode-tab:hover {
  color: #fff;
}

.mode-tab.active {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  color: var(--bg-darkest);
  box-shadow: 0 0 10px rgba(200, 155, 60, 0.2);
}

/* Rank preview flow */
.checkout-rank-flow {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(1, 10, 19, 0.45);
  padding: 1.2rem 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(120, 90, 40, 0.18);
}

.rank-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 90px;
}

.rank-flow-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(200, 155, 60, 0.25));
  transition: transform 0.3s ease;
}

.checkout-rank-flow:hover .rank-flow-img {
  transform: scale(1.06);
}

.rank-flow-item span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.rank-flow-arrow {
  font-size: 1.4rem;
  color: var(--gold-primary);
  animation: bounce-horizontal 2s infinite ease-in-out;
}

.checkout-estimated-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #a0aab5;
  background: rgba(0, 163, 196, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.12);
  padding: 0.8rem 1rem;
  border-radius: 4px;
}

.checkout-estimated-time strong {
  color: var(--blue-light);
  text-shadow: 0 0 5px rgba(0, 229, 255, 0.2);
}

/* Extras toggler row styles */
.checkout-extras-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px dashed rgba(120, 90, 40, 0.25);
  padding-top: 1.2rem;
}

.extras-sub-title {
  font-size: 0.8rem;
  color: var(--gold-secondary);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkout-extra-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(2, 6, 12, 0.4);
  border: 1px solid rgba(120, 90, 40, 0.15);
  padding: 0.7rem 1rem;
  border-radius: 4px;
  transition: var(--transition-fast);
  cursor: pointer;
  user-select: none;
}

.checkout-extra-row:hover {
  border-color: rgba(200, 155, 60, 0.35);
  background: rgba(200, 155, 60, 0.04);
}

.checkout-extra-row.active {
  border-color: var(--blue-light);
  background: rgba(0, 229, 255, 0.05);
}

.extra-text-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.extra-title-txt {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.extra-price-tag {
  font-size: 0.72rem;
  color: var(--blue-light);
  font-weight: 500;
}

/* Switch container layout */
.switch-container {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
  flex-shrink: 0;
  pointer-events: none; /* Let parent row handle clicks */
}

.switch-container input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(2, 6, 12, 0.85);
  border: 1px solid var(--gold-dark);
  transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 20px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 3px;
  bottom: 3px;
  background-color: var(--gold-primary);
  transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--gold-glow);
}

.checkout-extra-row.active .switch-slider {
  background-color: rgba(0, 90, 130, 0.45);
  border-color: var(--blue-light);
}

.checkout-extra-row.active .switch-slider:before {
  transform: translateX(18px);
  background-color: var(--blue-light);
  box-shadow: 0 0 8px var(--blue-light);
}

/* First purchase discount applied notice */
.checkout-discount-applied {
  display: none; /* Controlled by JS based on isFirstPurchaseEligible() */
  justify-content: space-between;
  align-items: center;
  background: rgba(200, 155, 60, 0.08);
  border: 1px dashed var(--gold-primary);
  padding: 0.6rem 1rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  font-family: 'Chakra Petch', sans-serif;
  color: var(--gold-secondary);
  animation: pulse-border 2s infinite alternate;
}

.checkout-discount-applied span:first-child {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.checkout-discount-applied span:last-child {
  font-weight: 800;
  color: var(--gold-primary);
}

@keyframes pulse-border {
  from { border-color: rgba(200, 155, 60, 0.3); }
  to { border-color: var(--gold-primary); }
}

/* Pricing total box */
.checkout-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1.5px solid var(--gold-dark);
  padding-top: 1.2rem;
  margin-top: 0.5rem;
}

.pricing-lbl {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-secondary);
  text-transform: uppercase;
}

.pricing-numbers {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.pricing-crossed {
  font-size: 0.85rem;
  color: #6a7c8e;
  text-decoration: line-through;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
}

.pricing-amount {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  color: var(--blue-light);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.35);
  font-family: 'Chakra Petch', sans-serif;
}

.btn-checkout-action {
  width: 100% !important;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  box-shadow: 0 5px 15px rgba(200, 155, 60, 0.15);
}

.checkout-disclaimer {
  font-size: 0.7rem;
  color: #6a7c8e;
  text-align: center;
  margin-top: 5px;
  line-height: 1.3;
}

/* Responsive adjust for custom calculator layout */
@media (max-width: 992px) {
  .calculator-layout-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .calculator-checkout-column {
    position: static;
  }
}

@media (max-width: 600px) {
  .calculator-settings-panel {
    padding: 1.8rem 1.2rem;
  }
  .tier-select-row {
    padding: 0.8rem;
    gap: 6px;
  }
  .tier-btn {
    width: 80px;
    height: 48px;
    padding: 4px;
  }
  .tier-btn-text {
    font-size: 0.7rem;
  }
  .div-btn {
    max-width: 70px;
    font-size: 0.8rem;
    padding: 0.5rem 0;
  }
  .dropdowns-row .select-field {
    min-width: 100%;
  }
}

/* ==========================================
   VALORANT ANNOUNCEMENT SECTION
   ========================================== */
.val-announcement {
  background: linear-gradient(135deg, #0b141a 0%, #0f1e26 100%);
  border: 1px solid rgba(255, 70, 85, 0.3) !important;
  margin: 4rem auto;
  max-width: 1200px;
  width: 90%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(255, 70, 85, 0.05);
}

.val-decor-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff4655 0%, #ff7a85 50%, #ff4655 100%);
}

.val-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 4rem;
}

.val-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.val-badge {
  background: rgba(255, 70, 85, 0.1);
  border: 1px solid #ff4655;
  color: #ff4655;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: 'Chakra Petch', sans-serif;
  box-shadow: 0 0 10px rgba(255, 70, 85, 0.2);
}

.val-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.val-title .text-red {
  color: #ff4655;
  text-shadow: 0 0 15px rgba(255, 70, 85, 0.4);
}

.val-desc {
  font-size: 1.05rem;
  color: #a4b4c3;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.val-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  width: 100%;
  margin-bottom: 2.5rem;
}

.val-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.val-feat-item:hover {
  background: rgba(255, 70, 85, 0.03);
  border-color: rgba(255, 70, 85, 0.2);
  transform: translateY(-2px);
}

.val-feat-icon {
  width: 20px;
  height: 20px;
  color: #ff4655;
  flex-shrink: 0;
}

.val-feat-item span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #f0e6d2;
}

.btn-val-notify {
  background: linear-gradient(135deg, #bd3944 0%, #ff4655 50%, #bd3944 100%);
  border: 1px solid #ff7a85;
  color: #fff;
  font-size: 0.95rem;
  padding: 1.1rem 2.2rem;
  box-shadow: 0 10px 20px rgba(255, 70, 85, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  max-width: 420px;
}

.btn-val-notify:hover {
  background: linear-gradient(135deg, #ff4655 0%, #ff7a85 50%, #ff4655 100%);
  box-shadow: 0 0 30px rgba(255, 70, 85, 0.5);
  transform: translateY(-3px) scale(1.02);
  border-color: #fff;
}

.val-image-block {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.val-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.val-announcement:hover .val-art-img {
  transform: scale(1.05) rotate(1deg);
}

.val-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, transparent 50%, #0b141a 100%);
  pointer-events: none;
}

/* Responsive Valorant section */
@media (max-width: 992px) {
  .val-container {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 30px;
  }
  
  .val-image-block {
    min-height: 300px;
    order: -1;
  }
  
  .val-img-overlay {
    background: linear-gradient(180deg, transparent 50%, #0b141a 100%);
  }
  
  .val-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .val-container {
    padding: 2rem 1.2rem;
  }
  .val-title {
    font-size: 1.8rem;
  }
  .val-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

