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

:root {
  --bg-dark: #030712;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-card-hover: rgba(31, 41, 55, 0.85);
  --border-glow: rgba(16, 185, 129, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.08);
  
  --emerald-main: #10b981;
  --emerald-glow: #34d399;
  --cyan-accent: #06b6d4;
  --purple-accent: #8b5cf6;
  
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  --shadow-emerald: 0 10px 30px -10px rgba(16, 185, 129, 0.3);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-full: 9999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

h1, h2, h3, h4, .brand, .btn-title, .hero-tag {
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 20% 15%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 65%, rgba(6, 182, 212, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
}

/* HEADER GLASSMORPHISM */
header.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8%;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--emerald-main), var(--cyan-accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #030712;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: var(--shadow-emerald);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

nav a:hover {
  color: var(--emerald-glow);
}

a.btn-header-cta {
  background: linear-gradient(135deg, var(--emerald-main), var(--cyan-accent));
  color: #030712;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-emerald);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

a.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.6);
}

/* HERO SECTION */
section.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding: 80px 8%;
  min-height: 85vh;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--border-glow);
  color: var(--emerald-glow);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-tag span.pulse {
  width: 8px;
  height: 8px;
  background: var(--emerald-glow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald-glow);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

h1.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

span.highlight {
  background: linear-gradient(135deg, var(--emerald-glow), var(--cyan-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
}

/* DOWNLOAD CARDS GRID */
.download-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.btn-card {
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
}

.btn-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.btn-card.highlight {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.15));
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-emerald);
}

.btn-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.btn-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* HERO MOCKUP */
.hero-mockup-wrap {
  position: relative;
}

.mockup-container {
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), var(--shadow-emerald);
  overflow: hidden;
}

.mockup-header {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  background: rgba(3, 7, 18, 0.9);
  border-bottom: 1px solid var(--border-subtle);
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.mockup-body {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030712;
}

.mockup-body img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
}

/* FEATURES SECTION */
section.features {
  padding: 100px 8%;
  border-top: 1px solid var(--border-subtle);
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

.feat-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glow);
}

.feat-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* PRICING SECTION */
section.pricing-section {
  padding: 90px 8%;
  border-top: 1px solid var(--border-subtle);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
}

.price-card.highlighted {
  border: 2px solid var(--emerald-main);
  box-shadow: var(--shadow-emerald);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, rgba(17, 24, 39, 0.8) 100%);
}

.price-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, var(--emerald-main), var(--cyan-accent));
  color: #030712;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.price-card strong {
  font-size: 1.6rem;
  color: var(--emerald-glow);
  margin-bottom: 20px;
  display: block;
}

.price-card ul {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-card ul li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card ul li::before {
  content: "✓";
  color: var(--emerald-glow);
  font-weight: bold;
}

.button {
  display: inline-block;
  text-align: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--emerald-main), var(--cyan-accent));
  color: #030712;
  font-weight: 800;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.25s ease;
}

.button:hover {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  transform: translateY(-2px);
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--border-glow);
  color: var(--text-main);
}

.button.secondary:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-glow);
}

/* PAGES COMMON */
.page {
  padding: 80px 8%;
  min-height: 80vh;
}

.page-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.eyebrow {
  color: var(--emerald-glow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.page-head h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.page-head p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.security-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.security-list article {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.security-list article h2 {
  font-size: 1.25rem;
  color: var(--emerald-glow);
  margin-bottom: 10px;
}

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

.contact-grid article {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-grid article h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.contact-grid article p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 8%;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-dim);
  font-size: 0.9rem;
  background: rgba(3, 7, 18, 0.95);
}

@media (max-width: 900px) {
  header.site-header {
    flex-direction: column;
    gap: 16px;
    padding: 14px 5%;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  nav a {
    font-size: 0.88rem;
  }

  section.hero {
    grid-template-columns: 1fr;
    padding: 40px 5%;
    gap: 40px;
  }

  h1.hero-title {
    font-size: 2.3rem;
  }

  .grid-features, .pricing-grid, .security-list, .contact-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 24px 5%;
  }
}

/* SISTEMA PROPIETARIO DE AUTENTICACIÓN SENTINEL MARKET */
.ea-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none !important; /* OCULTO POR DEFECTO */
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ea-modal-overlay.active {
  display: flex !important;
  opacity: 1 !important;
}

.sm-auth-card {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 40px rgba(16, 185, 129, 0.15);
  text-align: center;
  box-sizing: border-box;
  color: #ffffff;
}

.sm-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.sm-brand-badge .icon {
  font-size: 1.2rem;
}

.sm-brand-badge .name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--emerald-glow);
}

.sm-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.sm-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.sm-tab-switcher {
  display: flex;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}

.sm-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sm-tab-btn.active {
  background: rgba(16, 185, 129, 0.2);
  color: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.2);
}

.sm-social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.sm-social-btn {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sm-social-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--emerald-glow);
  transform: translateY(-2px);
}

.sm-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sm-divider::before, .sm-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.sm-divider span {
  padding: 0 12px;
}

.sm-input-group {
  text-align: left;
  margin-bottom: 20px;
}

.sm-input-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.sm-input-field {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.sm-input-field:focus {
  border-color: var(--emerald-glow);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.sm-checkbox-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.sm-checkbox-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.sm-checkbox-row input[type="checkbox"] {
  accent-color: var(--emerald-glow);
  width: 16px;
  height: 16px;
}

.sm-forgot-link {
  color: var(--cyan-glow);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.sm-forgot-link:hover {
  color: #67e8f9;
  text-decoration: underline;
}

.sm-btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
  margin-bottom: 24px;
}

.sm-btn-primary:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
}

.sm-license-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.sm-license-link {
  color: #a7f3d0;
  font-size: 0.88rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sm-license-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  color: #0d111d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
  letter-spacing: -1px;
}

.ea-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.3;
}

/* FILA DE PROVEEDORES SOCIALES */
.social-providers-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  font-size: 1.2rem;
  text-decoration: none;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.social-btn.google { background: #ffffff; color: #4285f4; }
.social-btn.facebook { background: #1877f2; color: #ffffff; }
.social-btn.apple { background: #ffffff; color: #000000; }
.social-btn.x { background: #000000; color: #ffffff; border: 1px solid #333; }
.social-btn.xbox { background: #107c10; color: #ffffff; }
.social-btn.playstation { background: #003791; color: #ffffff; }

/* SEPARADOR */
.ea-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
}

.ea-divider::before, .ea-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.ea-divider-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #8a8f9d;
}

/* FORMULARIO */
.ea-form-group {
  text-align: left;
  margin-bottom: 20px;
}

.ea-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #c0c5d5;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ea-input {
  width: 100%;
  height: 48px;
  background: #0c0f1a;
  border: 1px solid #282f45;
  border-radius: 10px;
  padding: 0 16px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.ea-input:focus {
  border-color: #2662f6;
  box-shadow: 0 0 12px rgba(38, 98, 246, 0.3);
}

.ea-input::placeholder {
  color: #555c70;
}

/* CHECKBOX NO CERRAR SESIÓN */
.ea-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  text-align: left;
  font-size: 0.9rem;
  color: #d0d5e5;
}

.ea-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2662f6;
  cursor: pointer;
}

/* BOTÓN PRINCIPAL */
.btn-ea-primary {
  width: 100%;
  height: 48px;
  background: #2662f6;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
  box-shadow: 0 4px 15px rgba(38, 98, 246, 0.4);
}

.btn-ea-primary:hover {
  background: #1b53e0;
  transform: translateY(-1px);
}

/* ENLACES DE AYUDA */
.ea-links {
  margin: 22px 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ea-link {
  color: #528bfd;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.ea-link:hover {
  color: #79a6ff;
  text-decoration: underline;
}

/* BOTÓN SECUNDARIO OUTLINE (CREAR CUENTA) */
.btn-ea-secondary {
  width: 100%;
  height: 48px;
  background: transparent;
  border: 1.5px solid #2662f6;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}

.btn-ea-secondary:hover {
  background: rgba(38, 98, 246, 0.12);
  border-color: #4a7dff;
}

/* ESTADOS DINÁMICOS DE TARJETAS DE DESCARGA */
.btn-card.locked-card {
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 0.85;
}

.btn-card.locked-card:hover {
  border-color: #2662f6;
  box-shadow: 0 0 20px rgba(38, 98, 246, 0.3);
}

.btn-card.unlocked-card {
  border-color: var(--emerald-glow) !important;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2)) !important;
  box-shadow: var(--shadow-emerald) !important;
}

.badge-status {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  margin-left: 8px;
  text-transform: uppercase;
}

.badge-status.locked {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.badge-status.unlocked {
  background: rgba(16, 185, 129, 0.25);
  color: var(--emerald-glow);
  border: 1px solid var(--emerald-glow);
}


