@import url(https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700;800&family=Orbitron:wght@400;600;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700;800&family=Orbitron:wght@400;600;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap);
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #121212;
  --bg-tertiary: #1a1a1a;
  --bg-card: #161616;
  --bg-input: #1e1e1e;
  --bg-hover: #252525;
  
  --orange-primary: #ff6b2c;
  --orange-secondary: #ff8c52;
  --orange-dark: #e55a1f;
  --orange-glow: rgba(255, 107, 44, 0.3);
  --orange-light: rgba(255, 107, 44, 0.1);
  
  --text-primary: #e8e8e8;
  --text-secondary: #b0b0b0;
  --text-tertiary: #808080;
  --text-muted: #606060;
  
  --border-primary: #2a2a2a;
  --border-secondary: #353535;
  --border-focus: var(--orange-primary);
  
  --success: #00d68f;
  --error: #ff3860;
  --warning: #ffaa00;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 20px var(--orange-glow);
  
  --glass-bg: rgba(22, 22, 22, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

.registro-container {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #0a0a0a;
  background: var(--bg-primary);
  color: #e8e8e8;
  color: var(--text-primary);
}

.registro-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.registro-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255, 107, 44, 0.08) 0%,
    transparent 50%
  ),
  radial-gradient(
    circle at 80% 80%,
    rgba(255, 107, 44, 0.05) 0%,
    transparent 50%
  );
  animation: registroGradientShift 15s ease infinite;
}

@keyframes registroGradientShift {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.registro-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 107, 44, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 44, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.registro-bg-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.registro-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: registroFloat 20s ease-in-out infinite;
}

@keyframes registroFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(20px, -20px);
  }
  50% {
    transform: translate(-20px, 20px);
  }
  75% {
    transform: translate(20px, 10px);
  }
}

.registro-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ff6b2c, transparent);
  background: radial-gradient(circle, var(--orange-primary), transparent);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.registro-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ff8c52, transparent);
  background: radial-gradient(circle, var(--orange-secondary), transparent);
  bottom: -150px;
  right: -150px;
  animation-delay: 7s;
}

.registro-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ff6b2c, transparent);
  background: radial-gradient(circle, var(--orange-primary), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

.registro-content {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.registro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  max-width: 1400px;
  width: 100%;
  align-items: center;
}

.registro-welcome {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem;
  animation: registroSlideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.registro-brand {
  position: relative;
}

.registro-brand-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.registro-logo-container {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.registro-brand-logo,
.registro-brand-logo-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border-radius: var(--radius-lg);
  border: 2px solid #2a2a2a;
  border: 2px solid var(--border-primary);
  background: #121212;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.registro-logo-pulse {

  inset: -4px;
  border-radius: 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(45deg, #ff6b2c, #ff8c52);
  background: linear-gradient(45deg, var(--orange-primary), var(--orange-secondary));
  opacity: 0.3;
  filter: blur(12px);
  animation: registroPulse 3s ease-in-out infinite;
}

@keyframes registroPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

.registro-brand-text {
  flex: 1 1;
}

.registro-brand-title {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b2c, #ff8c52);
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.registro-brand-subtitle {
  color: #b0b0b0;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
}

.registro-platforms {
  background: rgba(22, 22, 22, 0.7);
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.registro-platforms-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #b0b0b0;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.registro-platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.registro-platform-item {
  position: relative;
  aspect-ratio: 16/9;
  background: #161616;
  background: var(--bg-card);
  border: 1px solid #2a2a2a;
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.registro-platform-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.1), transparent);
  background: linear-gradient(135deg, var(--orange-light), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  transition: opacity var(--transition-normal);
}

.registro-platform-item:hover {
  border-color: #ff6b2c;
  border-color: var(--orange-primary);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 107, 44, 0.3);
  box-shadow: var(--shadow-glow);
}

.registro-platform-item:hover::before {
  opacity: 1;
}

.registro-platform-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.3) brightness(0.9);
  transition: filter 0.3s ease;
  transition: filter var(--transition-normal);
  position: relative;
  z-index: 1;
}

.registro-platform-item:hover img {
  filter: grayscale(0) brightness(1);
}

.registro-platform-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: #2ccdff;
  color: #0a0a0a;
  color: var(--bg-primary);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.registro-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.registro-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(22, 22, 22, 0.7);
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  transition: all var(--transition-normal);
}

.registro-feature:hover {
  border-color: #353535;
  border-color: var(--border-secondary);
  transform: translateX(8px);
}

.registro-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff6b2c, #ff8c52);
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
  border-radius: 12px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.registro-feature-icon svg {
  color: #0a0a0a;
  color: var(--bg-primary);
}

.registro-feature-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #e8e8e8;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.registro-feature-content p {
  font-size: 0.875rem;
  color: #b0b0b0;
  color: var(--text-secondary);
}

.registro-trust {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  padding: 2rem;
  background: rgba(22, 22, 22, 0.7);
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.registro-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.registro-trust-item svg {
  color: #ff6b2c;
  color: var(--orange-primary);
}

.registro-trust-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #b0b0b0;
  color: var(--text-secondary);
}

.registro-card {
  background: rgba(22, 22, 22, 0.7);
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  border-radius: var(--radius-xl);
  padding: 3rem;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: registroSlideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.registro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b2c, #ff8c52);
  background: linear-gradient(90deg, var(--orange-primary), var(--orange-secondary));
}

.registro-mobile-header {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #2a2a2a;
  border-bottom: 1px solid var(--border-primary);
}

.registro-mobile-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  position: relative;
}

.registro-mobile-logo-image,
.registro-mobile-logo-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border-radius: var(--radius-md);
  border: 2px solid #2a2a2a;
  border: 2px solid var(--border-primary);
  background: #121212;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.registro-mobile-title {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b2c, #ff8c52);
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.registro-mobile-subtitle {
  font-size: 0.875rem;
  color: #b0b0b0;
  color: var(--text-secondary);
}

.registro-card-header {
  margin-bottom: 2rem;
}

.registro-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #e8e8e8;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.registro-card-description {
  font-size: 0.9375rem;
  color: #b0b0b0;
  color: var(--text-secondary);
}

.registro-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.registro-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.registro-field-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e8e8e8;
  color: var(--text-primary);
}

.registro-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.registro-field-icon-left {
  position: absolute;
  left: 1rem;
  color: #808080;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: color 0.2s ease;
  transition: color var(--transition-fast);
}

.registro-field-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: #1e1e1e;
  background: var(--bg-input);
  border: 2px solid #2a2a2a;
  border: 2px solid var(--border-primary);
  border-radius: 12px;
  border-radius: var(--radius-md);
  color: #e8e8e8;
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all 0.2s ease;
  transition: all var(--transition-fast);
  outline: none;
}

.registro-field-input::placeholder {
  color: #606060;
  color: var(--text-muted);
}

.registro-field-input:hover {
  border-color: #353535;
  border-color: var(--border-secondary);
}

.registro-field-input:focus {
  border-color: #ff6b2c;
  border-color: var(--orange-primary);
  background: #121212;
  background: var(--bg-secondary);
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.1);
  box-shadow: 0 0 0 4px var(--orange-light);
}

.registro-field-wrapper:focus-within .registro-field-icon-left {
  color: #ff6b2c;
  color: var(--orange-primary);
}

.registro-field-input.error {
  border-color: #ff3860;
  border-color: var(--error);
  animation: registroShake 0.4s ease;
}

@keyframes registroShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-10px); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(-10px); }
  80% { transform: translateX(10px); }
}

.registro-field-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.registro-field-hint {
  font-size: 0.75rem;
  color: #606060;
  color: var(--text-muted);
  margin-top: -0.25rem;
}

.registro-field-phone {
  display: flex;
  gap: 0.5rem;
}

.registro-phone-selector {
  position: relative;
  flex-shrink: 0;
}

.registro-phone-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: #1e1e1e;
  background: var(--bg-input);
  border: 2px solid #2a2a2a;
  border: 2px solid var(--border-primary);
  border-radius: 12px;
  border-radius: var(--radius-md);
  color: #e8e8e8;
  color: var(--text-primary);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  transition: all var(--transition-fast);
  outline: none;
  white-space: nowrap;
}

.registro-phone-toggle:hover {
  border-color: #353535;
  border-color: var(--border-secondary);
}

.registro-phone-toggle:focus {
  border-color: #ff6b2c;
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.1);
  box-shadow: 0 0 0 4px var(--orange-light);
}

.registro-phone-flag {
  font-size: 1.25rem;
}

.registro-phone-code {
  font-weight: 600;
}

.registro-phone-toggle svg {
  width: 16px;
  height: 16px;
}

.registro-phone-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: 280px;
  background: #161616;
  background: var(--bg-card);
  border: 1px solid #353535;
  border: 1px solid var(--border-secondary);
  border-radius: 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  animation: registroDropdownSlide 0.3s ease;
}

@keyframes registroDropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.registro-phone-dropdown-scroll {
  max-height: 300px;
  overflow-y: auto;
  padding: 0.5rem;
}

.registro-phone-dropdown-scroll::-webkit-scrollbar {
  width: 8px;
}

.registro-phone-dropdown-scroll::-webkit-scrollbar-track {
  background: #1e1e1e;
  background: var(--bg-input);
  border-radius: 4px;
}

.registro-phone-dropdown-scroll::-webkit-scrollbar-thumb {
  background: #353535;
  background: var(--border-secondary);
  border-radius: 4px;
}

.registro-phone-dropdown-scroll::-webkit-scrollbar-thumb:hover {
  background: #ff6b2c;
  background: var(--orange-primary);
}

.registro-phone-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  border-radius: var(--radius-sm);
  color: #e8e8e8;
  color: var(--text-primary);
  font-size: 0.875rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: all 0.2s ease;
  transition: all var(--transition-fast);
}

.registro-phone-option:hover {
  background: #252525;
  background: var(--bg-hover);
}

.registro-phone-option.selected {
  background: rgba(255, 107, 44, 0.1);
  background: var(--orange-light);
  color: #ff6b2c;
  color: var(--orange-primary);
}

.registro-phone-option-flag {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.registro-phone-option-name {
  flex: 1 1;
  font-weight: 500;
}

.registro-phone-option-code {
  font-weight: 600;
  color: #808080;
  color: var(--text-tertiary);
}

.registro-phone-input {
  flex: 1 1;
}

.registro-field-password {
  position: relative;
  display: flex;
  align-items: center;
}

.registro-field-toggle {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: #808080;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  transition: color var(--transition-fast);
  border-radius: 8px;
  border-radius: var(--radius-sm);
}

.registro-field-toggle:hover {
  color: #ff6b2c;
  color: var(--orange-primary);
  background: rgba(255, 107, 44, 0.1);
  background: var(--orange-light);
}

.registro-checkbox {
  margin: 0.5rem 0;
}

.registro-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}

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

.registro-checkbox-custom {
  position: relative;
  width: 20px;
  height: 20px;
  background: #1e1e1e;
  background: var(--bg-input);
  border: 2px solid #2a2a2a;
  border: 2px solid var(--border-primary);
  border-radius: 4px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.registro-checkbox-custom svg {
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
  transition: all var(--transition-fast);
  color: #0a0a0a;
  color: var(--bg-primary);
}

.registro-checkbox-input:checked + .registro-checkbox-custom {
  background: linear-gradient(135deg, #ff6b2c, #ff8c52);
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
  border-color: #ff6b2c;
  border-color: var(--orange-primary);
}

.registro-checkbox-input:checked + .registro-checkbox-custom svg {
  opacity: 1;
  transform: scale(1);
}

.registro-checkbox-input:focus + .registro-checkbox-custom {
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.1);
  box-shadow: 0 0 0 4px var(--orange-light);
}

.registro-checkbox-text {
  font-size: 0.875rem;
  color: #b0b0b0;
  color: var(--text-secondary);
  line-height: 1.5;
}

.registro-link {
  background: none;
  border: none;
  color: #ff6b2c;
  color: var(--orange-primary);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s ease;
  transition: color var(--transition-fast);
}

.registro-link:hover {
  color: #ff8c52;
  color: var(--orange-secondary);
  text-decoration: underline;
}

.registro-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  animation: registroSlideDown 0.3s ease;
}

@keyframes registroSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.registro-alert svg {
  flex-shrink: 0;
}

.registro-alert.error {
  background: rgba(255, 56, 96, 0.1);
  border: 1px solid rgba(255, 56, 96, 0.3);
  color: #ff3860;
  color: var(--error);
}

.registro-alert.success {
  background: rgba(0, 214, 143, 0.1);
  border: 1px solid rgba(0, 214, 143, 0.3);
  color: #00d68f;
  color: var(--success);
}

.registro-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #ff6b2c, #ff8c52);
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
  border: none;
  border-radius: 12px;
  border-radius: var(--radius-md);
  color: #0a0a0a;
  color: var(--bg-primary);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(255, 107, 44, 0.3);
  box-shadow: 0 4px 12px var(--orange-glow);
  position: relative;
  overflow: hidden;
}

.registro-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff8c52, #e55a1f);
  background: linear-gradient(135deg, var(--orange-secondary), var(--orange-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
  transition: opacity var(--transition-normal);
}

.registro-submit:hover:not(:disabled)::before {
  opacity: 1;
}

.registro-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 44, 0.3);
  box-shadow: 0 6px 20px var(--orange-glow);
}

.registro-submit:active:not(:disabled) {
  transform: translateY(0);
}

.registro-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.registro-submit svg,
.registro-submit span {
  position: relative;
  z-index: 1;
}

.registro-submit.loading {
  pointer-events: none;
}

.registro-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: registroSpin 0.8s linear infinite;
}

@keyframes registroSpin {
  to { transform: rotate(360deg); }
}

.registro-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.registro-divider span:first-child,
.registro-divider span:last-child {
  flex: 1 1;
  height: 1px;
  background: #2a2a2a;
  background: var(--border-primary);
}

.registro-divider span:nth-child(2) {
  color: #808080;
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

.registro-back {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #1e1e1e;
  background: var(--bg-input);
  border: 2px solid #2a2a2a;
  border: 2px solid var(--border-primary);
  border-radius: 12px;
  border-radius: var(--radius-md);
  color: #e8e8e8;
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  transition: all var(--transition-normal);
}

.registro-back:hover {
  border-color: #ff6b2c;
  border-color: var(--orange-primary);
  background: rgba(255, 107, 44, 0.1);
  background: var(--orange-light);
  color: #ff6b2c;
  color: var(--orange-primary);
  transform: translateY(-2px);
}

.registro-mobile-platforms {
  display: none;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
  border-top: 1px solid var(--border-primary);
}

.registro-mobile-platforms-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #808080;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 1rem;
}

.registro-mobile-platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.registro-mobile-platforms-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.5) brightness(0.8);
  opacity: 0.6;
  transition: all 0.3s ease;
  transition: all var(--transition-normal);
  border-radius: 8px;
  border-radius: var(--radius-sm);
}

.registro-footer {
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid #2a2a2a;
  border-top: 1px solid var(--border-primary);
  background: rgba(22, 22, 22, 0.7);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.registro-footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.registro-footer-brand {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e8e8e8;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.registro-footer-text {
  font-size: 0.75rem;
  color: #808080;
  color: var(--text-tertiary);
}

@keyframes registroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .registro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .registro-welcome {
    display: none;
  }

  .registro-mobile-header {
    display: flex;
  }

  .registro-mobile-platforms {
    display: block;
  }

  .registro-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .registro-content {
    padding: 1rem;
  }

  .registro-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border-radius: var(--radius-lg);
  }

  .registro-card-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .registro-field-input {
    font-size: 16px;
  }

  .registro-phone-dropdown {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

*:focus-visible {
  outline: 2px solid #ff6b2c;
  outline: 2px solid var(--orange-primary);
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  :root {
    --border-primary: #404040;
    --border-secondary: #505050;
  }
}

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #121212;
  --bg-tertiary: #1a1a1a;
  --bg-card: #161616;
  --bg-input: #1e1e1e;
  --bg-hover: #252525;
  
  --orange-primary: #0fff;
  --orange-secondary: #0fff;
  --orange-dark: #0fff;
  --orange-glow: rgba(255, 107, 44, 0.3);
  --orange-light: rgba(255, 107, 44, 0.1);
  
  --text-primary: #e8e8e8;
  --text-secondary: #b0b0b0;
  --text-tertiary: #808080;
  --text-muted: #606060;
  
  --border-primary: #2a2a2a;
  --border-secondary: #353535;
  --border-focus: var(--orange-primary);
  
  --success: #00d68f;
  --error: #ff3860;
  --warning: #ffaa00;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 20px var(--orange-glow);
  
  --glass-bg: rgba(22, 22, 22, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #0a0a0a;
  background: var(--bg-primary);
  color: #e8e8e8;
  color: var(--text-primary);
  overflow-x: hidden;
}

.login-container {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.login-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.login-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255, 107, 44, 0.08) 0%,
    transparent 50%
  ),
  radial-gradient(
    circle at 80% 80%,
    rgba(255, 107, 44, 0.05) 0%,
    transparent 50%
  );
  animation: loginGradientShift 15s ease infinite;
}

@keyframes loginGradientShift {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.login-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 107, 44, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 44, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.login-bg-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.login-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: loginFloat 20s ease-in-out infinite;
}

@keyframes loginFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(20px, -20px);
  }
  50% {
    transform: translate(-20px, 20px);
  }
  75% {
    transform: translate(20px, 10px);
  }
}

.login-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0fff, transparent);
  background: radial-gradient(circle, var(--orange-primary), transparent);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.login-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #0fff, transparent);
  background: radial-gradient(circle, var(--orange-secondary), transparent);
  bottom: -150px;
  right: -150px;
  animation-delay: 7s;
}

.login-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #0fff, transparent);
  background: radial-gradient(circle, var(--orange-primary), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

.login-content {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  max-width: 1400px;
  width: 100%;
  align-items: center;
}

.login-welcome {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem;
  animation: loginSlideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.login-brand {
  position: relative;
}

.login-brand-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.login-logo-container {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.login-brand-logo,
.login-brand-logo-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border-radius: var(--radius-lg);
  border: 2px solid #2a2a2a;
  border: 2px solid var(--border-primary);
  background: #121212;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.login-logo-pulse {

  inset: -4px;
  border-radius: 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(45deg, #0fff, #0fff);
  background: linear-gradient(45deg, var(--orange-primary), var(--orange-secondary));
  opacity: 0.3;
  filter: blur(12px);
  animation: loginPulse 3s ease-in-out infinite;
}

@keyframes loginPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

.login-brand-text {
  flex: 1 1;
}

.login-brand-title {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00fff0, #ff5252);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  animation: loginTitleShimmer 3s ease-in-out infinite;
}

@keyframes loginTitleShimmer {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.login-brand-subtitle {
  color: #b0b0b0;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
}

.login-platforms {
  background: rgba(22, 22, 22, 0.7);
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.login-platforms-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #b0b0b0;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.login-platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.login-platform-item {
  position: relative;
  aspect-ratio: 16/9;
  background: #161616;
  background: var(--bg-card);
  border: 1px solid #2a2a2a;
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.login-platform-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.1), transparent);
  background: linear-gradient(135deg, var(--orange-light), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  transition: opacity var(--transition-normal);
}

.login-platform-item:hover {
  border-color: #0fff;
  border-color: var(--orange-primary);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 107, 44, 0.3);
  box-shadow: var(--shadow-glow);
}

.login-platform-item:hover::before {
  opacity: 1;
}

.login-platform-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.3) brightness(0.9);
  transition: filter 0.3s ease;
  transition: filter var(--transition-normal);
  position: relative;
  z-index: 1;
}

.login-platform-item:hover img {
  filter: grayscale(0) brightness(1);
}

.login-platform-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: #2ccdff;
  color: #0a0a0a;
  color: var(--bg-primary);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  animation: loginBadgePulse 2s ease-in-out infinite;
}

@keyframes loginBadgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  } 
}

.login-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(22, 22, 22, 0.7);
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  transition: all var(--transition-normal);
}

.login-feature:hover {
  border-color: #353535;
  border-color: var(--border-secondary);
  transform: translateX(8px);
}

.login-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0fff, #0fff);
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
  border-radius: 12px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.login-feature-icon svg {
  color: #0a0a0a;
  color: var(--bg-primary);
}

.login-feature-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #e8e8e8;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.login-feature-content p {
  font-size: 0.875rem;
  color: #b0b0b0;
  color: var(--text-secondary);
}

.login-social-proof {
  background: rgba(22, 22, 22, 0.7);
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.login-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
}

.login-stat {
  text-align: center;
  flex: 1 1;
}

.login-stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0fff, #0fff);
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  animation: loginStatCount 2s ease-out;
}

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

.login-stat-label {
  font-size: 0.875rem;
  color: #b0b0b0;
  color: var(--text-secondary);
  font-weight: 500;
}

.login-stat-divider {
  width: 1px;
  height: 40px;
  background: #2a2a2a;
  background: var(--border-primary);
}

.login-card {
  background: rgba(22, 22, 22, 0.7);
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  border-radius: var(--radius-xl);
  padding: 3rem;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: loginSlideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0fff, #0fff);
  background: linear-gradient(90deg, var(--orange-primary), var(--orange-secondary));
  animation: loginScanLine 3s ease-in-out infinite;
}

@keyframes loginScanLine {
  0%, 100% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
    transform: translateX(100%);
  }
}

.login-mobile-header {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #2a2a2a;
  border-bottom: 1px solid var(--border-primary);
}

.login-mobile-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  position: relative;
  animation: loginLogoFloat 3s ease-in-out infinite;
}

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

.login-mobile-logo-image,
.login-mobile-logo-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border-radius: var(--radius-md);
  border: 2px solid #2a2a2a;
  border: 2px solid var(--border-primary);
  background: #121212;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.login-mobile-title {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0fff, #0fff);
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.login-mobile-subtitle {
  font-size: 0.875rem;
  color: #b0b0b0;
  color: var(--text-secondary);
}

.login-card-header {
  margin-bottom: 2rem;
}

.login-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #e8e8e8;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.login-card-description {
  font-size: 0.9375rem;
  color: #b0b0b0;
  color: var(--text-secondary);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.login-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.login-field-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e8e8e8;
  color: var(--text-primary);
}

.login-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.login-field-icon-left {
  position: absolute;
  left: 1rem;
  color: #808080;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: color 0.2s ease;
  transition: color var(--transition-fast);
}

.login-field-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: #1e1e1e;
  background: var(--bg-input);
  border: 2px solid #2a2a2a;
  border: 2px solid var(--border-primary);
  border-radius: 12px;
  border-radius: var(--radius-md);
  color: #e8e8e8;
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all 0.2s ease;
  transition: all var(--transition-fast);
  outline: none;
}

.login-field-input::placeholder {
  color: #606060;
  color: var(--text-muted);
}

.login-field-input:hover {
  border-color: #353535;
  border-color: var(--border-secondary);
}

.login-field-input:focus {
  border-color: #0fff;
  border-color: var(--orange-primary);
  background: #121212;
  background: var(--bg-secondary);
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.1);
  box-shadow: 0 0 0 4px var(--orange-light);
  transform: translateY(-2px);
}

.login-field-wrapper:focus-within .login-field-icon-left {
  color: #0fff;
  color: var(--orange-primary);
}

.login-field-input.error {
  border-color: #ff3860;
  border-color: var(--error);
  animation: loginShake 0.4s ease;
}

@keyframes loginShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-10px); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(-10px); }
  80% { transform: translateX(10px); }
}

.login-field-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.login-field-password {
  position: relative;
  display: flex;
  align-items: center;
}

.login-field-toggle {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: #808080;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  transition: all var(--transition-fast);
  border-radius: 8px;
  border-radius: var(--radius-sm);
}

.login-field-toggle:hover {
  color: #0fff;
  color: var(--orange-primary);
  background: rgba(255, 107, 44, 0.1);
  background: var(--orange-light);
  transform: scale(1.1);
}

.login-field-toggle:active {
  transform: scale(0.95);
}

.login-form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -0.5rem;
}

.login-forgot {
  background: transparent;
  border: none;
  color: #0fff;
  color: var(--orange-primary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  transition: all var(--transition-fast);
  position: relative;
}

.login-forgot::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0fff;
  background: var(--orange-primary);
  transition: width 0.3s ease;
  transition: width var(--transition-normal);
}

.login-forgot:hover {
  color: #0fff;
  color: var(--orange-secondary);
}

.login-forgot:hover::after {
  width: 100%;
}

.login-attempts-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: #1e1e1e;
  background: var(--bg-input);
  border: 1px solid #2a2a2a;
  border: 1px solid var(--border-primary);
  border-radius: 9999px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: #b0b0b0;
  color: var(--text-secondary);
}

.login-attempts-badge svg {
  width: 14px;
  height: 14px;
}

.login-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  animation: loginSlideDown 0.3s ease;
}

@keyframes loginSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-alert svg {
  flex-shrink: 0;
}

.login-alert.error {
  background: rgba(255, 56, 96, 0.1);
  border: 1px solid rgba(255, 56, 96, 0.3);
  color: #ff3860;
  color: var(--error);
}

.login-alert.success {
  background: rgba(0, 214, 143, 0.1);
  border: 1px solid rgba(0, 214, 143, 0.3);
  color: #00d68f;
  color: var(--success);
}

.login-blocked {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 170, 0, 0.1);
  border: 1px solid rgba(255, 170, 0, 0.3);
  border-radius: 12px;
  border-radius: var(--radius-md);
  animation: loginBlockedPulse 2s ease-in-out infinite;
}

@keyframes loginBlockedPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 170, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 170, 0, 0);
  }
}

.login-blocked svg {
  color: #ffaa00;
  color: var(--warning);
  flex-shrink: 0;
  animation: loginLockShake 0.6s ease-in-out infinite;
}

@keyframes loginLockShake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

.login-blocked-content {
  flex: 1 1;
}

.login-blocked-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffaa00;
  color: var(--warning);
  margin-bottom: 0.25rem;
}

.login-blocked-timer {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffaa00;
  color: var(--warning);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.login-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(169deg, #0fff, #0fff);
  border: none;
  border-radius: 12px;
  border-radius: var(--radius-md);
  color: #0a0a0a;
  color: var(--bg-primary);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(186, 238, 44, 0.74);
  position: relative;
  overflow: hidden;
}

.login-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0fff, #0fff);
  background: linear-gradient(135deg, var(--orange-secondary), var(--orange-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
  transition: opacity var(--transition-normal);
}

.login-submit:hover:not(:disabled)::before {
  opacity: 1;
}

.login-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 44, 0.3);
  box-shadow: 0 6px 20px var(--orange-glow);
}

.login-submit:active:not(:disabled) {
  transform: translateY(0);
}

.login-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.login-submit svg,
.login-submit span {
  position: relative;
  z-index: 1;
}

.login-submit.loading {
  pointer-events: none;
}

.login-submit.blocked {
  background: #1a1a1a;
  background: var(--bg-tertiary);
  color: #808080;
  color: var(--text-tertiary);
  box-shadow: none;
}

.login-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: loginSpin 0.8s linear infinite;
}

@keyframes loginSpin {
  to { transform: rotate(360deg); }
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.login-divider span:first-child,
.login-divider span:last-child {
  flex: 1 1;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    #2a2a2a 50%, 
    transparent);
  background: linear-gradient(90deg, 
    transparent, 
    var(--border-primary) 50%, 
    transparent);
}

.login-divider span:nth-child(2) {
  color: #808080;
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

.login-register {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #1e1e1e;
  background: var(--bg-input);
  border: 2px solid #2a2a2a;
  border: 2px solid var(--border-primary);
  border-radius: 12px;
  border-radius: var(--radius-md);
  color: #e8e8e8;
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  transition: all var(--transition-normal);
}

.login-register:hover {
  border-color: #0fff;
  border-color: var(--orange-primary);
  background: rgba(255, 107, 44, 0.1);
  background: var(--orange-light);
  color: #0fff;
  color: var(--orange-primary);
  transform: translateY(-2px);
}

.login-card-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-attempts {
  text-align: center;
  font-size: 0.8rem;
  color: #606060;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.login-attempts-icon {
  font-size: 1rem;
}

.login-mobile-platforms {
  display: none;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
  border-top: 1px solid var(--border-primary);
}

.login-mobile-platforms-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #808080;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 1rem;
}

.login-mobile-platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.login-mobile-platforms-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.5) brightness(0.8);
  opacity: 0.6;
  transition: all 0.3s ease;
  transition: all var(--transition-normal);
  border-radius: 8px;
  border-radius: var(--radius-sm);
}

.login-support-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  animation: loginFloatIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s both;
}

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

.login-support-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.login-support-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
  box-shadow: var(--shadow-xl);
}

.login-support-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

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

.login-support-btn.telegram {
  background: linear-gradient(135deg, #0088cc, #0066aa);
}

.login-support-btn.telegram:hover {
  box-shadow: 0 6px 30px rgba(0, 136, 204, 0.5);
}

.login-support-tooltip {
  position: absolute;
  right: calc(100% + 1rem);
  background: #161616;
  background: var(--bg-card);
  color: #e8e8e8;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  transition: opacity var(--transition-normal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-md);
  border: 1px solid #2a2a2a;
  border: 1px solid var(--border-primary);
}

.login-support-btn:hover .login-support-tooltip {
  opacity: 1;
}

.login-footer {
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid #2a2a2a;
  border-top: 1px solid var(--border-primary);
  background: rgba(22, 22, 22, 0.7);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.login-footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.login-footer-brand {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e8e8e8;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.login-footer-text {
  font-size: 0.75rem;
  color: #808080;
  color: var(--text-tertiary);
}

.login-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 9999;
  animation: loginFadeIn 0.3s ease;
}

@keyframes loginFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.login-modal {
  background: #161616;
  background: var(--bg-card);
  border: 1px solid #353535;
  border: 1px solid var(--border-secondary);
  border-radius: 24px;
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 100%;
  padding: 3rem;
  position: relative;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
  box-shadow: var(--shadow-xl);
  animation: loginScaleIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes loginScaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.login-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: #1e1e1e;
  background: var(--bg-input);
  border: 1px solid #2a2a2a;
  border: 1px solid var(--border-primary);
  border-radius: 50%;
  color: #b0b0b0;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  transition: all var(--transition-fast);
}

.login-modal-close:hover {
  background: #ff3860;
  background: var(--error);
  color: white;
  border-color: #ff3860;
  border-color: var(--error);
  transform: rotate(90deg);
}

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

.login-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #0fff, #0fff);
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  color: var(--bg-primary);
}

.login-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8e8e8;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.login-modal-description {
  font-size: 0.9375rem;
  color: #b0b0b0;
  color: var(--text-secondary);
  line-height: 1.5;
}

.login-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.login-link-button {
  background: none;
  border: none;
  color: #b0b0b0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
  transition: color var(--transition-fast);
  text-align: center;
}

.login-link-button:hover {
  color: #0fff;
  color: var(--orange-primary);
}

@media (max-width: 1024px) {
  .login-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .login-welcome {
    display: none;
  }

  .login-mobile-header {
    display: flex;
  }

  .login-mobile-platforms {
    display: block;
  }

  .login-card {
    max-width: 100%;
  }

  .login-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .login-stat-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 640px) {
  .login-content {
    padding: 1rem;
  }

  .login-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border-radius: var(--radius-lg);
  }

  .login-card-title {
    font-size: 1.5rem;
  }

  .login-support-buttons {
    bottom: 1rem;
    right: 1rem;
    gap: 0.75rem;
  }

  .login-support-btn {
    width: 48px;
    height: 48px;
  }

  .login-support-tooltip {
    display: none;
  }

  .login-modal {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .login-field-input {
    font-size: 16px;
  }

  .login-form-options {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

*:focus-visible {
  outline: 2px solid #0fff;
  outline: 2px solid var(--orange-primary);
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  :root {
    --border-primary: #404040;
    --border-secondary: #505050;
  }
}


.login-codigo-hogar-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  padding: 20px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
}

.login-codigo-hogar-icon {
  font-size: 48px;
}

.login-codigo-hogar-content {
  flex: 1 1;
}

.login-codigo-hogar-content h3 {
  color: #fff;
  margin: 0 0 4px 0;
  font-size: 18px;
}

.login-codigo-hogar-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 14px;
}

.login-codigo-hogar-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-codigo-hogar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   🏰 DISNEY+ - MAGICAL STREAMING THEME
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   🎨 VARIABLES DE TEMA DISNEY+
   ═══════════════════════════════════════════════════════════ */
.disney-platform {
  --disney-primary: #113CCF;
  --disney-primary-dark: #0D2EA0;
  --disney-primary-light: #2B52E8;
  --disney-secondary: #0A1E4D;
  --disney-accent: #1E4FD9;
  --disney-bg-dark: #040911;
  --disney-bg-card: #0E1420;
  --disney-bg-elevated: #131B2E;
  --disney-text-primary: #ffffff;
  --disney-text-secondary: #C5D3E8;
  --disney-text-muted: #6B7A99;
  --disney-border: rgba(17, 60, 207, 0.15);
  --disney-border-bright: rgba(17, 60, 207, 0.4);
  --disney-glow: rgba(17, 60, 207, 0.3);
  --disney-success: #46d369;
  --disney-warning: #fbbf24;
  --disney-error: #ef4444;
  --disney-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --disney-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
}

/* ═══════════════════════════════════════════════════════════
   🎯 CONTENEDOR PRINCIPAL
   ═══════════════════════════════════════════════════════════ */
.disney-platform {
  font-family: 'Space Grotesk', 'Rajdhani', sans-serif;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--disney-bg-dark) 0%, #060d1a 100%);
  border-radius: 24px;
  border: 1px solid var(--disney-border);
  box-shadow: var(--disney-shadow-lg), 
              0 0 0 1px rgba(17, 60, 207, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  animation: platformEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-sizing: border-box;
}

.disney-platform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--disney-primary) 30%, 
    var(--disney-primary-light) 50%, 
    var(--disney-primary) 70%, 
    transparent 100%
  );
  animation: topBarScan 3s ease-in-out infinite;
}

.disney-platform::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(17, 60, 207, 0.08) 0%, transparent 70%);
  animation: ambientGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes platformEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes topBarScan {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

@keyframes ambientGlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
  50% { transform: translate(10%, 10%) rotate(180deg); opacity: 0.8; }
}

/* ═══════════════════════════════════════════════════════════
   🎯 HEADER CON BRANDING
   ═══════════════════════════════════════════════════════════ */
.disney-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--disney-border);
  animation: headerSlideIn 0.5s ease-out 0.1s backwards;
}

@keyframes headerSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.disney-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.disney-logo {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  padding: 8px;
  background: linear-gradient(135deg, var(--disney-bg-elevated) 0%, var(--disney-bg-card) 100%);
  border: 2px solid var(--disney-border-bright);
  box-shadow: 0 8px 24px rgba(17, 60, 207, 0.25),
              0 0 20px rgba(17, 60, 207, 0.15);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: logoPulse 3s ease-in-out infinite;
}

.disney-logo:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(17, 60, 207, 0.4),
              0 0 40px rgba(17, 60, 207, 0.3);
  border-color: var(--disney-primary);
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(17, 60, 207, 0.25), 0 0 20px rgba(17, 60, 207, 0.15); }
  50% { box-shadow: 0 8px 24px rgba(17, 60, 207, 0.4), 0 0 30px rgba(17, 60, 207, 0.25); }
}

.disney-info h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, var(--disney-primary) 0%, var(--disney-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-shadow: 0 0 30px rgba(17, 60, 207, 0.3);
  animation: titleShimmer 4s ease-in-out infinite;
}

@keyframes titleShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.disney-correos-count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, rgba(17, 60, 207, 0.15) 0%, rgba(17, 60, 207, 0.05) 100%);
  border: 1px solid var(--disney-border-bright);
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--disney-primary-light);
  letter-spacing: 0.5px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.disney-correos-count:hover {
  background: linear-gradient(135deg, rgba(17, 60, 207, 0.25) 0%, rgba(17, 60, 207, 0.1) 100%);
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════
   📝 FORMULARIO PRINCIPAL
   ═══════════════════════════════════════════════════════════ */
.disney-form {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  animation: formFadeIn 0.5s ease-out 0.2s backwards;
}

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

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

.disney-form-label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--disney-text-secondary);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.disney-input-container {
  position: relative;
}

.disney-form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--disney-text-primary);
  background: var(--disney-bg-card);
  border: 2px solid var(--disney-border);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.disney-form-input::placeholder {
  color: var(--disney-text-muted);
  font-weight: 400;
}

.disney-form-input:focus {
  background: var(--disney-bg-elevated);
  border-color: var(--disney-primary);
  box-shadow: 0 0 0 3px rgba(17, 60, 207, 0.15),
              inset 0 2px 8px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(17, 60, 207, 0.1);
  transform: translateY(-2px);
}

.disney-form-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.disney-input-help {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--disney-text-muted);
  font-family: 'Rajdhani', sans-serif;
}

/* ═══════════════════════════════════════════════════════════
   🚀 BOTÓN DE CONSULTA
   ═══════════════════════════════════════════════════════════ */
.disney-btn-consultar {
  width: 100%;
  padding: 1.2rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--disney-primary) 0%, var(--disney-accent) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(17, 60, 207, 0.35),
              0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

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

.disney-btn-consultar:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(17, 60, 207, 0.5),
              0 0 40px rgba(17, 60, 207, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.2);
}

.disney-btn-consultar:active:not(:disabled) {
  transform: translateY(-1px) scale(0.98);
}

.disney-btn-consultar:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.disney-btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.disney-btn-icon {
  font-size: 1.3rem;
  animation: iconFloat 2s ease-in-out infinite;
}

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

.disney-btn-text {
  font-weight: 700;
}

.disney-btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.disney-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════
   ⚠️ ALERTAS Y NOTIFICACIONES
   ═══════════════════════════════════════════════════════════ */
.disney-alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  animation: alertSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes alertSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.disney-alert-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.disney-alert-icon {
  font-size: 1.3rem;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.disney-alert-message {
  flex: 1 1;
}

/* ═══════════════════════════════════════════════════════════
   📊 CONTENEDOR DE RESULTADOS
   ═══════════════════════════════════════════════════════════ */
.disney-result-container {
  background: linear-gradient(135deg, var(--disney-bg-elevated) 0%, var(--disney-bg-card) 100%);
  border: 1px solid var(--disney-border-bright);
  border-radius: 16px;
  padding: 1.75rem;
  margin-top: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: resultExpand 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.disney-result-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--disney-primary), transparent);
  animation: resultGlow 2s ease-in-out infinite;
}

@keyframes resultExpand {
  from {
    opacity: 0;
    transform: scale(0.95);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: scale(1);
    max-height: 1000px;
  }
}

@keyframes resultGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.disney-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--disney-border);
}

.disney-result-header h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--disney-text-primary);
  letter-spacing: 0.5px;
}

.disney-result-icon {
  font-size: 1.5rem;
  animation: iconBounce 2s ease-in-out infinite;
}

.disney-result-title {
  font-weight: 700;
}

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

/* ═══════════════════════════════════════════════════════════
   🔑 DISPLAY DE CÓDIGO
   ═══════════════════════════════════════════════════════════ */
.disney-result-code {
  background: var(--disney-bg-dark);
  border: 1px solid var(--disney-border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.disney-result-code:hover {
  border-color: var(--disney-border-bright);
  box-shadow: 0 4px 16px rgba(17, 60, 207, 0.15);
}

.disney-code-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-left: 4px solid var(--disney-primary);
  margin-bottom: 1rem;
}

.disney-code-value {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--disney-primary-light);
  letter-spacing: 8px;
  text-shadow: 0 0 20px rgba(17, 60, 207, 0.5);
  animation: codeGlow 2s ease-in-out infinite;
}

@keyframes codeGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(17, 60, 207, 0.5); }
  50% { text-shadow: 0 0 30px rgba(17, 60, 207, 0.8); }
}

.disney-code-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.disney-validez-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.disney-status-valid {
  background: linear-gradient(135deg, rgba(70, 211, 105, 0.2) 0%, rgba(70, 211, 105, 0.05) 100%);
  border: 1px solid rgba(70, 211, 105, 0.4);
  color: #86efac;
  box-shadow: 0 0 20px rgba(70, 211, 105, 0.2);
}

.disney-status-expiring {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.05) 100%);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fde68a;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.disney-status-expired {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.disney-status-unknown {
  background: linear-gradient(135deg, rgba(107, 122, 153, 0.2) 0%, rgba(107, 122, 153, 0.05) 100%);
  border: 1px solid rgba(107, 122, 153, 0.4);
  color: #9ca3af;
  box-shadow: 0 0 20px rgba(107, 122, 153, 0.2);
}

.disney-fecha-email {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--disney-text-muted);
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.disney-btn-copy {
  padding: 0.875rem 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--disney-primary);
  background: linear-gradient(135deg, var(--disney-bg-elevated) 0%, var(--disney-bg-card) 100%);
  border: 2px solid var(--disney-border-bright);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.disney-btn-copy:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--disney-bg-card) 0%, var(--disney-bg-dark) 100%);
  border-color: var(--disney-primary);
  box-shadow: 0 6px 24px rgba(17, 60, 207, 0.3);
}

.disney-btn-copy:active {
  transform: translateY(-1px) scale(0.98);
}

/* ═══════════════════════════════════════════════════════════
   📱 RESPONSIVE - MOBILE FIRST
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .disney-platform {
    padding: 1.25rem;
    border-radius: 16px;
    margin: 0 0.75rem;
    max-width: calc(100% - 1.5rem);
  }

  .disney-header {
    margin-bottom: 1.5rem;
  }

  .disney-brand {
    gap: 1rem;
  }

  .disney-logo {
    width: 55px;
    height: 55px;
  }

  .disney-info h1 {
    font-size: 1.75rem;
  }

  .disney-correos-count {
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
  }

  .disney-form-label {
    font-size: 0.85rem;
  }

  .disney-form-input {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
  }

  .disney-btn-consultar {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .disney-result-container {
    padding: 1.25rem;
  }

  .disney-result-header h3 {
    font-size: 1.1rem;
  }

  .disney-code-value {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }

  .disney-code-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .disney-platform {
    padding: 1rem;
    margin: 0 0.5rem;
    max-width: calc(100% - 1rem);
    border-radius: 12px;
  }

  .disney-logo {
    width: 50px;
    height: 50px;
  }

  .disney-info h1 {
    font-size: 1.5rem;
  }

  .disney-btn-consultar {
    font-size: 0.95rem;
  }

  .disney-btn-icon {
    font-size: 1.1rem;
  }

  .disney-form-input {
    font-size: 0.9rem;
  }

  .disney-code-value {
    font-size: 1.25rem;
    letter-spacing: 3px;
  }

  .disney-btn-copy {
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   ✨ EFECTOS ESPECIALES Y ACABADOS
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Efecto de escaneo futurista */
@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ═══════════════════════════════════════════════════════════
   📱 AGREGAR ESTAS CORRECCIONES AL RESPONSIVE DE DISNEY+
   ═══════════════════════════════════════════════════════════ */

/* ✅ AÑADE ESTO AL .disney-info EN TODAS LAS RESOLUCIONES */
.disney-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

/* ✅ CORRIGE EL RESPONSIVE MÓVIL - Reemplaza todo el @media (max-width: 768px) */
@media (max-width: 768px) {
  .disney-platform {
    padding: 1.25rem;
    border-radius: 16px;
    margin: 0 0.75rem;
    max-width: calc(100% - 1.5rem);
    overflow-x: hidden; /* ✅ IMPORTANTE: evita scroll horizontal */
  }

  .disney-header {
    margin-bottom: 1.5rem;
  }

  .disney-brand {
    gap: 1rem;
  }

  .disney-logo {
    width: 55px;
    height: 55px;
  }

  .disney-info h1 {
    font-size: 1.75rem;
    margin: 0;
  }

  .disney-correos-count {
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    margin-top: 0;
    margin-left: -10px; /* ✅ Mueve a la izquierda */
  }

  .disney-form-label {
    font-size: 0.85rem;
  }

  .disney-form-input {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 100%; /* ✅ IMPORTANTE */
    box-sizing: border-box;
  }

  .disney-btn-consultar {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
  }

  /* ✅ ESTOS SON LOS QUE FALTAN PARA LOS RESULTADOS */
  .disney-result-container {
    padding: 1rem; /* ✅ Reduce padding */
    max-width: 100%;
    box-sizing: border-box;
  }

  .disney-result-header h3 {
    font-size: 1rem;
    flex-wrap: wrap;
  }

  .disney-result-icon {
    font-size: 1.2rem;
  }

  .disney-result-title {
    font-size: 0.95rem;
  }

  /* ✅ ARREGLA EL CÓDIGO DISPLAY */
  .disney-code-display {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }

  .disney-code-value {
    font-size: 1.5rem;
    letter-spacing: 4px;
    word-break: break-all; /* ✅ IMPORTANTE: corta el código si es muy largo */
    text-align: center;
  }

  .disney-btn-copy {
    width: 100%; /* ✅ Botón a ancho completo */
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }

  /* ✅ ARREGLA LOS BADGES */
  .disney-code-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .disney-validez-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
  }

  .disney-fecha-email {
    font-size: 0.8rem;
  }
}

/* ✅ TAMBIÉN AÑADE ESTO PARA MÓVILES MUY PEQUEÑOS */
@media (max-width: 480px) {
  .disney-platform {
    padding: 1rem;
    margin: 0 0.5rem;
    max-width: calc(100% - 1rem);
    border-radius: 12px;
  }

  .disney-logo {
    width: 50px;
    height: 50px;
  }

  .disney-info h1 {
    font-size: 1.5rem;
  }

  .disney-correos-count {
    margin-left: -10px;
  }

  .disney-btn-consultar {
    font-size: 0.95rem;
    padding: 0.9rem 1.25rem;
  }

  .disney-code-value {
    font-size: 1.25rem;
    letter-spacing: 3px;
  }

  .disney-result-container {
    padding: 0.875rem;
  }
}



.netflix-platform {
  --netflix-primary: #E50914;
  --netflix-primary-dark: #B20710;
  --netflix-primary-light: #F40612;
  --netflix-secondary: #221F1F;
  --netflix-accent: #E50914;
  --netflix-bg-dark: #000000;
  --netflix-bg-card: #141414;
  --netflix-bg-elevated: #1F1F1F;
  --netflix-text-primary: #ffffff;
  --netflix-text-secondary: #B3B3B3;
  --netflix-text-muted: #808080;
  --netflix-border: rgba(229, 9, 20, 0.15);
  --netflix-border-bright: rgba(229, 9, 20, 0.4);
  --netflix-glow: rgba(229, 9, 20, 0.3);
  --netflix-success: #46d369;
  --netflix-warning: #fbbf24;
  --netflix-error: #ef4444;
  --netflix-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --netflix-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
}


.netflix-platform {
  font-family: 'Space Grotesk', 'Rajdhani', sans-serif;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--netflix-bg-dark) 0%, #0a0a0a 100%);
  border-radius: 24px;
  border: 1px solid var(--netflix-border);
  box-shadow: var(--netflix-shadow-lg), 
              0 0 0 1px rgba(229, 9, 20, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: visible;
  animation: platformEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-sizing: border-box;
}

.netflix-platform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--netflix-primary) 30%, 
    var(--netflix-primary-light) 50%, 
    var(--netflix-primary) 70%, 
    transparent 100%
  );
  animation: topBarScan 3s ease-in-out infinite;
}

.netflix-platform::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.08) 0%, transparent 70%);
  animation: ambientGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes platformEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes topBarScan {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

@keyframes ambientGlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
  50% { transform: translate(10%, 10%) rotate(180deg); opacity: 0.8; }
}


.netflix-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--netflix-border);
  animation: headerSlideIn 0.5s ease-out 0.1s backwards;
}

@keyframes headerSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.netflix-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.netflix-logo {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  padding: 8px;
  background: linear-gradient(135deg, var(--netflix-bg-elevated) 0%, var(--netflix-bg-card) 100%);
  border: 2px solid var(--netflix-border-bright);
  box-shadow: 0 8px 24px rgba(229, 9, 20, 0.25),
              0 0 20px rgba(229, 9, 20, 0.15);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: logoPulse 3s ease-in-out infinite;
}

.netflix-logo:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.4),
              0 0 40px rgba(229, 9, 20, 0.3);
  border-color: var(--netflix-primary);
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(229, 9, 20, 0.25), 0 0 20px rgba(229, 9, 20, 0.15); }
  50% { box-shadow: 0 8px 24px rgba(229, 9, 20, 0.4), 0 0 30px rgba(229, 9, 20, 0.25); }
}

.netflix-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.netflix-info h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, var(--netflix-primary) 0%, var(--netflix-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-shadow: 0 0 30px rgba(229, 9, 20, 0.3);
  animation: titleShimmer 4s ease-in-out infinite;
}

@keyframes titleShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.netflix-correos-count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  margin-top: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(229, 9, 20, 0.05) 100%);
  border: 1px solid var(--netflix-border-bright);
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--netflix-primary-light);
  letter-spacing: 0.5px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.netflix-correos-count:hover {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.25) 0%, rgba(229, 9, 20, 0.1) 100%);
  transform: scale(1.05);
}


.netflix-form {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  animation: formFadeIn 0.5s ease-out 0.2s backwards;
}

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

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

.netflix-form-label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--netflix-text-secondary);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.netflix-input-container {
  position: relative;
}

.netflix-form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--netflix-text-primary);
  background: var(--netflix-bg-card);
  border: 2px solid var(--netflix-border);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.netflix-form-input::placeholder {
  color: var(--netflix-text-muted);
  font-weight: 400;
}

.netflix-form-input:focus {
  background: var(--netflix-bg-elevated);
  border-color: var(--netflix-primary);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15),
              inset 0 2px 8px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(229, 9, 20, 0.1);
  transform: translateY(-2px);
}

.netflix-form-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.netflix-input-help {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--netflix-text-muted);
  font-family: 'Rajdhani', sans-serif;
}

/* ═══════════════════════════════════════════════════════════
   🎛️ CUSTOM SELECT DROPDOWN
   ═══════════════════════════════════════════════════════════ */
.netflix-custom-select {
  position: relative;
}

.netflix-select-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--netflix-bg-card);
  border: 2px solid var(--netflix-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.netflix-select-display:hover {
  background: var(--netflix-bg-elevated);
  border-color: var(--netflix-border-bright);
  transform: translateY(-2px);
}



.netflix-option-icon {
  font-size: 1.5rem;
  animation: iconFloat 2s ease-in-out infinite;
}

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

.netflix-option-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.netflix-option-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--netflix-text-primary);
}

.netflix-option-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--netflix-text-muted);
}

.netflix-selected-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1;
  min-width: 0; /* Permite que el contenido se comprima */
}

.netflix-option-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1 1;
  min-width: 0; /* Previene overflow */
}

.netflix-option-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--netflix-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.netflix-option-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--netflix-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.netflix-dropdown-arrow {
  font-size: 0.8rem;
  color: var(--netflix-text-secondary);
  transition: transform 0.3s ease;
  margin-left: auto;
  padding-left: 1rem;
  flex-shrink: 0; /* Evita que se comprima */
}

/* ═══════════════════════════════════════════════════════════
   📱 AJUSTES RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .netflix-selected-option {
    gap: 0.75rem;
  }

  .netflix-dropdown-arrow {
    padding-left: 0.75rem;
    font-size: 0.75rem;
  }

  .netflix-option-title {
    font-size: 0.9rem;
  }

  .netflix-option-desc {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .netflix-selected-option {
    gap: 0.5rem;
  }

  .netflix-dropdown-arrow {
    padding-left: 0.5rem;
  }

  .netflix-option-icon {
    font-size: 1.1rem;
  }
}

.netflix-dropdown-arrow.active {
  transform: rotate(180deg);
}

.netflix-select-options {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: var(--netflix-bg-elevated);
  border: 2px solid var(--netflix-border-bright);
  border-radius: 12px;
  overflow: hidden;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: dropdownExpand 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 100%;
  box-sizing: border-box;
}

@keyframes dropdownExpand {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.netflix-select-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--netflix-border);
}

.netflix-select-option:last-child {
  border-bottom: none;
}

.netflix-select-option:hover {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(229, 9, 20, 0.05) 100%);
}

.netflix-select-option.selected {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.2) 0%, rgba(229, 9, 20, 0.1) 100%);
  border-left: 3px solid var(--netflix-primary);
}

/* ═══════════════════════════════════════════════════════════
   🚀 BOTÓN DE CONSULTA
   ═══════════════════════════════════════════════════════════ */
.netflix-btn-consultar {
  width: 100%;
  padding: 1.2rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--netflix-primary) 0%, var(--netflix-accent) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(229, 9, 20, 0.35),
              0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

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

.netflix-btn-consultar:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.5),
              0 0 40px rgba(229, 9, 20, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.2);
}

.netflix-btn-consultar:active:not(:disabled) {
  transform: translateY(-1px) scale(0.98);
}

.netflix-btn-consultar:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.netflix-btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.netflix-btn-icon {
  font-size: 1.3rem;
}

.netflix-btn-text {
  font-weight: 700;
}

.netflix-btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.netflix-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════
   ⚠️ ALERTAS Y NOTIFICACIONES
   ═══════════════════════════════════════════════════════════ */
.netflix-alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  animation: alertSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

@keyframes alertSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.netflix-alert-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.netflix-alert-icon {
  font-size: 1.3rem;
  animation: iconPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.netflix-alert-message {
  flex: 1 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ═══════════════════════════════════════════════════════════
   📊 CONTENEDOR DE RESULTADOS
   ═══════════════════════════════════════════════════════════ */
.netflix-result-container {
  background: linear-gradient(135deg, var(--netflix-bg-elevated) 0%, var(--netflix-bg-card) 100%);
  border: 1px solid var(--netflix-border-bright);
  border-radius: 16px;
  padding: 1.75rem;
  margin-top: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: resultExpand 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.netflix-result-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--netflix-primary), transparent);
  animation: resultGlow 2s ease-in-out infinite;
}

@keyframes resultExpand {
  from {
    opacity: 0;
    transform: scale(0.95);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: scale(1);
    max-height: 1000px;
  }
}

@keyframes resultGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.netflix-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--netflix-border);
}

.netflix-result-header h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--netflix-text-primary);
  letter-spacing: 0.5px;
}

.netflix-result-icon {
  font-size: 1.5rem;
  animation: iconBounce 2s ease-in-out infinite;
  flex-shrink: 0;
}

.netflix-result-title {
  font-weight: 700;
}

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

/* ═══════════════════════════════════════════════════════════
   🔑 DISPLAY DE CÓDIGO
   ═══════════════════════════════════════════════════════════ */
.netflix-result-code {
  background: var(--netflix-bg-dark);
  border: 1px solid var(--netflix-border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
}

.netflix-result-code:hover {
  border-color: var(--netflix-border-bright);
  box-shadow: 0 4px 16px rgba(229, 9, 20, 0.15);
}

.netflix-code-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-left: 4px solid var(--netflix-primary);
  margin-bottom: 1rem;
  max-width: 100%;
  box-sizing: border-box;
}

.netflix-code-value {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--netflix-primary-light);
  letter-spacing: 8px;
  text-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
  animation: codeGlow 2s ease-in-out infinite;
  word-break: break-all;
  overflow-wrap: break-word;
}

@keyframes codeGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(229, 9, 20, 0.5); }
  50% { text-shadow: 0 0 30px rgba(229, 9, 20, 0.8); }
}

.netflix-code-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.netflix-validez-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: badgePulse 2s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.netflix-status-valid {
  background: linear-gradient(135deg, rgba(70, 211, 105, 0.2) 0%, rgba(70, 211, 105, 0.05) 100%);
  border: 1px solid rgba(70, 211, 105, 0.4);
  color: #86efac;
  box-shadow: 0 0 20px rgba(70, 211, 105, 0.2);
}

.netflix-status-expiring {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.05) 100%);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fde68a;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.netflix-status-expired {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.netflix-status-unknown {
  background: linear-gradient(135deg, rgba(128, 128, 128, 0.2) 0%, rgba(128, 128, 128, 0.05) 100%);
  border: 1px solid rgba(128, 128, 128, 0.4);
  color: #9ca3af;
  box-shadow: 0 0 20px rgba(128, 128, 128, 0.2);
}

.netflix-fecha-email {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--netflix-text-muted);
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   🔗 PREVIEW Y ACCIONES DE LINK
   ═══════════════════════════════════════════════════════════ */
.netflix-result-link {
  background: var(--netflix-bg-dark);
  border: 1px solid var(--netflix-border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
}

.netflix-result-link:hover {
  border-color: var(--netflix-border-bright);
  box-shadow: 0 4px 16px rgba(229, 9, 20, 0.15);
}

.netflix-link-preview {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 3px solid var(--netflix-primary);
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.netflix-link-text {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.9rem;
  color: var(--netflix-text-secondary);
  word-break: break-all;
  overflow-wrap: break-word;
  line-height: 1.6;
}

.netflix-link-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.netflix-link-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.netflix-btn-open,
.netflix-btn-copy {
  flex: 1 1;
  padding: 0.875rem 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.netflix-btn-open {
  background: linear-gradient(135deg, var(--netflix-primary) 0%, var(--netflix-accent) 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(229, 9, 20, 0.3);
}

.netflix-btn-open:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(229, 9, 20, 0.5);
}

.netflix-btn-copy {
  background: linear-gradient(135deg, var(--netflix-bg-elevated) 0%, var(--netflix-bg-card) 100%);
  color: var(--netflix-primary);
  border: 2px solid var(--netflix-border-bright);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.netflix-btn-copy:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--netflix-bg-card) 0%, var(--netflix-bg-dark) 100%);
  border-color: var(--netflix-primary);
  box-shadow: 0 6px 24px rgba(229, 9, 20, 0.3);
}

.netflix-btn-open:active,
.netflix-btn-copy:active {
  transform: translateY(-1px) scale(0.98);
}

/* ═══════════════════════════════════════════════════════════
   📱 RESPONSIVE - MOBILE FIRST
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .netflix-platform {
    padding: 1.25rem;
    border-radius: 16px;
    margin: 0 0.75rem;
    max-width: calc(100% - 1.5rem);
    overflow-x: hidden;
  }

  .netflix-header {
    margin-bottom: 1.5rem;
  }

  .netflix-brand {
    gap: 1rem;
  }

  .netflix-logo {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
  }

  .netflix-info h1 {
    font-size: 1.75rem;
  }

  .netflix-correos-count {
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    margin-left: -10px;
  }

  .netflix-form-label {
    font-size: 0.85rem;
  }

  .netflix-form-input {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }

  .netflix-custom-select {
    width: 100%;
  }

  .netflix-select-display {
    padding: 0.875rem 1rem;
  }

  .netflix-option-icon {
    font-size: 1.2rem;
  }

  .netflix-option-title {
    font-size: 0.95rem;
  }

  .netflix-option-desc {
    font-size: 0.8rem;
  }

  .netflix-btn-consultar {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .netflix-result-container {
    padding: 1rem;
    margin-top: 1.5rem;
  }

  .netflix-result-header h3 {
    font-size: 1rem;
    flex-wrap: wrap;
  }

  .netflix-result-icon {
    font-size: 1.2rem;
  }

  .netflix-result-title {
    font-size: 0.95rem;
  }

  .netflix-result-code,
  .netflix-result-link {
    padding: 1rem;
  }

  .netflix-code-display {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
  }

  .netflix-code-value {
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-align: center;
  }

  .netflix-btn-copy {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }

  .netflix-code-status,
  .netflix-link-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .netflix-validez-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
  }

  .netflix-fecha-email {
    font-size: 0.8rem;
  }

  .netflix-link-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .netflix-btn-open,
  .netflix-btn-copy {
    width: 100%;
  }

  .netflix-link-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .netflix-platform {
    padding: 1rem;
    margin: 0 0.5rem;
    max-width: calc(100% - 1rem);
    border-radius: 12px;
  }

  .netflix-logo {
    width: 50px;
    height: 50px;
  }

  .netflix-info h1 {
    font-size: 1.5rem;
  }

  .netflix-correos-count {
    margin-left: -10px;
  }

  .netflix-btn-consultar {
    font-size: 0.95rem;
  }

  .netflix-btn-icon {
    font-size: 1.1rem;
  }

  .netflix-form-input {
    font-size: 0.9rem;
  }

  .netflix-code-value {
    font-size: 1.25rem;
    letter-spacing: 3px;
  }

  .netflix-result-container {
    padding: 0.875rem;
  }

  .netflix-code-display {
    padding: 0.875rem;
  }

  .netflix-link-text {
    font-size: 0.8rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   ✨ EFECTOS ESPECIALES Y ACABADOS
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


.netflix-fecha-email {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--netflix-text-muted);
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  white-space: nowrap;
}

/* ✅ RESPONSIVE PARA MÓVIL */
@media (max-width: 768px) {
  .netflix-fecha-email {
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
  }
}

@media (max-width: 480px) {
  .netflix-fecha-email {
    font-size: 0.75rem;
    white-space: normal;
  }
}



.netflix-iframe-container {
  width: 100%;
  height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  background: #141414;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}

.netflix-iframe-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #1a1a1a;
  border-bottom: 2px solid #e50914;
}

.netflix-iframe-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.netflix-iframe-icon {
  font-size: 22px;
  animation: pulse 2s ease-in-out infinite;
}

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

.netflix-iframe-close {
  background: #e50914;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.netflix-iframe-close:hover {
  background: #f40612;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

.netflix-iframe-close:active {
  transform: scale(0.98);
}

.netflix-iframe {
  flex: 1 1;
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
  .netflix-iframe-container {
    height: calc(100vh - 80px);
  }
  
  .netflix-iframe-header {
    padding: 12px 15px;
  }
  
  .netflix-iframe-title {
    font-size: 14px;
  }
  
  .netflix-iframe-icon {
    font-size: 18px;
  }
  
  .netflix-iframe-close {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* Loading state para iframe */
.netflix-iframe-container::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border: 4px solid rgba(229, 9, 20, 0.1);
  border-top-color: #e50914;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

.netflix-iframe-container iframe {
  position: relative;
  z-index: 2;
}
/* ═══════════════════════════════════════════════════════════
   📦 AMAZON PRIME VIDEO - PREMIUM STREAMING THEME
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   🎨 VARIABLES DE TEMA AMAZON PRIME VIDEO
   ═══════════════════════════════════════════════════════════ */
.amazonprime-platform {
  --amazon-primary: #00A8E1;
  --amazon-primary-dark: #0088B8;
  --amazon-primary-light: #1EBFEF;
  --amazon-secondary: #0C1E2E;
  --amazon-accent: #08AAE3;
  --amazon-bg-dark: #050A0F;
  --amazon-bg-card: #0D1419;
  --amazon-bg-elevated: #141B23;
  --amazon-text-primary: #ffffff;
  --amazon-text-secondary: #C5D5E3;
  --amazon-text-muted: #6B7E91;
  --amazon-border: rgba(0, 168, 225, 0.15);
  --amazon-border-bright: rgba(0, 168, 225, 0.4);
  --amazon-glow: rgba(0, 168, 225, 0.3);
  --amazon-success: #46d369;
  --amazon-warning: #fbbf24;
  --amazon-error: #ef4444;
  --amazon-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --amazon-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
}

/* ═══════════════════════════════════════════════════════════
   🎯 CONTENEDOR PRINCIPAL
   ═══════════════════════════════════════════════════════════ */
.amazonprime-platform {
  font-family: 'Space Grotesk', 'Rajdhani', sans-serif;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--amazon-bg-dark) 0%, #070d13 100%);
  border-radius: 24px;
  border: 1px solid var(--amazon-border);
  box-shadow: var(--amazon-shadow-lg), 
              0 0 0 1px rgba(0, 168, 225, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  animation: platformEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-sizing: border-box;
}

.amazonprime-platform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--amazon-primary) 30%, 
    var(--amazon-primary-light) 50%, 
    var(--amazon-primary) 70%, 
    transparent 100%
  );
  animation: topBarScan 3s ease-in-out infinite;
}

.amazonprime-platform::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 168, 225, 0.08) 0%, transparent 70%);
  animation: ambientGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes platformEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes topBarScan {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

@keyframes ambientGlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
  50% { transform: translate(10%, 10%) rotate(180deg); opacity: 0.8; }
}

/* ═══════════════════════════════════════════════════════════
   🎯 HEADER CON BRANDING
   ═══════════════════════════════════════════════════════════ */
.amazonprime-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--amazon-border);
  animation: headerSlideIn 0.5s ease-out 0.1s backwards;
}

@keyframes headerSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.amazonprime-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.amazonprime-logo {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  padding: 8px;
  background: linear-gradient(135deg, var(--amazon-bg-elevated) 0%, var(--amazon-bg-card) 100%);
  border: 2px solid var(--amazon-border-bright);
  box-shadow: 0 8px 24px rgba(0, 168, 225, 0.25),
              0 0 20px rgba(0, 168, 225, 0.15);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: logoPulse 3s ease-in-out infinite;
}

.amazonprime-logo:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 168, 225, 0.4),
              0 0 40px rgba(0, 168, 225, 0.3);
  border-color: var(--amazon-primary);
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0, 168, 225, 0.25), 0 0 20px rgba(0, 168, 225, 0.15); }
  50% { box-shadow: 0 8px 24px rgba(0, 168, 225, 0.4), 0 0 30px rgba(0, 168, 225, 0.25); }
}

.amazonprime-info h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, var(--amazon-primary) 0%, var(--amazon-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-shadow: 0 0 30px rgba(0, 168, 225, 0.3);
  animation: titleShimmer 4s ease-in-out infinite;
}

@keyframes titleShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.amazonprime-correos-count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, rgba(0, 168, 225, 0.15) 0%, rgba(0, 168, 225, 0.05) 100%);
  border: 1px solid var(--amazon-border-bright);
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amazon-primary-light);
  letter-spacing: 0.5px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.amazonprime-correos-count:hover {
  background: linear-gradient(135deg, rgba(0, 168, 225, 0.25) 0%, rgba(0, 168, 225, 0.1) 100%);
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════
   📝 FORMULARIO PRINCIPAL
   ═══════════════════════════════════════════════════════════ */
.amazonprime-form {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  animation: formFadeIn 0.5s ease-out 0.2s backwards;
}

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

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

.amazonprime-form-label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--amazon-text-secondary);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.amazonprime-input-container {
  position: relative;
}

.amazonprime-form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--amazon-text-primary);
  background: var(--amazon-bg-card);
  border: 2px solid var(--amazon-border);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.amazonprime-form-input::placeholder {
  color: var(--amazon-text-muted);
  font-weight: 400;
}

.amazonprime-form-input:focus {
  background: var(--amazon-bg-elevated);
  border-color: var(--amazon-primary);
  box-shadow: 0 0 0 3px rgba(0, 168, 225, 0.15),
              inset 0 2px 8px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(0, 168, 225, 0.1);
  transform: translateY(-2px);
}

.amazonprime-form-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.amazonprime-input-help {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--amazon-text-muted);
  font-family: 'Rajdhani', sans-serif;
}

/* ═══════════════════════════════════════════════════════════
   🎛️ CUSTOM SELECT DROPDOWN
   ═══════════════════════════════════════════════════════════ */
.amazonprime-custom-select {
  position: relative;
}

.amazonprime-select-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--amazon-bg-card);
  border: 2px solid var(--amazon-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.amazonprime-select-display:hover {
  background: var(--amazon-bg-elevated);
  border-color: var(--amazon-border-bright);
  transform: translateY(-2px);
}

.amazonprime-selected-option {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.amazonprime-option-icon {
  font-size: 1.5rem;
  animation: iconFloat 2s ease-in-out infinite;
}

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

.amazonprime-option-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.amazonprime-option-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--amazon-text-primary);
}

.amazonprime-option-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--amazon-text-muted);
}

.amazonprime-dropdown-arrow {
  font-size: 0.8rem;
  color: var(--amazon-text-secondary);
  transition: transform 0.3s ease;
}

.amazonprime-dropdown-arrow.active {
  transform: rotate(180deg);
}

.amazonprime-select-options {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: var(--amazon-bg-elevated);
  border: 2px solid var(--amazon-border-bright);
  border-radius: 12px;
  overflow: hidden;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: dropdownExpand 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes dropdownExpand {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.amazonprime-select-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--amazon-border);
}

.amazonprime-select-option:last-child {
  border-bottom: none;
}

.amazonprime-select-option:hover {
  background: linear-gradient(135deg, rgba(0, 168, 225, 0.15) 0%, rgba(0, 168, 225, 0.05) 100%);
}

.amazonprime-select-option.selected {
  background: linear-gradient(135deg, rgba(0, 168, 225, 0.2) 0%, rgba(0, 168, 225, 0.1) 100%);
  border-left: 3px solid var(--amazon-primary);
}

/* ═══════════════════════════════════════════════════════════
   🚀 BOTÓN DE CONSULTA
   ═══════════════════════════════════════════════════════════ */
.amazonprime-btn-consultar {
  width: 100%;
  padding: 1.2rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amazon-primary) 0%, var(--amazon-accent) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 168, 225, 0.35),
              0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

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

.amazonprime-btn-consultar:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 168, 225, 0.5),
              0 0 40px rgba(0, 168, 225, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.2);
}

.amazonprime-btn-consultar:active:not(:disabled) {
  transform: translateY(-1px) scale(0.98);
}

.amazonprime-btn-consultar:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.amazonprime-btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.amazonprime-btn-icon {
  font-size: 1.3rem;
  animation: iconFloat 2s ease-in-out infinite;
}

.amazonprime-btn-text {
  font-weight: 700;
}

.amazonprime-btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.amazonprime-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════
   ⚠️ ALERTAS Y NOTIFICACIONES
   ═══════════════════════════════════════════════════════════ */
.amazonprime-alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  animation: alertSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes alertSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.amazonprime-alert-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.amazonprime-alert-icon {
  font-size: 1.3rem;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.amazonprime-alert-message {
  flex: 1 1;
}

/* ═══════════════════════════════════════════════════════════
   📊 CONTENEDOR DE RESULTADOS
   ═══════════════════════════════════════════════════════════ */
.amazonprime-result-container {
  background: linear-gradient(135deg, var(--amazon-bg-elevated) 0%, var(--amazon-bg-card) 100%);
  border: 1px solid var(--amazon-border-bright);
  border-radius: 16px;
  padding: 1.75rem;
  margin-top: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: resultExpand 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.amazonprime-result-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amazon-primary), transparent);
  animation: resultGlow 2s ease-in-out infinite;
}

@keyframes resultExpand {
  from {
    opacity: 0;
    transform: scale(0.95);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: scale(1);
    max-height: 1000px;
  }
}

@keyframes resultGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.amazonprime-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--amazon-border);
}

.amazonprime-result-header h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--amazon-text-primary);
  letter-spacing: 0.5px;
}

.amazonprime-result-icon {
  font-size: 1.5rem;
  animation: iconBounce 2s ease-in-out infinite;
}

.amazonprime-result-title {
  font-weight: 700;
}

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

/* ═══════════════════════════════════════════════════════════
   🔑 DISPLAY DE CÓDIGO
   ═══════════════════════════════════════════════════════════ */
.amazonprime-result-code {
  background: var(--amazon-bg-dark);
  border: 1px solid var(--amazon-border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.amazonprime-result-code:hover {
  border-color: var(--amazon-border-bright);
  box-shadow: 0 4px 16px rgba(0, 168, 225, 0.15);
}

.amazonprime-code-display {
  display: flex;
  flex-direction: column;  /* ← CAMBIADO: de horizontal a vertical */
  align-items: center;     /* ← CAMBIADO: centrar elementos */
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-left: 4px solid var(--amazon-primary);
  margin-bottom: 1rem;
}

.amazonprime-code-value {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amazon-primary-light);
  letter-spacing: 8px;
  text-shadow: 0 0 20px rgba(0, 168, 225, 0.5);
  animation: codeGlow 2s ease-in-out infinite;
  text-align: center;  /* ← AÑADIDO: centrar el código */
}

@keyframes codeGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(0, 168, 225, 0.5); }
  50% { text-shadow: 0 0 30px rgba(0, 168, 225, 0.8); }
}

.amazonprime-btn-copy {
  width: 100%;  /* ← AÑADIDO: botón ocupa todo el ancho */
  padding: 0.875rem 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--amazon-primary);
  background: linear-gradient(135deg, var(--amazon-bg-elevated) 0%, var(--amazon-bg-card) 100%);
  border: 2px solid var(--amazon-border-bright);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.amazonprime-btn-copy:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--amazon-bg-card) 0%, var(--amazon-bg-dark) 100%);
  border-color: var(--amazon-primary);
  box-shadow: 0 6px 24px rgba(0, 168, 225, 0.3);
}

.amazonprime-btn-copy:active {
  transform: translateY(-1px) scale(0.98);
}

.amazonprime-code-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.amazonprime-validez-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.amazonprime-status-valid {
  background: linear-gradient(135deg, rgba(70, 211, 105, 0.2) 0%, rgba(70, 211, 105, 0.05) 100%);
  border: 1px solid rgba(70, 211, 105, 0.4);
  color: #86efac;
  box-shadow: 0 0 20px rgba(70, 211, 105, 0.2);
}

.amazonprime-status-expiring {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.05) 100%);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fde68a;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.amazonprime-status-expired {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.amazonprime-status-unknown {
  background: linear-gradient(135deg, rgba(107, 126, 145, 0.2) 0%, rgba(107, 126, 145, 0.05) 100%);
  border: 1px solid rgba(107, 126, 145, 0.4);
  color: #9ca3af;
  box-shadow: 0 0 20px rgba(107, 126, 145, 0.2);
}

.amazonprime-fecha-email {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--amazon-text-muted);
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* ═══════════════════════════════════════════════════════════
   📱 RESPONSIVE - MOBILE FIRST
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .amazonprime-platform {
    padding: 1.25rem;
    border-radius: 16px;
    margin: 0 0.75rem;
    max-width: calc(100% - 1.5rem);
  }

  .amazonprime-header {
    margin-bottom: 1.5rem;
  }

  .amazonprime-brand {
    gap: 1rem;
  }

  .amazonprime-logo {
    width: 55px;
    height: 55px;
  }

  .amazonprime-info h1 {
    font-size: 1.75rem;
  }

  .amazonprime-correos-count {
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
  }

  .amazonprime-form-label {
    font-size: 0.85rem;
  }

  .amazonprime-form-input {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
  }

  .amazonprime-btn-consultar {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .amazonprime-result-container {
    padding: 1.25rem;
  }

  .amazonprime-result-header h3 {
    font-size: 1.1rem;
  }

  .amazonprime-code-value {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }

  .amazonprime-code-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .amazonprime-platform {
    padding: 1rem;
    margin: 0 0.5rem;
    max-width: calc(100% - 1rem);
    border-radius: 12px;
  }

  .amazonprime-logo {
    width: 50px;
    height: 50px;
  }

  .amazonprime-info h1 {
    font-size: 1.5rem;
  }

  .amazonprime-btn-consultar {
    font-size: 0.95rem;
  }

  .amazonprime-btn-icon {
    font-size: 1.1rem;
  }

  .amazonprime-form-input {
    font-size: 0.9rem;
  }

  .amazonprime-code-value {
    font-size: 1.25rem;
    letter-spacing: 3px;
  }

  .amazonprime-btn-copy {
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   ✨ EFECTOS ESPECIALES Y ACABADOS
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Efecto de escaneo futurista */
@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ═══════════════════════════════════════════════════════════
   🎬 HBO MAX - PREMIUM STREAMING THEME
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   🎨 VARIABLES DE TEMA HBO MAX
   ═══════════════════════════════════════════════════════════ */
.hbomax-platform {
  --hbo-primary: #0073FF;
  --hbo-primary-dark: #0052CC;
  --hbo-primary-light: #3399FF;
  --hbo-secondary: #120C1D;
  --hbo-accent: #00A8FF;
  --hbo-bg-dark: #0A0A0F;
  --hbo-bg-card: #0F0F17;
  --hbo-bg-elevated: #14141F;
  --hbo-text-primary: #ffffff;
  --hbo-text-secondary: #B8BCC8;
  --hbo-text-muted: #6B7280;
  --hbo-border: rgba(0, 115, 255, 0.15);
  --hbo-border-bright: rgba(0, 115, 255, 0.4);
  --hbo-glow: rgba(0, 115, 255, 0.3);
  --hbo-success: #10B981;
  --hbo-warning: #FBBF24;
  --hbo-error: #EF4444;
  --hbo-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --hbo-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
}

/* ═══════════════════════════════════════════════════════════
   🎯 CONTENEDOR PRINCIPAL
   ═══════════════════════════════════════════════════════════ */
.hbomax-platform {
  font-family: 'Space Grotesk', 'Rajdhani', sans-serif;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--hbo-bg-dark) 0%, #0D0D15 100%);
  border-radius: 24px;
  border: 1px solid var(--hbo-border);
  box-shadow: var(--hbo-shadow-lg), 
              0 0 0 1px rgba(0, 115, 255, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  animation: platformEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-sizing: border-box;
}

.hbomax-platform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--hbo-primary) 30%, 
    var(--hbo-primary-light) 50%, 
    var(--hbo-primary) 70%, 
    transparent 100%
  );
  animation: topBarScan 3s ease-in-out infinite;
}

.hbomax-platform::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 115, 255, 0.08) 0%, transparent 70%);
  animation: ambientGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes platformEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes topBarScan {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

@keyframes ambientGlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
  50% { transform: translate(10%, 10%) rotate(180deg); opacity: 0.8; }
}

/* ═══════════════════════════════════════════════════════════
   🎯 HEADER CON BRANDING
   ═══════════════════════════════════════════════════════════ */
.hbomax-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hbo-border);
  animation: headerSlideIn 0.5s ease-out 0.1s backwards;
}

@keyframes headerSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hbomax-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hbomax-logo {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  padding: 8px;
  background: linear-gradient(135deg, var(--hbo-bg-elevated) 0%, var(--hbo-bg-card) 100%);
  border: 2px solid var(--hbo-border-bright);
  box-shadow: 0 8px 24px rgba(0, 115, 255, 0.25),
              0 0 20px rgba(0, 115, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: logoPulse 3s ease-in-out infinite;
}

.hbomax-logo:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 115, 255, 0.4),
              0 0 40px rgba(0, 115, 255, 0.3);
  border-color: var(--hbo-primary);
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0, 115, 255, 0.25), 0 0 20px rgba(0, 115, 255, 0.15); }
  50% { box-shadow: 0 8px 24px rgba(0, 115, 255, 0.4), 0 0 30px rgba(0, 115, 255, 0.25); }
}

.hbomax-info h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, var(--hbo-primary) 0%, var(--hbo-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-shadow: 0 0 30px rgba(0, 115, 255, 0.3);
  animation: titleShimmer 4s ease-in-out infinite;
}

@keyframes titleShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.hbomax-correos-count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, rgba(0, 115, 255, 0.15) 0%, rgba(0, 115, 255, 0.05) 100%);
  border: 1px solid var(--hbo-border-bright);
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hbo-primary-light);
  letter-spacing: 0.5px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hbomax-correos-count:hover {
  background: linear-gradient(135deg, rgba(0, 115, 255, 0.25) 0%, rgba(0, 115, 255, 0.1) 100%);
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════
   📝 FORMULARIO PRINCIPAL
   ═══════════════════════════════════════════════════════════ */
.hbomax-form {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  animation: formFadeIn 0.5s ease-out 0.2s backwards;
}

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

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

.hbomax-form-label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hbo-text-secondary);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hbomax-input-container {
  position: relative;
}

.hbomax-form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--hbo-text-primary);
  background: var(--hbo-bg-card);
  border: 2px solid var(--hbo-border);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.hbomax-form-input::placeholder {
  color: var(--hbo-text-muted);
  font-weight: 400;
}

.hbomax-form-input:focus {
  background: var(--hbo-bg-elevated);
  border-color: var(--hbo-primary);
  box-shadow: 0 0 0 3px rgba(0, 115, 255, 0.15),
              inset 0 2px 8px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(0, 115, 255, 0.1);
  transform: translateY(-2px);
}

.hbomax-form-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hbomax-input-help {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--hbo-text-muted);
  font-family: 'Rajdhani', sans-serif;
}

/* ═══════════════════════════════════════════════════════════
   🎛️ CUSTOM SELECT DROPDOWN
   ═══════════════════════════════════════════════════════════ */
.hbomax-custom-select {
  position: relative;
}

.hbomax-select-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--hbo-bg-card);
  border: 2px solid var(--hbo-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hbomax-select-display:hover {
  background: var(--hbo-bg-elevated);
  border-color: var(--hbo-border-bright);
  transform: translateY(-2px);
}

.hbomax-selected-option {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hbomax-option-icon {
  font-size: 1.5rem;
  animation: iconFloat 2s ease-in-out infinite;
}

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

.hbomax-option-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hbomax-option-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hbo-text-primary);
}

.hbomax-option-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--hbo-text-muted);
}

.hbomax-dropdown-arrow {
  font-size: 0.8rem;
  color: var(--hbo-text-secondary);
  transition: transform 0.3s ease;
}

.hbomax-dropdown-arrow.active {
  transform: rotate(180deg);
}

.hbomax-select-options {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: var(--hbo-bg-elevated);
  border: 2px solid var(--hbo-border-bright);
  border-radius: 12px;
  overflow: hidden;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: dropdownExpand 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes dropdownExpand {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hbomax-select-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--hbo-border);
}

.hbomax-select-option:last-child {
  border-bottom: none;
}

.hbomax-select-option:hover {
  background: linear-gradient(135deg, rgba(0, 115, 255, 0.15) 0%, rgba(0, 115, 255, 0.05) 100%);
}

.hbomax-select-option.selected {
  background: linear-gradient(135deg, rgba(0, 115, 255, 0.2) 0%, rgba(0, 115, 255, 0.1) 100%);
  border-left: 3px solid var(--hbo-primary);
}

/* ═══════════════════════════════════════════════════════════
   🚀 BOTÓN DE CONSULTA
   ═══════════════════════════════════════════════════════════ */
.hbomax-btn-consultar {
  width: 100%;
  padding: 1.2rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--hbo-primary) 0%, var(--hbo-accent) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 115, 255, 0.35),
              0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

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

.hbomax-btn-consultar:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 115, 255, 0.5),
              0 0 40px rgba(0, 115, 255, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hbomax-btn-consultar:active:not(:disabled) {
  transform: translateY(-1px) scale(0.98);
}

.hbomax-btn-consultar:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hbomax-btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hbomax-btn-icon {
  font-size: 1.3rem;
  animation: iconFloat 2s ease-in-out infinite;
}

.hbomax-btn-text {
  font-weight: 700;
}

.hbomax-btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hbomax-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════
   ⚠️ ALERTAS Y NOTIFICACIONES
   ═══════════════════════════════════════════════════════════ */
.hbomax-alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  animation: alertSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes alertSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hbomax-alert-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #FCA5A5;
}

.hbomax-alert-icon {
  font-size: 1.3rem;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hbomax-alert-message {
  flex: 1 1;
}

/* ═══════════════════════════════════════════════════════════
   📊 CONTENEDOR DE RESULTADOS
   ═══════════════════════════════════════════════════════════ */
.hbomax-result-container {
  background: linear-gradient(135deg, var(--hbo-bg-elevated) 0%, var(--hbo-bg-card) 100%);
  border: 1px solid var(--hbo-border-bright);
  border-radius: 16px;
  padding: 1.75rem;
  margin-top: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: resultExpand 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.hbomax-result-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hbo-primary), transparent);
  animation: resultGlow 2s ease-in-out infinite;
}

@keyframes resultExpand {
  from {
    opacity: 0;
    transform: scale(0.95);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: scale(1);
    max-height: 1000px;
  }
}

@keyframes resultGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hbomax-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hbo-border);
}

.hbomax-result-header h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--hbo-text-primary);
  letter-spacing: 0.5px;
}

.hbomax-result-icon {
  font-size: 1.5rem;
  animation: iconBounce 2s ease-in-out infinite;
}

.hbomax-result-title {
  font-weight: 700;
}

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

/* ═══════════════════════════════════════════════════════════
   🔑 DISPLAY DE CÓDIGO
   ═══════════════════════════════════════════════════════════ */
.hbomax-result-code {
  background: var(--hbo-bg-dark);
  border: 1px solid var(--hbo-border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.hbomax-result-code:hover {
  border-color: var(--hbo-border-bright);
  box-shadow: 0 4px 16px rgba(0, 115, 255, 0.15);
}

.hbomax-code-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-left: 4px solid var(--hbo-primary);
  margin-bottom: 1rem;
}

.hbomax-code-value {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--hbo-primary-light);
  letter-spacing: 8px;
  text-shadow: 0 0 20px rgba(0, 115, 255, 0.5);
  animation: codeGlow 2s ease-in-out infinite;
  text-align: center;
}

@keyframes codeGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(0, 115, 255, 0.5); }
  50% { text-shadow: 0 0 30px rgba(0, 115, 255, 0.8); }
}

.hbomax-btn-copy {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hbo-primary);
  background: linear-gradient(135deg, var(--hbo-bg-elevated) 0%, var(--hbo-bg-card) 100%);
  border: 2px solid var(--hbo-border-bright);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hbomax-btn-copy:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--hbo-bg-card) 0%, var(--hbo-bg-dark) 100%);
  border-color: var(--hbo-primary);
  box-shadow: 0 6px 24px rgba(0, 115, 255, 0.3);
}

.hbomax-btn-copy:active {
  transform: translateY(-1px) scale(0.98);
}

.hbomax-code-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.hbomax-validez-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hbomax-status-valid {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6EE7B7;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.hbomax-status-expiring {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.05) 100%);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #FDE68A;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.hbomax-status-expired {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #FCA5A5;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.hbomax-status-unknown {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.2) 0%, rgba(107, 114, 128, 0.05) 100%);
  border: 1px solid rgba(107, 114, 128, 0.4);
  color: #9CA3AF;
  box-shadow: 0 0 20px rgba(107, 114, 128, 0.2);
}

.hbomax-fecha-email {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--hbo-text-muted);
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}


/* ═══════════════════════════════════════════════════════════
   🔗 PREVIEW Y ACCIONES DE LINK
   ═══════════════════════════════════════════════════════════ */
.hbomax-result-link {
  background: var(--hbo-bg-dark);
  border: 1px solid var(--hbo-border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.hbomax-result-link:hover {
  border-color: var(--hbo-border-bright);
  box-shadow: 0 4px 16px rgba(0, 115, 255, 0.15);
}

.hbomax-link-preview {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 3px solid var(--hbo-primary);
}

.hbomax-link-text {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.9rem;
  color: var(--hbo-text-secondary);
  word-break: break-all;
  line-height: 1.6;
}

.hbomax-link-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.hbomax-validez-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hbomax-status-valid {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6EE7B7;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.hbomax-status-expiring {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.05) 100%);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #FDE68A;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.hbomax-status-expired {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #FCA5A5;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.hbomax-status-unknown {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.2) 0%, rgba(107, 114, 128, 0.05) 100%);
  border: 1px solid rgba(107, 114, 128, 0.4);
  color: #9CA3AF;
  box-shadow: 0 0 20px rgba(107, 114, 128, 0.2);
}

.hbomax-fecha-email {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--hbo-text-muted);
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.hbomax-link-actions {
  display: flex;
flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hbomax-btn-open,
.hbomax-btn-copy {
  flex: 1 1;
  padding: 0.875rem 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hbomax-btn-open {
  background: linear-gradient(135deg, var(--hbo-primary) 0%, var(--hbo-accent) 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 115, 255, 0.3);
}

.hbomax-btn-open:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 115, 255, 0.5);
}

.hbomax-btn-copy {
  background: linear-gradient(135deg, var(--hbo-bg-elevated) 0%, var(--hbo-bg-card) 100%);
  color: var(--hbo-primary);
  border: 2px solid var(--hbo-border-bright);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hbomax-btn-copy:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--hbo-bg-card) 0%, var(--hbo-bg-dark) 100%);
  border-color: var(--hbo-primary);
  box-shadow: 0 6px 24px rgba(0, 115, 255, 0.3);
}

.hbomax-btn-open:active,
.hbomax-btn-copy:active {
  transform: translateY(-1px) scale(0.98);
}

/* ═══════════════════════════════════════════════════════════
   📱 RESPONSIVE - MOBILE FIRST
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hbomax-platform {
    padding: 1.25rem;
    border-radius: 16px;
    margin: 0 0.75rem;
    max-width: calc(100% - 1.5rem);
  }

  .hbomax-header {
    margin-bottom: 1.5rem;
  }

  .hbomax-brand {
    gap: 1rem;
  }

  .hbomax-logo {
    width: 55px;
    height: 55px;
  }

  .hbomax-info h1 {
    font-size: 1.75rem;
  }

  .hbomax-correos-count {
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
  }

  .hbomax-form-label {
    font-size: 0.85rem;
  }

  .hbomax-form-input {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hbomax-btn-consultar {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .hbomax-result-container {
    padding: 1.25rem;
  }

  .hbomax-result-header h3 {
    font-size: 1.1rem;
  }

  .hbomax-code-value {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }

  .hbomax-link-actions {
    flex-direction: column;
  }

  .hbomax-btn-open,
  .hbomax-btn-copy {
    width: 100%;
  }

  .hbomax-link-status,
  .hbomax-code-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hbomax-platform {
    padding: 1rem;
    margin: 0 0.5rem;
    max-width: calc(100% - 1rem);
    border-radius: 12px;
  }

  .hbomax-logo {
    width: 50px;
    height: 50px;
  }

  .hbomax-info h1 {
    font-size: 1.5rem;
  }

  .hbomax-btn-consultar {
    font-size: 0.95rem;
  }

  .hbomax-btn-icon {
    font-size: 1.1rem;
  }

  .hbomax-form-input {
    font-size: 0.9rem;
  }

  .hbomax-code-value {
    font-size: 1.25rem;
    letter-spacing: 3px;
  }

  .hbomax-link-text {
    font-size: 0.8rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   ✨ EFECTOS ESPECIALES Y ACABADOS
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Efecto de escaneo futurista */
@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ═══════════════════════════════════════════════════════════
   👤 MIS CUENTAS - PERFIL Y ASIGNACIONES
   ═══════════════════════════════════════════════════════════ */

.miscuentas-main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeInUp 0.5s ease-out;
}

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

/* ═══════════════════════════════════════════════════════════
   🎯 LOADING STATE
   ═══════════════════════════════════════════════════════════ */
.miscuentas-loading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  gap: 1.5rem;
}

.miscuentas-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(76, 175, 80, 0.2);
  border-top-color: #4CAF50;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.miscuentas-loading-text {
  font-size: 1.1rem;
  color: #b3b3b3;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   📋 HEADER CON INFO DEL USUARIO
   ═══════════════════════════════════════════════════════════ */
.miscuentas-header-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.miscuentas-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.miscuentas-info-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.miscuentas-info-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #4CAF50;
  transform: translateY(-2px);
}

.miscuentas-info-label {
  font-size: 0.85rem;
  color: #808080;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.miscuentas-info-value {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 700;
  word-break: break-word;
}

.miscuentas-info-value-highlight {
  font-size: 1.3rem;
  color: #4CAF50;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   🟢 ESTADO DE LA CUENTA
   ═══════════════════════════════════════════════════════════ */
.miscuentas-status-section {
  margin-bottom: 2rem;
}

.miscuentas-status-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  flex-wrap: wrap;
  gap: 1rem;
}

.miscuentas-status-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.miscuentas-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.miscuentas-status-active {
  background: #4CAF50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.miscuentas-status-inactive {
  background: #FF9800;
  box-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

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

.miscuentas-status-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.miscuentas-status-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.miscuentas-date-label {
  font-size: 0.9rem;
  color: #808080;
  font-weight: 600;
}

.miscuentas-date-value {
  font-size: 0.95rem;
  color: #b3b3b3;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   📺 PLATAFORMAS CON CORREOS
   ═══════════════════════════════════════════════════════════ */
.miscuentas-platforms-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.miscuentas-platform-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.miscuentas-platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--miscuentas-platform-color);
  opacity: 0.5;
}

.miscuentas-platform-card:hover {
  border-color: var(--miscuentas-platform-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
              0 0 20px var(--miscuentas-platform-color);
  transform: translateY(-2px);
}

.miscuentas-platform-expanded {
  border-color: var(--miscuentas-platform-color);
}

/* ═══════════════════════════════════════════════════════════
   🎯 HEADER DE PLATAFORMA (CLICKEABLE)
   ═══════════════════════════════════════════════════════════ */
.miscuentas-platform-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 1rem;
}

.miscuentas-platform-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.miscuentas-platform-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1 1;
  min-width: 0;
}

.miscuentas-platform-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: contain;
  padding: 5px;
  background: rgba(255, 18, 18, 0.05);
  border: 3px solid var(--miscuentas-platform-color);
  box-shadow: 0 0 15px var(--miscuentas-platform-color);
  flex-shrink: 0;
}

.miscuentas-platform-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.miscuentas-platform-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.miscuentas-platform-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.miscuentas-platform-subtitle {
  font-size: 0.9rem;
  color: var(--miscuentas-platform-color);
  font-weight: 600;
}

.miscuentas-platform-date {
  font-size: 0.8rem;
  color: #808080;
}

.miscuentas-platform-right {
  flex-shrink: 0;
}

.miscuentas-expand-arrow {
  font-size: 1.2rem;
  color: #808080;
  transition: transform 0.3s ease;
  display: inline-block;
}

.miscuentas-expand-rotated {
  transform: rotate(180deg);
  color: var(--miscuentas-platform-color);
}

/* ═══════════════════════════════════════════════════════════
   📧 CUERPO EXPANDIBLE CON CORREOS
   ═══════════════════════════════════════════════════════════ */
.miscuentas-platform-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.miscuentas-email-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.miscuentas-email-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--miscuentas-platform-color);
  transform: translateX(5px);
}

.miscuentas-email-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.miscuentas-email-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: #808080;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

.miscuentas-email-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.miscuentas-email-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.miscuentas-email-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1;
  min-width: 0;
}

.miscuentas-email-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.miscuentas-email-address {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  word-break: break-all;
}

.miscuentas-copy-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, var(--miscuentas-platform-color) 0%, var(--miscuentas-platform-color) 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

.miscuentas-copy-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3),
              0 0 20px var(--miscuentas-platform-color);
}

.miscuentas-copy-btn:active {
  transform: translateY(0) scale(0.98);
}

.miscuentas-copy-success {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  animation: successPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.miscuentas-copy-icon {
  font-size: 1.1rem;
}

.miscuentas-copy-text {
  font-weight: 700;
}

.miscuentas-email-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.miscuentas-footer-label {
  font-size: 0.8rem;
  color: #808080;
  font-weight: 600;
}

.miscuentas-footer-value {
  font-size: 0.85rem;
  color: #b3b3b3;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   📊 HISTORIAL DE CONSULTAS
   ═══════════════════════════════════════════════════════════ */
.miscuentas-historial-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.miscuentas-historial-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
}

.miscuentas-historial-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.miscuentas-historial-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
  gap: 1rem;
  flex-wrap: wrap;
}

.miscuentas-historial-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.miscuentas-historial-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1 1;
  min-width: 0;
}

.miscuentas-historial-platform {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.miscuentas-historial-email {
  font-size: 0.85rem;
  color: #808080;
  word-break: break-all;
}

.miscuentas-historial-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.miscuentas-historial-badge {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
}

.miscuentas-historial-success {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.05) 100%);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #4CAF50;
}

.miscuentas-historial-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.miscuentas-historial-timestamp {
  font-size: 0.75rem;
  color: #666666;
}

/* ═══════════════════════════════════════════════════════════
   📭 ESTADO VACÍO
   ═══════════════════════════════════════════════════════════ */
.miscuentas-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeInUp 0.5s ease-out;
}

.miscuentas-empty-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  animation: floatIcon 3s ease-in-out infinite;
}

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

.miscuentas-empty-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0 0 1rem 0;
}

.miscuentas-empty-text {
  font-size: 1.1rem;
  color: #808080;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   📝 FOOTER
   ═══════════════════════════════════════════════════════════ */
.miscuentas-footer-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.miscuentas-footer-note {
  font-size: 0.95rem;
  color: #b3b3b3;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.miscuentas-footer-uid {
  font-size: 0.85rem;
  color: #666666;
  margin: 0;
  word-break: break-all;
}

/* ═══════════════════════════════════════════════════════════
   📱 RESPONSIVE - MÓVIL
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .miscuentas-main-container {
    padding: 1rem;
  }

  .miscuentas-header-section {
    padding: 1.25rem;
  }

  .miscuentas-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .miscuentas-info-box {
    padding: 0.75rem;
  }

  .miscuentas-info-value {
    font-size: 1rem;
  }

  .miscuentas-info-value-highlight {
    font-size: 1.1rem;
  }

  .miscuentas-status-card {
    padding: 1rem;
  }

  .miscuentas-platform-header {
    padding: 1rem;
  }

  .miscuentas-platform-logo {
    width: 40px;
    height: 40px;
  }

  .miscuentas-platform-name {
    font-size: 1.2rem;
  }

  .miscuentas-platform-body {
    padding: 0 1rem 1rem 1rem;
  }

  .miscuentas-email-content {
    flex-direction: column;
    align-items: stretch;
  }

  .miscuentas-copy-btn {
    width: 100%;
    justify-content: center;
  }

  .miscuentas-historial-section {
    padding: 1.25rem;
  }

  .miscuentas-historial-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .miscuentas-historial-right {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .miscuentas-main-container {
    padding: 0.75rem;
  }

  .miscuentas-info-grid {
    grid-template-columns: 1fr;
  }

  .miscuentas-platform-name {
    font-size: 1.1rem;
  }

  .miscuentas-email-address {
    font-size: 0.9rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   ⚙️ CONFIGURACIÓN - GESTIÓN DE CUENTA Y SEGURIDAD
   ═══════════════════════════════════════════════════════════ */

.config-main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeInUp 0.5s ease-out;
}

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

/* ═══════════════════════════════════════════════════════════
   🔄 LOADING STATE
   ═══════════════════════════════════════════════════════════ */
.config-loading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  gap: 1.5rem;
}

.config-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 152, 0, 0.2);
  border-top-color: #FF9800;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.config-loading-text {
  font-size: 1.1rem;
  color: #b3b3b3;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   🎯 HEADER
   ═══════════════════════════════════════════════════════════ */
.config-header-section {
  margin-bottom: 2rem;
}

.config-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.config-header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.config-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.2) 0%, rgba(255, 152, 0, 0.05) 100%);
  border: 2px solid rgba(255, 152, 0, 0.3);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 152, 0, 0.2);
}

.config-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.config-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.config-subtitle {
  font-size: 1rem;
  color: #808080;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   📑 TABS
   ═══════════════════════════════════════════════════════════ */
.config-tabs-wrapper {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.config-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #808080;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  bottom: -2px;
}

.config-tab-btn:hover {
  color: #FF9800;
  background: rgba(255, 152, 0, 0.05);
}

.config-tab-active {
  color: #FF9800;
  border-bottom-color: #FF9800;
}

.config-tab-icon {
  font-size: 1.3rem;
}

.config-tab-text {
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   📄 CARDS
   ═══════════════════════════════════════════════════════════ */
.config-content-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.config-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: cardSlideIn 0.4s ease-out backwards;
}

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

.config-card:hover {
  border-color: rgba(255, 152, 0, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.config-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.config-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.config-card-body {
  padding: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   📊 DATOS PERSONALES
   ═══════════════════════════════════════════════════════════ */
.config-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.config-data-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.config-data-label {
  font-size: 0.85rem;
  color: #808080;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.config-data-value-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.config-data-value-wrapper:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 152, 0, 0.3);
}

.config-data-value {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  flex: 1 1;
  word-break: break-word;
}

.config-data-badge {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.2) 0%, rgba(255, 152, 0, 0.05) 100%);
  border: 1px solid rgba(255, 152, 0, 0.4);
  color: #FF9800;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.config-status-badge {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.config-status-active {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.05) 100%);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #4CAF50;
}

.config-status-inactive {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.2) 0%, rgba(255, 152, 0, 0.05) 100%);
  border: 1px solid rgba(255, 152, 0, 0.4);
  color: #FF9800;
}

/* ═══════════════════════════════════════════════════════════
   📋 BOTÓN DE COPIAR
   ═══════════════════════════════════════════════════════════ */
.config-copy-btn {
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.config-copy-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

.config-copy-success {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  animation: successPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════════
   🔑 UID BOX
   ═══════════════════════════════════════════════════════════ */
.config-uid-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 152, 0, 0.2);
  border-radius: 10px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.config-uid-code {
  flex: 1 1;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  color: #FF9800;
  background: rgba(255, 152, 0, 0.1);
  padding: 0.75rem;
  border-radius: 6px;
  word-break: break-all;
}

.config-copy-btn-large {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.config-copy-btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.config-copy-icon {
  font-size: 1.1rem;
}

.config-uid-note {
  font-size: 0.9rem;
  color: #808080;
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   📺 PLATAFORMAS
   ═══════════════════════════════════════════════════════════ */
.config-platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.config-platform-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.config-platform-chip:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #FF9800;
  transform: translateY(-2px);
}

.config-platform-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.config-platform-status {
  font-size: 1.2rem;
}

.config-empty-text {
  font-size: 1rem;
  color: #808080;
  text-align: center;
  padding: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   🔐 FORMULARIO DE CONTRASEÑA
   ═══════════════════════════════════════════════════════════ */
.config-password-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.config-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.config-form-label {
  font-size: 0.9rem;
  color: #b3b3b3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.config-form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.config-form-input::placeholder {
  color: #666666;
}

.config-form-input:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: #FF9800;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.15);
}

.config-form-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.config-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.config-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #FF9800;
}

.config-checkbox-label {
  font-size: 0.95rem;
  color: #b3b3b3;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   ⚠️ ALERTAS
   ═══════════════════════════════════════════════════════════ */
.config-alert {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  animation: alertSlideIn 0.3s ease-out;
}

@keyframes alertSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.config-alert-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.config-alert-success {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.05) 100%);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #81c784;
}

/* ═══════════════════════════════════════════════════════════
   🚀 BOTONES DE ACCIÓN
   ═══════════════════════════════════════════════════════════ */
.config-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.config-submit-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 152, 0, 0.4);
}

.config-submit-btn:active:not(:disabled) {
  transform: translateY(-1px);
}

.config-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.config-btn-spinner {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.config-btn-icon {
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════════════════
   🚪 BOTÓN CERRAR SESIÓN
   ═══════════════════════════════════════════════════════════ */
.config-logout-text {
  font-size: 1rem;
  color: #b3b3b3;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.config-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f44336 0%, #e53935 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.config-logout-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(244, 67, 54, 0.4);
}

.config-logout-icon {
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════════════════
   📱 RESPONSIVE - MÓVIL
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .config-main-container {
    padding: 1rem;
  }

  .config-title {
    font-size: 1.75rem;
  }

  .config-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }

  .config-tabs-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .config-tabs-wrapper::-webkit-scrollbar {
    display: none;
  }

  .config-tab-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .config-data-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .config-uid-box {
    flex-direction: column;
    align-items: stretch;
  }

  .config-copy-btn-large {
    width: 100%;
    justify-content: center;
  }

  .config-platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .config-card-header {
    padding: 1.25rem;
  }

  .config-card-body {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .config-main-container {
    padding: 0.75rem;
  }

  .config-title {
    font-size: 1.5rem;
  }

  .config-subtitle {
    font-size: 0.9rem;
  }

  .config-platforms-grid {
    grid-template-columns: 1fr;
  }

  .config-submit-btn,
  .config-logout-btn {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
  }
}

/* Dashboard.css - REMASTERIZADO ESTILO ADMINPANEL */

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #121212;
  --bg-tertiary: #1a1a1a;
  --bg-card: #161616;
  --bg-input: #1e1e1e;
  --bg-hover: #252525;
  
  --orange-primary: #25a995;
  --orange-secondary: #ff8c52;
  --orange-dark: #e55a1f;
  --orange-glow: rgba(37, 169, 149, 0.3);
  --orange-light: rgba(37, 169, 149, 0.1);
  
  --text-primary: #e8e8e8;
  --text-secondary: #b0b0b0;
  --text-tertiary: #808080;
  --text-muted: #606060;
  
  --border-primary: #2a2a2a;
  --border-secondary: #353535;
  
  --success: #00d68f;
  --error: #ff3860;
  --warning: #ffaa00;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.7);
  
  --glass-bg: rgba(22, 22, 22, 0.8);
  --glass-border: rgba(255, 255, 255, 0.05);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --sidebar-width-open: 280px;
  --sidebar-width-closed: 80px;
  --navbar-height: 70px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a0a;
  background: var(--bg-primary);
  color: #e8e8e8;
  color: var(--text-primary);
  overflow-x: hidden;
}

/* ========================================
   CONTAINER PRINCIPAL
   ======================================== */

.panel-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #0a0a0a;
  background: var(--bg-primary);
}

/* ========================================
   NAVBAR SUPERIOR
   ======================================== */

.panel-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  height: var(--navbar-height);
  background: #161616;
  background: var(--bg-card);
  border-bottom: 1px solid #2a2a2a;
  border-bottom: 1px solid var(--border-primary);
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.panel-navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  gap: 20px;
}

.panel-menu-button-mobile {
  display: none;
  background: transparent;
  border: none;
  color: #e8e8e8;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  border-radius: 12px;
  border-radius: var(--radius-md);
  transition: 0.2s ease;
  transition: var(--transition-fast);
}

.panel-menu-button-mobile:hover {
  background: #252525;
  background: var(--bg-hover);
  color: #25a995;
  color: var(--orange-primary);
}

.panel-sidebar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e1e1e;
  background: var(--bg-input);
  border: 1px solid #2a2a2a;
  border: 1px solid var(--border-primary);
  color: #e8e8e8;
  color: var(--text-primary);
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  border-radius: var(--radius-md);
  transition: 0.2s ease;
  transition: var(--transition-fast);
}

.panel-sidebar-toggle:hover {
  background: #252525;
  background: var(--bg-hover);
  border-color: #25a995;
  border-color: var(--orange-primary);
  color: #25a995;
  color: var(--orange-primary);
  transform: scale(1.05);
}

.panel-navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1;
}

.panel-logo-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid #25a995;
  border: 2px solid var(--orange-primary);
  box-shadow: 0 0 20px rgba(37, 169, 149, 0.3);
  box-shadow: 0 0 20px var(--orange-glow);
}

.panel-logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #e8e8e8;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.panel-navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.panel-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: #1e1e1e;
  background: var(--bg-input);
  border: 1px solid #2a2a2a;
  border: 1px solid var(--border-primary);
  border-radius: 9999px;
  border-radius: var(--radius-full);
  transition: 0.2s ease;
  transition: var(--transition-fast);
}

.panel-user-info:hover {
  border-color: #25a995;
  border-color: var(--orange-primary);
  background: #252525;
  background: var(--bg-hover);
}

.panel-user-name {
  font-size: 14px;
  font-weight: 600;
  color: #e8e8e8;
  color: var(--text-primary);
}

.panel-logout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff3860;
  background: var(--error);
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  border-radius: var(--radius-md);
  transition: 0.2s ease;
  transition: var(--transition-fast);
}

.panel-logout-button:hover {
  background: #cc2d4d;
  transform: scale(1.05);
}

/* ========================================
   LAYOUT PRINCIPAL
   ======================================== */

.panel-main-layout {
  display: flex;
  margin-top: 70px;
  margin-top: var(--navbar-height);
  min-height: calc(100vh - 70px);
  min-height: calc(100vh - var(--navbar-height));
}

/* ========================================
   SIDEBAR DESKTOP
   ======================================== */

.panel-sidebar {
  position: fixed;
  left: 0;
  top: 70px;
  top: var(--navbar-height);
  height: calc(100vh - 70px);
  height: calc(100vh - var(--navbar-height));
  background: #161616;
  background: var(--bg-card);
  border-right: 1px solid #2a2a2a;
  border-right: 1px solid var(--border-primary);
  transition: width 0.3s ease;
  transition: width var(--transition-normal);
  z-index: 999;
  overflow: hidden;
}

.panel-sidebar.open {
  width: 280px;
  width: var(--sidebar-width-open);
}

.panel-sidebar.closed {
  width: 80px;
  width: var(--sidebar-width-closed);
}

.panel-sidebar-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 0;
}

.panel-sidebar-content::-webkit-scrollbar {
  width: 6px;
}

.panel-sidebar-content::-webkit-scrollbar-track {
  background: #161616;
  background: var(--bg-card);
}

.panel-sidebar-content::-webkit-scrollbar-thumb {
  background: #353535;
  background: var(--border-secondary);
  border-radius: 10px;
}

.panel-sidebar-content::-webkit-scrollbar-thumb:hover {
  background: #25a995;
  background: var(--orange-primary);
}

.panel-sidebar-header {
  padding: 0 20px;
  margin-bottom: 16px;
}

.panel-sidebar-title {
  font-size: 12px;
  font-weight: 700;
  color: #808080;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.panel-stats-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #b0b0b0;
  color: var(--text-secondary);
}

.stats-item {
  font-weight: 500;
}

.stats-divider {
  color: #606060;
  color: var(--text-muted);
}

.panel-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
  margin-bottom: 24px;
}

.panel-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: 0.2s ease;
  transition: var(--transition-fast);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.panel-sidebar-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #25a995;
  background: var(--orange-primary);
  transform: scaleY(0);
  transition: transform 0.2s ease;
  transition: transform var(--transition-fast);
}

.panel-sidebar-item:hover {
  background: #252525;
  background: var(--bg-hover);
  border-color: #353535;
  border-color: var(--border-secondary);
}

.panel-sidebar-item.active {
  background: rgba(37, 169, 149, 0.1);
  background: var(--orange-light);
  border-color: #25a995;
  border-color: var(--orange-primary);
}

.panel-sidebar-item.active::before {
  transform: scaleY(1);
}

.panel-sidebar-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.panel-sidebar-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-sidebar-icon-inner {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e1e1e;
  background: var(--bg-input);
  border: 1px solid #2a2a2a;
  border: 1px solid var(--border-primary);
  transition: 0.2s ease;
  transition: var(--transition-fast);
}

.panel-sidebar-item:hover .panel-sidebar-icon-inner {
  border-color: #25a995;
  border-color: var(--orange-primary);
  box-shadow: 0 0 15px rgba(37, 169, 149, 0.3);
  box-shadow: 0 0 15px var(--orange-glow);
}

.panel-sidebar-item.active .panel-sidebar-icon-inner {
  border-color: #25a995;
  border-color: var(--orange-primary);
  box-shadow: 0 0 20px rgba(37, 169, 149, 0.3);
  box-shadow: 0 0 20px var(--orange-glow);
}

.platform-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-cosmic-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-sidebar-info {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.panel-sidebar-name {
  font-size: 14px;
  font-weight: 600;
  color: #e8e8e8;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.panel-sidebar-status {
  font-size: 11px;
  font-weight: 500;
  color: #b0b0b0;
  color: var(--text-secondary);
}

.panel-sidebar-status.status-active {
  color: #00d68f;
  color: var(--success);
}

.panel-sidebar-status.status-locked {
  color: #606060;
  color: var(--text-muted);
}

.panel-sidebar-status.status-maintenance {
  color: #ffaa00;
  color: var(--warning);
}

.panel-sidebar-arrow {
  flex-shrink: 0;
  color: #808080;
  color: var(--text-tertiary);
  transition: 0.2s ease;
  transition: var(--transition-fast);
}

.panel-sidebar-item:hover .panel-sidebar-arrow {
  color: #25a995;
  color: var(--orange-primary);
  transform: translateX(3px);
}

.panel-sidebar-item.active .panel-sidebar-arrow {
  color: #25a995;
  color: var(--orange-primary);
}

/* Sidebar cerrado: solo íconos */
.panel-sidebar.closed .panel-sidebar-header,
.panel-sidebar.closed .panel-sidebar-info,
.panel-sidebar.closed .panel-sidebar-arrow {
  display: none;
}

.panel-sidebar.closed .panel-sidebar-item {
  justify-content: center;
  padding: 12px;
}

/* ========================================
   SIDEBAR MOBILE
   ======================================== */

.panel-sidebar-overlay {
  display: none;
  position: fixed;
  top: 70px;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 998;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.panel-sidebar-mobile {
  display: none;
  position: fixed;
  top: 70px;
  top: var(--navbar-height);
  left: 0;
  width: 85%;
  max-width: 320px;
  height: calc(100vh - 70px);
  height: calc(100vh - var(--navbar-height));
  background: #161616;
  background: var(--bg-card);
  border-right: 1px solid #2a2a2a;
  border-right: 1px solid var(--border-primary);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  transition: transform var(--transition-normal);
  overflow-y: auto;
}

.panel-sidebar-mobile.open {
  transform: translateX(0);
}

.panel-sidebar-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #2a2a2a;
  border-bottom: 1px solid var(--border-primary);
}

.panel-sidebar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e1e1e;
  background: var(--bg-input);
  border: 1px solid #2a2a2a;
  border: 1px solid var(--border-primary);
  color: #e8e8e8;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  border-radius: 12px;
  border-radius: var(--radius-md);
  transition: 0.2s ease;
  transition: var(--transition-fast);
}

.panel-sidebar-close:hover {
  background: #ff3860;
  background: var(--error);
  border-color: #ff3860;
  border-color: var(--error);
  color: white;
}

.panel-stats-mini-mobile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
  background: #1e1e1e;
  background: var(--bg-input);
  border-bottom: 1px solid #2a2a2a;
  border-bottom: 1px solid var(--border-primary);
  font-size: 12px;
  color: #b0b0b0;
  color: var(--text-secondary);
}

/* ========================================
   CONTENIDO PRINCIPAL
   ======================================== */

.panel-content {
  flex: 1 1;
  margin-left: 280px;
  margin-left: var(--sidebar-width-open);
  padding: 32px;
  min-height: calc(100vh - 70px);
  min-height: calc(100vh - var(--navbar-height));
  transition: margin-left 0.3s ease;
  transition: margin-left var(--transition-normal);
}

.panel-sidebar.closed ~ .panel-main-layout .panel-content {
  margin-left: 80px;
  margin-left: var(--sidebar-width-closed);
}

/* ========================================
   LOADING
   ======================================== */

.panel-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #0a0a0a;
  background: var(--bg-primary);
  gap: 20px;
}

.panel-loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #2a2a2a;
  border: 4px solid var(--border-primary);
  border-top-color: #25a995;
  border-top-color: var(--orange-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.panel-loading-text {
  font-size: 16px;
  font-weight: 600;
  color: #b0b0b0;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

/* ========================================
   ERROR
   ======================================== */

.dashboard-error {
  background: #161616;
  background: var(--bg-card);
  border: 1px solid #ff3860;
  border: 1px solid var(--error);
  border-radius: 16px;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-md);
}

.error-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.error-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.error-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ff3860;
  color: var(--error);
  margin-bottom: 4px;
}

.error-text p {
  font-size: 14px;
  color: #b0b0b0;
  color: var(--text-secondary);
}

.btn-retry {
  margin-left: auto;
  padding: 8px 16px;
  background: #25a995;
  background: var(--orange-primary);
  border: none;
  border-radius: 12px;
  border-radius: var(--radius-md);
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-retry:hover {
  background: #e55a1f;
  background: var(--orange-dark);
  transform: scale(1.05);
}

/* ========================================
   MANTENIMIENTO
   ======================================== */

.dashboard-maintenance {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.maintenance-card {
  background: #161616;
  background: var(--bg-card);
  border: 1px solid #2a2a2a;
  border: 1px solid var(--border-primary);
  border-radius: 24px;
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  box-shadow: var(--shadow-lg);
}

.maintenance-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.maintenance-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #e8e8e8;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.maintenance-card p {
  font-size: 15px;
  color: #b0b0b0;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.maintenance-subtitle {
  color: #808080;
  color: var(--text-tertiary);
  font-size: 14px;
}

.btn-support {
  margin-top: 24px;
  padding: 12px 24px;
  background: #25a995;
  background: var(--orange-primary);
  border: none;
  border-radius: 12px;
  border-radius: var(--radius-md);
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  transition: var(--transition-fast);
}

.btn-support:hover {
  background: #e55a1f;
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 169, 149, 0.3);
  box-shadow: 0 4px 16px var(--orange-glow);
}

/* ========================================
   TOAST DE LOGOUT
   ======================================== */

.dashboard-logout-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #161616;
  background: var(--bg-card);
  border: 2px solid #25a995;
  border: 2px solid var(--orange-primary);
  border-radius: 16px;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  animation: slideInScale 0.3s ease;
  min-width: 320px;
}

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.dashboard-logout-content strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #e8e8e8;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.dashboard-logout-content p {
  font-size: 14px;
  color: #b0b0b0;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.dashboard-logout-timer {
  height: 4px;
  background: #25a995;
  background: var(--orange-primary);
  border-radius: 9999px;
  border-radius: var(--radius-full);
  animation: shrink 2s linear forwards;
}

@keyframes shrink {
  from { width: 100%; }
  to { width: 0%; }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .panel-content {
    margin-left: 80px;
    margin-left: var(--sidebar-width-closed);
  }

  .panel-sidebar {
    width: 80px;
    width: var(--sidebar-width-closed);
  }

  .panel-sidebar-header,
  .panel-sidebar-info,
  .panel-sidebar-arrow {
    display: none;
  }

  .panel-sidebar-item {
    justify-content: center;
    padding: 12px;
  }
}

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

  .panel-sidebar-toggle {
    display: none;
  }

  .panel-sidebar {
    display: none;
  }

  .panel-sidebar-overlay {
    display: block;
  }

  .panel-sidebar-mobile {
    display: block;
  }

  .panel-content {
    margin-left: 0;
    padding: 20px;
  }

  .panel-navbar-content {
    padding: 0 16px;
  }

  .panel-logo-text {
    display: none;
  }

  .panel-user-name {
    display: none;
  }
}

@media (max-width: 480px) {
  .panel-content {
    padding: 16px;
  }

  .maintenance-card {
    padding: 32px 24px;
  }

  .maintenance-card h2 {
    font-size: 20px;
  }

  .maintenance-icon {
    font-size: 48px;
  }
}

:root {
  --admin-black: #000000;
  --admin-black-card: #050505;
  --admin-black-lighter: #0d0d0d;
  --admin-red: #8b0000;
  --admin-red-light: #b71c1c;
  --admin-red-dark: #5f0000;
  --admin-gold: #b8860b;
  --admin-gold-light: #daa520;
  --admin-gold-dark: #8b6914;
  --admin-border: rgba(139, 0, 0, 0.2);
  --admin-border-light: rgba(139, 0, 0, 0.3);
  --admin-glow-red: rgba(139, 0, 0, 0.8);
  --admin-glow-gold: rgba(184, 134, 11, 0.7);
  --admin-text: #ffffff;
  --admin-text-secondary: #a0a0a0;
  --admin-text-muted: #6b6b6b;
  --admin-success: #0d7350;
  --admin-warning: #d97706;
  --admin-error: #b71c1c;
  --admin-sidebar-width: 280px;
  --admin-sidebar-collapsed: 70px;
}

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

/* ========================================
   CONTENEDOR PRINCIPAL
   ======================================== */

.admin-panel-container {
  min-height: 100vh;
  background: #000000;
  background: var(--admin-black);
  font-family: 'Rajdhani', sans-serif;
  color: #ffffff;
  color: var(--admin-text);
}

/* ========================================
   NAVBAR
   ======================================== */

.admin-navbar {
  background: #050505;
  background: var(--admin-black-card);
  border-bottom: 1px solid rgba(139, 0, 0, 0.2);
  border-bottom: 1px solid var(--admin-border);
  padding: 12px 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.admin-navbar-content {
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-sidebar-toggle {
  background: transparent;
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  color: #ffffff;
  color: var(--admin-text);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.admin-sidebar-toggle:hover {
  background: rgba(139, 0, 0, 0.15);
  border-color: #8b0000;
  border-color: var(--admin-red);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 15px var(--admin-glow-red);
}

.admin-menu-button-mobile {
  background: transparent;
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  color: #ffffff;
  color: var(--admin-text);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.admin-menu-button-mobile:hover {
  background: rgba(139, 0, 0, 0.15);
  border-color: #8b0000;
  border-color: var(--admin-red);
}

.admin-navbar-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.admin-logo-wrapper {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #5f0000, #8b0000);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-red));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 30px var(--admin-glow-red);
  animation: logoFloat 3s ease-in-out infinite;
  border: 1px solid #8b0000;
  border: 1px solid var(--admin-red);
}

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

.admin-logo-wrapper svg {
  color: #daa520;
  color: var(--admin-gold-light);
  filter: drop-shadow(0 0 5px rgba(184, 134, 11, 0.7));
  filter: drop-shadow(0 0 5px var(--admin-glow-gold));
}

.admin-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-logo-title {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, #b71c1c, #daa520);
  background: linear-gradient(135deg, var(--admin-red-light), var(--admin-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-transform: uppercase;
  filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.8));
  filter: drop-shadow(0 0 10px var(--admin-glow-red));
}

.admin-logo-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.admin-navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.admin-btn-refresh {
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  color: #ffffff;
  color: var(--admin-text);
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-btn-refresh:hover:not(:disabled) {
  background: #5f0000;
  background: var(--admin-red-dark);
  border-color: #8b0000;
  border-color: var(--admin-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(139, 0, 0, 0.8);
  box-shadow: 0 4px 20px var(--admin-glow-red);
}

.admin-btn-refresh:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.admin-btn-refresh .spinning {
  animation: refreshSpin 1s linear infinite;
}

@keyframes refreshSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Dropdown de Notificaciones */
.admin-notifications-dropdown {
  position: relative;
}

.admin-notification-btn {
  width: 44px;
  height: 44px;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  color: #ffffff;
  color: var(--admin-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.admin-notification-btn:hover {
  background: #5f0000;
  background: var(--admin-red-dark);
  border-color: #8b0000;
  border-color: var(--admin-red);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 20px var(--admin-glow-red);
}

.admin-notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  background: linear-gradient(135deg, var(--admin-red), var(--admin-red-light));
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  box-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 20px var(--admin-glow-red);
  border: 1px solid #5f0000;
  border: 1px solid var(--admin-red-dark);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.admin-notification-dropdown-content {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 400px;
  max-height: 500px;
  background: #050505;
  background: var(--admin-black-card);
  border: 1px solid rgba(139, 0, 0, 0.3);
  border: 1px solid var(--admin-border-light);
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.95);
  overflow: hidden;
  z-index: 1000;
  animation: dropdownSlideIn 0.3s ease;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.admin-notification-dropdown-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, #5f0000, transparent);
  background: linear-gradient(135deg, var(--admin-red-dark), transparent);
  border-bottom: 1px solid rgba(139, 0, 0, 0.2);
  border-bottom: 1px solid var(--admin-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-notification-dropdown-header h3 {
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  color: var(--admin-text);
  letter-spacing: 1px;
}

.admin-notification-dropdown-count {
  font-size: 12px;
  font-weight: 700;
  color: #b8860b;
  color: var(--admin-gold);
  background: rgba(184, 134, 11, 0.15);
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  border: 1px solid #8b6914;
  border: 1px solid var(--admin-gold-dark);
}

.admin-notification-dropdown-list {
  max-height: 360px;
  overflow-y: auto;
  background: #000000;
  background: var(--admin-black);
}

.admin-notification-dropdown-list::-webkit-scrollbar {
  width: 6px;
}

.admin-notification-dropdown-list::-webkit-scrollbar-track {
  background: #0d0d0d;
  background: var(--admin-black-lighter);
}

.admin-notification-dropdown-list::-webkit-scrollbar-thumb {
  background: #8b0000;
  background: var(--admin-red);
  border-radius: 10px;
}

.admin-notification-dropdown-empty {
  padding: 50px 20px;
  text-align: center;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
}

.admin-notification-dropdown-empty svg {
  margin: 0 auto 12px;
  opacity: 0.5;
  color: #6b6b6b;
  color: var(--admin-text-muted);
}

.admin-notification-dropdown-empty p {
  font-size: 14px;
  font-weight: 500;
}

.admin-notification-dropdown-item {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(139, 0, 0, 0.2);
  border-bottom: 1px solid var(--admin-border);
  display: flex;
  gap: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: #050505;
  background: var(--admin-black-card);
}

.admin-notification-dropdown-item:hover {
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border-left: 3px solid #8b0000;
  border-left: 3px solid var(--admin-red);
}

.admin-notification-unread {
  background: linear-gradient(90deg, #5f0000, #050505);
  background: linear-gradient(90deg, var(--admin-red-dark), var(--admin-black-card));
  border-left: 3px solid #8b0000;
  border-left: 3px solid var(--admin-red);
}

.admin-notification-dropdown-item-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #5f0000, #8b0000);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-red));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 20px var(--admin-glow-red);
  border: 1px solid #8b0000;
  border: 1px solid var(--admin-red);
}

.admin-notification-dropdown-item-content {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.admin-notification-dropdown-item-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  color: var(--admin-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-notification-dropdown-item-details p {
  font-size: 12px;
  font-weight: 500;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 2px 0;
}

.admin-notification-dropdown-item-time {
  font-size: 11px;
  font-weight: 600;
  color: #6b6b6b;
  color: var(--admin-text-muted);
  letter-spacing: 0.3px;
}

.admin-notification-dropdown-item-dot {
  width: 10px;
  height: 10px;
  background: #8b0000;
  background: var(--admin-red);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 15px var(--admin-glow-red);
  animation: dotPulse 2s ease-in-out infinite;
  border: 1px solid #b71c1c;
  border: 1px solid var(--admin-red-light);
}

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

.admin-notification-dropdown-footer {
  padding: 12px 20px;
  background: #050505;
  background: var(--admin-black-card);
  border-top: 1px solid rgba(139, 0, 0, 0.2);
  border-top: 1px solid var(--admin-border);
}

.admin-notification-dropdown-view-all {
  width: 100%;
  background: transparent;
  border: none;
  color: #b8860b;
  color: var(--admin-gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-notification-dropdown-view-all:hover {
  color: #daa520;
  color: var(--admin-gold-light);
  transform: translateX(4px);
}

/* Info del Usuario */
.admin-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.admin-user-info:hover {
  background: #5f0000;
  background: var(--admin-red-dark);
  border-color: #8b0000;
  border-color: var(--admin-red);
  box-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 15px var(--admin-glow-red);
}

.admin-user-avatar {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #5f0000, #8b0000);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-red));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 15px var(--admin-glow-red);
  border: 1px solid #8b0000;
  border: 1px solid var(--admin-red);
}

.admin-user-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-user-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  color: var(--admin-text);
  letter-spacing: 0.3px;
}

.admin-user-badge {
  font-size: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, #b71c1c, #daa520);
  background: linear-gradient(135deg, var(--admin-red-light), var(--admin-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-logout-button {
  background: linear-gradient(135deg, #5f0000, #8b0000);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-red));
  border: 1px solid #8b0000;
  border: 1px solid var(--admin-red);
  color: white;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 20px var(--admin-glow-red);
}

.admin-logout-button:hover {
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  background: linear-gradient(135deg, var(--admin-red), var(--admin-red-light));
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(139, 0, 0, 0.8);
  box-shadow: 0 6px 30px var(--admin-glow-red);
}

/* ========================================
   LAYOUT PRINCIPAL
   ======================================== */

.admin-main-layout {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

/* ========================================
   SIDEBAR
   ======================================== */

.admin-sidebar {
  width: 280px;
  width: var(--admin-sidebar-width);
  flex-shrink: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  overflow-x: hidden;
  background: #050505;
  background: var(--admin-black-card);
  border-right: 1px solid rgba(139, 0, 0, 0.2);
  border-right: 1px solid var(--admin-border);
  transition: width 0.3s ease;
  z-index: 100;
}

.admin-sidebar.closed {
  width: 70px;
  width: var(--admin-sidebar-collapsed);
}

.admin-sidebar-content {
  padding: 20px 0;
}

.admin-sidebar-header {
  padding: 0 20px 16px;
  border-bottom: 1px solid rgba(139, 0, 0, 0.2);
  border-bottom: 1px solid var(--admin-border);
  margin-bottom: 16px;
}

.admin-sidebar-title {
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  color: var(--admin-text);
  margin: 0 0 10px 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #b71c1c, #b8860b);
  background: linear-gradient(135deg, var(--admin-red-light), var(--admin-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.8));
  filter: drop-shadow(0 0 10px var(--admin-glow-red));
}

.admin-stats-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.admin-stats-mini svg {
  color: #b8860b;
  color: var(--admin-gold);
}

.admin-stats-mini-mobile {
  padding: 14px 20px;
  background: linear-gradient(135deg, #5f0000, transparent);
  background: linear-gradient(135deg, var(--admin-red-dark), transparent);
  border-bottom: 1px solid rgba(139, 0, 0, 0.2);
  border-bottom: 1px solid var(--admin-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.admin-stats-mini-mobile svg {
  color: #b8860b;
  color: var(--admin-gold);
}

.admin-sidebar::-webkit-scrollbar {
  width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
  background: #000000;
  background: var(--admin-black);
}

.admin-sidebar::-webkit-scrollbar-thumb {
  background: #8b0000;
  background: var(--admin-red);
  border-radius: 10px;
}

.admin-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}

.admin-sidebar-item {
  width: 100%;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  color: #ffffff;
  color: var(--admin-text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.admin-sidebar-item:hover {
  background: #5f0000;
  background: var(--admin-red-dark);
  border-color: #8b0000;
  border-color: var(--admin-red);
  transform: translateX(4px);
  box-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 20px var(--admin-glow-red);
}

.admin-sidebar-item.active {
  background: linear-gradient(135deg, #5f0000, #8b0000);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-red));
  border-color: #b71c1c;
  border-color: var(--admin-red-light);
  box-shadow: 0 4px 25px rgba(139, 0, 0, 0.8);
  box-shadow: 0 4px 25px var(--admin-glow-red);
}

.admin-sidebar.closed .admin-sidebar-item {
  justify-content: center;
  padding: 14px 12px;
}

.admin-sidebar.closed .admin-sidebar-info,
.admin-sidebar.closed .admin-sidebar-arrow {
  display: none;
}

.admin-sidebar.closed .admin-sidebar-header {
  display: none;
}

.admin-sidebar.closed .admin-sidebar-badge {
  position: absolute;
  top: 8px;
  right: 8px;
}

.admin-sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #b8860b;
  color: var(--admin-gold);
}

.admin-sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1 1;
  min-width: 0;
}

.admin-sidebar-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  color: var(--admin-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.5px;
}

.admin-sidebar-status {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-active {
  color: #0d7350;
  color: var(--admin-success);
}

.admin-sidebar-badge {
  margin-left: auto;
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  background: linear-gradient(135deg, var(--admin-red), var(--admin-red-light));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  min-width: 24px;
  text-align: center;
  box-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 15px var(--admin-glow-red);
  border: 1px solid #5f0000;
  border: 1px solid var(--admin-red-dark);
}

.admin-sidebar-arrow {
  flex-shrink: 0;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.admin-sidebar-item:hover .admin-sidebar-arrow {
  opacity: 1;
  transform: translateX(2px);
}

.admin-sidebar-footer {
  padding: 16px 20px;
  margin-top: 16px;
  border-top: 1px solid rgba(139, 0, 0, 0.2);
  border-top: 1px solid var(--admin-border);
}

.admin-system-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  letter-spacing: 0.5px;
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
}

.admin-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

.admin-status-online {
  background: #0d7350;
  background: var(--admin-success);
  box-shadow: 0 0 10px #0d7350;
  box-shadow: 0 0 10px var(--admin-success);
}

.admin-status-error {
  background: #b71c1c;
  background: var(--admin-error);
  box-shadow: 0 0 10px #b71c1c;
  box-shadow: 0 0 10px var(--admin-error);
}

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

/* SIDEBAR MOBILE */
.admin-sidebar-mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #050505;
  background: var(--admin-black-card);
  border-right: 1px solid rgba(139, 0, 0, 0.3);
  border-right: 1px solid var(--admin-border-light);
  transition: left 0.3s ease;
  z-index: 1100;
  overflow-y: auto;
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.95);
}

.admin-sidebar-mobile.open {
  left: 0;
}

.admin-sidebar-mobile-header {
  padding: 20px;
  border-bottom: 1px solid rgba(139, 0, 0, 0.2);
  border-bottom: 1px solid var(--admin-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #5f0000, transparent);
  background: linear-gradient(135deg, var(--admin-red-dark), transparent);
}

.admin-sidebar-mobile-header h3 {
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  color: var(--admin-text);
  letter-spacing: 1px;
}

.admin-sidebar-close {
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  color: #ffffff;
  color: var(--admin-text);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.admin-sidebar-close:hover {
  color: #b71c1c;
  color: var(--admin-red-light);
  background: #5f0000;
  background: var(--admin-red-dark);
  border-color: #8b0000;
  border-color: var(--admin-red);
  transform: rotate(90deg);
}

.admin-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1099;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

/* ========================================
   CONTENIDO PRINCIPAL
   ======================================== */

.admin-content {
  flex: 1 1;
  min-width: 0;
  padding: 32px;
  transition: margin-left 0.3s ease;
  background: #000000;
  background: var(--admin-black);
}

.admin-content.full-width {
  margin-left: 0;
}

/* ========================================
   PÁGINA DE NOTIFICACIONES
   ======================================== */

.admin-notifications-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-notifications-header {
  background: linear-gradient(135deg, #5f0000, #050505);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-black-card));
  border: 1px solid rgba(139, 0, 0, 0.3);
  border: 1px solid var(--admin-border-light);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 0 30px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 30px var(--admin-glow-red);
}

.admin-notifications-header-content {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-notifications-header-content svg {
  color: #b8860b;
  color: var(--admin-gold);
  filter: drop-shadow(0 0 10px rgba(184, 134, 11, 0.7));
  filter: drop-shadow(0 0 10px var(--admin-glow-gold));
}

.admin-notifications-header h1 {
  font-family: 'Orbitron', monospace;
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  color: var(--admin-text);
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
  text-shadow: 0 0 20px var(--admin-glow-red);
}

.admin-notifications-header p {
  font-size: 14px;
  font-weight: 500;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
}

.admin-notifications-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-notification-stat-badge {
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #b8860b;
  color: var(--admin-gold);
  letter-spacing: 0.5px;
}

.admin-notifications-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-notification-card {
  background: #050505;
  background: var(--admin-black-card);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.admin-notification-card:hover {
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border-color: #8b0000;
  border-color: var(--admin-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.8);
}

.admin-notification-card.unread {
  border-left: 4px solid #8b0000;
  border-left: 4px solid var(--admin-red);
  box-shadow: 0 0 30px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 30px var(--admin-glow-red);
  background: linear-gradient(90deg, #5f0000, #050505);
  background: linear-gradient(90deg, var(--admin-red-dark), var(--admin-black-card));
}

.admin-notification-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(139, 0, 0, 0.2);
  border-bottom: 1px solid var(--admin-border);
}

.admin-notification-user {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1;
}

.admin-notification-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #5f0000, #8b0000);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-red));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 22px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 25px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 25px var(--admin-glow-red);
  border: 1px solid #8b0000;
  border: 1px solid var(--admin-red);
}

.admin-notification-user-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  color: var(--admin-text);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.admin-notification-user-info p {
  font-size: 12px;
  font-weight: 500;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  letter-spacing: 0.3px;
}

.admin-notification-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.admin-btn-primary,
.admin-btn-secondary {
  padding: 10px 18px;
  border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.admin-btn-primary {
  background: linear-gradient(135deg, #5f0000, #8b0000);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-red));
  color: white;
  box-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 20px var(--admin-glow-red);
  border: 1px solid #8b0000;
  border: 1px solid var(--admin-red);
}

.admin-btn-primary:hover {
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  background: linear-gradient(135deg, var(--admin-red), var(--admin-red-light));
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(139, 0, 0, 0.8);
  box-shadow: 0 6px 30px var(--admin-glow-red);
}

.admin-btn-secondary {
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  color: #ffffff;
  color: var(--admin-text);
}

.admin-btn-secondary:hover {
  background: #5f0000;
  background: var(--admin-red-dark);
  border-color: #8b0000;
  border-color: var(--admin-red);
}

.admin-notification-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

.admin-notification-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border-radius: 10px;
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
}

.admin-notification-detail-item .label {
  font-size: 13px;
  font-weight: 700;
  color: #b8860b;
  color: var(--admin-gold);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.admin-notification-detail-item .value {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  color: var(--admin-text);
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-notifications-empty {
  padding: 100px 40px;
  text-align: center;
}

.admin-notifications-empty svg {
  margin: 0 auto 20px;
  color: #6b6b6b;
  color: var(--admin-text-muted);
  opacity: 0.5;
}

.admin-notifications-empty h3 {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  color: var(--admin-text);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.admin-notifications-empty p {
  font-size: 14px;
  font-weight: 500;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  letter-spacing: 0.3px;
}

/* ========================================
   ERROR SECTION
   ======================================== */

.error-section {
  background: linear-gradient(135deg, #5f0000, transparent);
  background: linear-gradient(135deg, var(--admin-red-dark), transparent);
  border: 1px solid rgba(139, 0, 0, 0.3);
  border: 1px solid var(--admin-border-light);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
}

.error-section svg {
  margin: 0 auto 20px;
  color: #b71c1c;
  color: var(--admin-error);
}

.error-section h2 {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 700;
  color: #b71c1c;
  color: var(--admin-error);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.error-section p {
  font-size: 14px;
  font-weight: 500;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  margin-bottom: 8px;
}

.error-message {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #6b6b6b;
  color: var(--admin-text-muted);
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  padding: 12px;
  border-radius: 8px;
  margin-top: 16px;
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .admin-sidebar {
    display: none;
  }

  .admin-menu-button-mobile {
    display: flex;
  }

  .admin-sidebar-toggle {
    display: none;
  }

  .admin-content {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .admin-navbar {
    padding: 12px 16px;
  }

  .admin-navbar-content {
    gap: 10px;
  }

  .admin-logo-text {
    display: none;
  }

  .admin-user-details {
    display: none;
  }

  .admin-user-info {
    padding: 8px;
  }

  .admin-content {
    padding: 24px;
  }

  .admin-notification-dropdown-content {
    width: calc(100vw - 40px);
    right: 0;
  }

  .admin-notification-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-notification-actions {
    width: 100%;
  }

  .admin-btn-primary,
  .admin-btn-secondary {
    flex: 1 1;
  }
}

@media (max-width: 480px) {
  .admin-navbar {
    padding: 10px 14px;
  }

  .admin-content {
    padding: 20px;
  }

  .admin-notifications-header {
    padding: 20px;
  }

  .admin-notification-card {
    padding: 20px;
  }

  .admin-notification-details {
    grid-template-columns: 1fr;
  }
}


.acgx-main-container {
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
}


.acgx-notifications-zone {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

.acgx-notification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 8px;
  background: rgba(30, 30, 30, 0.95);
  border-left: 4px solid;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: acgx-slideIn 0.3s ease-out;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

@keyframes acgx-slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.acgx-notification-success {
  border-left-color: #4caf50;
  background: linear-gradient(90deg, rgba(76, 175, 80, 0.2) 0%, rgba(30, 30, 30, 0.95) 20%);
}

.acgx-notification-error {
  border-left-color: #f44336;
  background: linear-gradient(90deg, rgba(244, 67, 54, 0.2) 0%, rgba(30, 30, 30, 0.95) 20%);
}

.acgx-notification-warning {
  border-left-color: #ff9800;
  background: linear-gradient(90deg, rgba(255, 152, 0, 0.2) 0%, rgba(30, 30, 30, 0.95) 20%);
}

.acgx-notification-info {
  border-left-color: #2196f3;
  background: linear-gradient(90deg, rgba(33, 150, 243, 0.2) 0%, rgba(30, 30, 30, 0.95) 20%);
}

.acgx-notification-body {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1;
}

.acgx-notification-emoji {
  font-size: 1.5rem;
}

.acgx-notification-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
}

.acgx-notification-dismiss {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}

.acgx-notification-dismiss:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}


.acgx-header-zone {
  background: linear-gradient(135deg, #161311 0%, #080806 100%);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.acgx-title-area h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.acgx-title-area p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.acgx-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  margin-top: 1.5rem;
}

.acgx-stat-box {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s;
}

.acgx-stat-box:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.acgx-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.acgx-stat-lbl {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   SECCIÓN NUEVA ASIGNACIÓN
   ======================================== */
.acgx-nueva-asignacion-zone {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.acgx-nueva-asignacion-zone h2 {
  font-size: 1.8rem;
  margin: 0 0 1.5rem 0;
  color: #ff6b35;
  font-weight: 600;
}

.acgx-form-grid-horizontal {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  align-items: end;
}

.acgx-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.acgx-form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ff6b35;
}

/* ========================================
   TEXTAREA DE CORREOS
   ======================================== */
.acgx-correos-textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.95rem;
  font-family: 'Courier New', monospace;
  resize: vertical;
  transition: all 0.3s;
}

.acgx-correos-textarea:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.acgx-correos-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.acgx-correos-badge {
  font-size: 0.85rem;
  color: #4caf50;
  font-weight: 600;
  padding: 4px 8px;
  background: rgba(76, 175, 80, 0.2);
  border-radius: 4px;
  display: inline-block;
  margin-top: 4px;
}

/* ========================================
   INPUTS CON SUGERENCIAS
   ======================================== */
.acgx-input-suggestions-wrapper {
  position: relative;
}

.acgx-cliente-input-field,
.acgx-plataforma-input-field {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.acgx-cliente-input-field:focus,
.acgx-plataforma-input-field:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.acgx-cliente-input-field::placeholder,
.acgx-plataforma-input-field::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   DROPDOWN DE SUGERENCIAS
   ======================================== */
.acgx-suggestions-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(30, 30, 30, 0.98);
  border: 2px solid #ff6b35;
  border-radius: 8px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.acgx-suggestion-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.acgx-suggestion-item:last-child {
  border-bottom: none;
}

.acgx-suggestion-item:hover {
  background: rgba(255, 107, 53, 0.2);
}

.acgx-suggestion-primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.acgx-suggestion-nombre {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

.acgx-suggestion-uid {
  font-size: 0.8rem;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
}

.acgx-suggestion-secondary {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.acgx-suggestion-mail,
.acgx-suggestion-tel {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Sugerencias de Plataforma */
.acgx-plataforma-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acgx-plataforma-emoji {
  font-size: 1.5rem;
}

.acgx-plataforma-titulo {
  font-weight: 600;
  color: #ffffff;
}

/* ========================================
   BADGES DE SELECCIÓN
   ======================================== */
.acgx-selected-cliente-badge,
.acgx-selected-plataforma-badge {
  padding: 8px 12px;
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid #4caf50;
  border-radius: 6px;
  color: #4caf50;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}

/* ========================================
   BOTÓN CREAR ASIGNACIÓN
   ======================================== */
.acgx-btn-crear {
  padding: 12px 24px;
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.acgx-btn-crear:hover:not(:disabled) {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.5);
}

.acgx-btn-crear:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.acgx-loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: acgx-spin 0.8s linear infinite;
}

@keyframes acgx-spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   SECCIÓN CONTROLES
   ======================================== */
.acgx-controles-zone {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.acgx-controles-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.acgx-controles-header h2 {
  font-size: 1.8rem;
  margin: 0;
  color: #ff6b35;
  font-weight: 600;
}

.acgx-btn-toggle {
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.acgx-btn-toggle:hover:not(:disabled) {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.acgx-btn-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   BÚSQUEDA
   ======================================== */
.acgx-search-wrapper {
  position: relative;
  margin-top: 1rem;
}

.acgx-search-input {
  width: 100%;
  padding: 14px 50px 14px 50px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s;
}

.acgx-search-input:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.acgx-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.acgx-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  pointer-events: none;
}

.acgx-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 107, 53, 0.2);
  border: none;
  border-radius: 4px;
  color: #ff6b35;
  font-size: 1rem;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.acgx-search-clear:hover {
  background: rgba(255, 107, 53, 0.3);
}

/* ========================================
   TABLA DE DATOS
   ======================================== */
.acgx-table-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.acgx-table-scroll {
  overflow-x: auto;
}

.acgx-data-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.acgx-data-table thead {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.acgx-data-table th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.acgx-data-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.acgx-data-table tbody tr:hover {
  background: rgba(255, 107, 53, 0.1);
}

.acgx-data-row.acgx-row-inactive {
  opacity: 0.6;
  background: rgba(244, 67, 54, 0.1);
}

.acgx-data-table td {
  padding: 16px;
  color: #ffffff;
}

/* ========================================
   CELDAS ESPECÍFICAS
   ======================================== */
.acgx-correo-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acgx-correo-value {
  font-family: 'Courier New', monospace;
  color: #4caf50;
  font-weight: 500;
}

.acgx-btn-copy {
  background: rgba(255, 107, 53, 0.2);
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}

.acgx-btn-copy:hover {
  background: rgba(255, 107, 53, 0.4);
  transform: scale(1.1);
}

.acgx-cliente-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.acgx-cliente-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

.acgx-cliente-mail {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.acgx-cliente-id {
  font-size: 0.8rem;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  width: -webkit-fit-content;
  width: fit-content;
}

.acgx-plataforma-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.acgx-plataforma-ico {
  font-size: 1.3rem;
}

.acgx-plataforma-nom {
  font-weight: 600;
  color: #ffffff;
}

.acgx-fecha-cell {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ========================================
   BOTONES DE ACCIÓN EN TABLA
   ======================================== */
.acgx-acciones-cell {
  display: flex;
  gap: 8px;
  align-items: center;
}

.acgx-btn-save,
.acgx-btn-cancel,
.acgx-btn-edit,
.acgx-btn-delete {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acgx-btn-save:hover {
  background: rgba(76, 175, 80, 0.3);
  transform: scale(1.1);
}

.acgx-btn-cancel:hover {
  background: rgba(244, 67, 54, 0.3);
  transform: scale(1.1);
}

.acgx-btn-edit:hover {
  background: rgba(33, 150, 243, 0.3);
  transform: scale(1.1);
}

.acgx-btn-delete:hover {
  background: rgba(244, 67, 54, 0.3);
  transform: scale(1.1);
}

.acgx-btn-save:disabled,
.acgx-btn-cancel:disabled,
.acgx-btn-edit:disabled,
.acgx-btn-delete:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ========================================
   INPUT DE EDICIÓN EN TABLA
   ======================================== */
.acgx-edit-input {
  width: 100%;
  padding: 8px 12px;
  border: 2px solid #ff6b35;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

.acgx-edit-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

/* ========================================
   ESTADOS VACÍOS
   ======================================== */
.acgx-loading-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 1rem;
}

.acgx-empty-state,
.acgx-no-results {
  padding: 4rem 2rem;
  text-align: center;
}

.acgx-empty-content,
.acgx-no-results-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.acgx-empty-icon,
.acgx-no-results-icon {
  font-size: 4rem;
  opacity: 0.5;
}

.acgx-empty-content h3,
.acgx-no-results-content h3 {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.acgx-empty-content p,
.acgx-no-results-content p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.acgx-empty-hint {
  margin-top: 1rem;
  padding: 12px 20px;
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid #ff6b35;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.acgx-clear-search {
  margin-top: 1rem;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.acgx-clear-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* ========================================
   FOOTER
   ======================================== */
.acgx-footer-zone {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.acgx-footer-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.acgx-footer-info,
.acgx-footer-search,
.acgx-footer-structure {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.acgx-footer-info {
  color: #4caf50;
}

.acgx-footer-search {
  color: #2196f3;
}

.acgx-footer-structure {
  color: #ff6b35;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
  .acgx-form-grid-horizontal {
    grid-template-columns: 1fr 1fr;
  }
  
  .acgx-correos-group {
    grid-column: 1 / -1;
  }
  
  .acgx-action-group {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .acgx-main-container {
    padding: 1rem;
  }
  
  .acgx-header-zone {
    padding: 1.5rem;
  }
  
  .acgx-title-area h1 {
    font-size: 1.8rem;
  }
  
  .acgx-form-grid-horizontal {
    grid-template-columns: 1fr;
  }
  
  .acgx-correos-group,
  .acgx-action-group {
    grid-column: auto;
  }
  
  .acgx-notifications-zone {
    left: 10px;
    right: 10px;
    max-width: none;
  }
  
  .acgx-table-scroll {
    overflow-x: scroll;
  }
  
  .acgx-controles-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .acgx-footer-stats {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .acgx-title-area h1 {
    font-size: 1.5rem;
  }
  
  .acgx-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .acgx-btn-crear {
    width: 100%;
  }
}

/* ========================================
   ARCHIVO: src/components/admin/Editor.css
   PREFIJO: edup- (Editor De Usuarios Panel)
   ======================================== */

/* ========================================
   CONTENEDOR PRINCIPAL
   ======================================== */
.edup-main-panel {
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
}

/* ========================================
   SISTEMA DE NOTIFICACIONES
   ======================================== */
.edup-notifications-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

.edup-notification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 8px;
  background: rgba(30, 30, 30, 0.95);
  border-left: 4px solid;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: edup-slideIn 0.3s ease-out;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

@keyframes edup-slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.edup-notification-success {
  border-left-color: #4caf50;
}

.edup-notification-error {
  border-left-color: #f44336;
}

.edup-notification-warning {
  border-left-color: #ff9800;
}

.edup-notification-info {
  border-left-color: #2196f3;
}

.edup-notification-message {
  flex: 1 1;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
}

.edup-notification button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}

.edup-notification button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ========================================
   MODAL PERSONALIZADO
   ======================================== */
.edup-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: edup-fadeIn 0.2s ease-out;
}

@keyframes edup-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.edup-modal-content {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid #ff6b35;
  animation: edup-scaleIn 0.3s ease-out;
}

@keyframes edup-scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.edup-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.edup-modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #ff6b35;
  font-weight: 600;
}

.edup-modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}

.edup-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.edup-modal-body {
  padding: 2rem 1.5rem;
}

.edup-modal-body p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.edup-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 107, 53, 0.3);
}

.edup-btn-modal-cancel,
.edup-btn-modal-confirm {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.edup-btn-modal-cancel {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.edup-btn-modal-cancel:hover {
  background: rgba(255, 255, 255, 0.2);
}

.edup-btn-modal-confirm {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.edup-btn-modal-confirm:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* ========================================
   HEADER PRINCIPAL
   ======================================== */
.edup-header {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.edup-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.edup-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ========================================
   SECCIÓN DE BÚSQUEDA
   ======================================== */
.edup-search-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.edup-search-container {
  margin-bottom: 1rem;
}

.edup-search-input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s;
}

.edup-search-input:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.edup-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.edup-search-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.edup-search-results-count {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.edup-search-actions button {
  padding: 6px 16px;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid #ff6b35;
  border-radius: 6px;
  color: #ff6b35;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.edup-search-actions button:hover {
  background: rgba(255, 107, 53, 0.3);
  transform: translateY(-1px);
}

/* ========================================
   ACCIONES EN LOTE
   ======================================== */
.edup-batch-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.edup-batch-info {
  font-weight: 600;
  color: #ff6b35;
}

.edup-batch-buttons {
  display: flex;
  gap: 1rem;
}

.edup-btn-batch-ban,
.edup-btn-batch-unban {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.edup-btn-batch-ban {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.edup-btn-batch-ban:hover:not(:disabled) {
  background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(244, 67, 54, 0.4);
}

.edup-btn-batch-unban {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.edup-btn-batch-unban:hover:not(:disabled) {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.edup-btn-batch-ban:disabled,
.edup-btn-batch-unban:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   LISTA DE RESULTADOS
   ======================================== */
.edup-users-results-list {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  max-height: 500px;
  overflow-y: auto;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.edup-results-header {
  padding: 1rem 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}

.edup-no-results {
  padding: 3rem 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.edup-no-results p {
  font-size: 1.1rem;
  margin: 0;
}

.edup-user-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
}

.edup-user-result-item:hover {
  background: rgba(255, 107, 53, 0.1);
}

.edup-user-result-item.edup-user-banned {
  background: rgba(244, 67, 54, 0.1);
  border-left: 4px solid #f44336;
}

.edup-user-result-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1;
  cursor: pointer;
}

.edup-user-result-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.edup-user-result-info {
  flex: 1 1;
}

.edup-user-result-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.edup-user-result-details {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.edup-user-result-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.edup-status-badge {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.edup-status-cliente {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid #4caf50;
}

.edup-status-baneado {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid #f44336;
}

.edup-status-admin {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  border: 1px solid #ff6b35;
}

.edup-banned-icon {
  font-size: 1.3rem;
}

/* ========================================
   CHECKBOX PERSONALIZADO
   ======================================== */
.edup-checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.edup-checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 107, 53, 0.5);
  border-radius: 4px;
  transition: all 0.2s;
}

.edup-checkbox-container:hover input ~ .edup-checkmark {
  background-color: rgba(255, 107, 53, 0.2);
  border-color: #ff6b35;
}

.edup-checkbox-container input:checked ~ .edup-checkmark {
  background-color: #ff6b35;
  border-color: #ff6b35;
}

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

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

.edup-checkbox-container .edup-checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ========================================
   SECCIÓN DE USUARIO SELECCIONADO
   ======================================== */
.edup-user-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.edup-user-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
  margin-bottom: 2rem;
}

.edup-user-header-info {
  display: flex;
  gap: 1.5rem;
  flex: 1 1;
}

.edup-user-avatar-large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.edup-user-header-details h2 {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
  color: #ffffff;
}

.edup-user-header-details p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 1rem 0;
  font-family: 'Courier New', monospace;
}

.edup-user-header-status {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.edup-activity-badge {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.edup-activity-badge.edup-active {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid #4caf50;
}

.edup-activity-badge.edup-inactive {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid #f44336;
}

.edup-user-stats {
  display: flex;
  gap: 1.5rem;
}

.edup-stat-item {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 107, 53, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
}

.edup-user-header-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.edup-btn-ban,
.edup-btn-unban,
.edup-btn-close {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.edup-btn-ban {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.edup-btn-ban:hover:not(:disabled) {
  background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(244, 67, 54, 0.4);
}

.edup-btn-unban {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.edup-btn-unban:hover:not(:disabled) {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.edup-btn-close {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.edup-btn-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.edup-btn-ban:disabled,
.edup-btn-unban:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   FORMULARIO DE DATOS BÁSICOS
   ======================================== */
.edup-basic-data {
  margin-bottom: 2rem;
}

.edup-basic-data h3 {
  font-size: 1.5rem;
  color: #ff6b35;
  margin: 0 0 1.5rem 0;
}

.edup-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.edup-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.edup-form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff6b35;
}

.edup-form-group input,
.edup-form-group select {
  padding: 12px 16px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.edup-form-group input:focus,
.edup-form-group select:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.edup-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.edup-form-group select {
  cursor: pointer;
}

.edup-form-group select option {
  background: #2d2d2d;
  color: #ffffff;
}

.edup-btn-save-changes {
  padding: 12px 32px;
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.edup-btn-save-changes:hover:not(:disabled) {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.5);
}

.edup-btn-save-changes:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   TABLA DE CORREOS
   ======================================== */
.edup-emails-table-section {
  margin-top: 2rem;
}

.edup-emails-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.edup-emails-table-header h3 {
  font-size: 1.5rem;
  color: #ff6b35;
  margin: 0;
}

.edup-emails-batch-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.edup-btn-delete-selected {
  padding: 8px 16px;
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.edup-btn-delete-selected:hover:not(:disabled) {
  background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(244, 67, 54, 0.4);
}

.edup-btn-delete-selected:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.edup-emails-table-container {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.edup-emails-table {
  width: 100%;
  border-collapse: collapse;
}

.edup-emails-table thead {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.edup-emails-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.edup-emails-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
}

.edup-emails-table tbody tr:hover {
  background: rgba(255, 107, 53, 0.05);
}

.edup-emails-table td {
  padding: 14px 16px;
  color: #ffffff;
}

.edup-th-checkbox,
.edup-td-checkbox {
  width: 50px;
  text-align: center;
}

.edup-email-display {
  display: flex;
  align-items: center;
}

.edup-email-text {
  font-family: 'Courier New', monospace;
  color: #4caf50;
  font-weight: 500;
}

.edup-edit-email-input {
  width: 100%;
  padding: 8px 12px;
  border: 2px solid #ff6b35;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

.edup-edit-email-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.edup-plataforma-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.edup-plataforma-icon {
  font-size: 1.3rem;
}

.edup-plataforma-nombre {
  font-weight: 600;
}

.edup-fecha-cell {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.edup-acciones-cell {
  display: flex;
  gap: 8px;
}

.edup-btn-table-save,
.edup-btn-table-cancel,
.edup-btn-table-edit,
.edup-btn-table-delete {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s;
}

.edup-btn-table-save:hover {
  background: rgba(76, 175, 80, 0.3);
  transform: scale(1.1);
}

.edup-btn-table-cancel:hover {
  background: rgba(244, 67, 54, 0.3);
  transform: scale(1.1);
}

.edup-btn-table-edit:hover {
  background: rgba(33, 150, 243, 0.3);
  transform: scale(1.1);
}

.edup-btn-table-delete:hover {
  background: rgba(244, 67, 54, 0.3);
  transform: scale(1.1);
}

.edup-btn-table-save:disabled,
.edup-btn-table-cancel:disabled,
.edup-btn-table-edit:disabled,
.edup-btn-table-delete:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ========================================
   SIN CORREOS ASIGNADOS
   ======================================== */
.edup-no-emails-message {
  padding: 4rem 2rem;
  text-align: center;
}

.edup-no-emails-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.edup-no-emails-icon {
  font-size: 4rem;
  opacity: 0.5;
}

.edup-no-emails-content h3 {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.edup-no-emails-content p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ========================================
   ESTADO INICIAL (VACÍO)
   ======================================== */
.edup-empty-state {
  padding: 4rem 2rem;
  text-align: center;
}

.edup-empty-state-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.edup-empty-state-icon {
  font-size: 5rem;
  opacity: 0.5;
}

.edup-empty-state-content h3 {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.edup-empty-state-content > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.edup-empty-state-tips {
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  width: 100%;
}

.edup-empty-state-tips p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.edup-empty-state-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.edup-empty-state-tips li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .edup-user-header {
    flex-direction: column;
  }
  
  .edup-user-header-actions {
    width: 100%;
  }
  
  .edup-user-header-actions button {
    flex: 1 1;
  }
}

@media (max-width: 768px) {
  .edup-main-panel {
    padding: 1rem;
  }
  
  .edup-header {
    padding: 1.5rem;
  }
  
  .edup-header h1 {
    font-size: 1.8rem;
  }
  
  .edup-form-grid {
    grid-template-columns: 1fr;
  }
  
  .edup-notifications-container {
    left: 10px;
    right: 10px;
    max-width: none;
  }
  
  .edup-user-header-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .edup-user-stats {
    flex-direction: column;
    width: 100%;
  }
  
  .edup-emails-table-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .edup-emails-batch-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .edup-batch-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .edup-batch-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .edup-btn-batch-ban,
  .edup-btn-batch-unban {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .edup-header h1 {
    font-size: 1.5rem;
  }
  
  .edup-user-avatar-large {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
  
  .edup-user-header-details h2 {
    font-size: 1.5rem;
  }
  
  .edup-user-result-avatar {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .edup-empty-state-icon {
    font-size: 3rem;
  }
  
  .edup-empty-state-content h3 {
    font-size: 1.5rem;
  }
}

/* ========================================
   ARCHIVO: src/components/admin/CrearCliente.css
   PREFIJO: crcl- (CrearCliente)
   TEMA: DARK MODE VERDE
   ======================================== */

/* ========================================
   VARIABLES
   ======================================== */
:root {
  --crcl-green-primary: #10b981;
  --crcl-green-secondary: #059669;
  --crcl-green-light: #34d399;
  --crcl-green-glow: rgba(16, 185, 129, 0.5);
  --crcl-bg-primary: #0a0a0a;
  --crcl-bg-secondary: #1a1a1a;
  --crcl-bg-tertiary: #2d2d2d;
  --crcl-bg-card: #161616;
  --crcl-text-primary: #ffffff;
  --crcl-text-secondary: #e0e0e0;
  --crcl-text-tertiary: #a0a0a0;
  --crcl-border-primary: rgba(16, 185, 129, 0.4);
  --crcl-border-secondary: rgba(255, 255, 255, 0.1);
  --crcl-success: #4caf50;
  --crcl-error: #f44336;
  --crcl-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   CONTENEDOR PRINCIPAL
   ======================================== */
.crcl-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

/* ========================================
   HEADER
   ======================================== */
.crcl-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  background: linear-gradient(135deg, var(--crcl-green-primary) 0%, var(--crcl-green-secondary) 100%);
  border-radius: 16px;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.5), 0 0 80px rgba(16, 185, 129, 0.2);
  box-shadow: 0 10px 40px var(--crcl-green-glow), 0 0 80px rgba(16, 185, 129, 0.2);
  position: relative;
  overflow: hidden;
}

.crcl-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: crcl-glow 8s ease-in-out infinite;
}

@keyframes crcl-glow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20%, -20%); }
}

.crcl-header-icon {
  font-size: 3.5rem;
  color: #ffffff;
  color: var(--crcl-text-primary);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  z-index: 1;
  animation: crcl-bounce 2s ease-in-out infinite;
}

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

.crcl-header-text {
  flex: 1 1;
  z-index: 1;
}

.crcl-header-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 0.8rem 0;
  color: #ffffff;
  color: var(--crcl-text-primary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.crcl-header-text p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
}

/* ========================================
   CARD
   ======================================== */
.crcl-card {
  background: #161616;
  background: var(--crcl-bg-card);
  border-radius: 16px;
  padding: 3rem;
  border: 2px solid rgba(16, 185, 129, 0.4);
  border: 2px solid var(--crcl-border-primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(16, 185, 129, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.crcl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #059669, #10b981);
  background: linear-gradient(90deg, var(--crcl-green-primary), var(--crcl-green-secondary), var(--crcl-green-primary));
  background-size: 200% 100%;
  animation: crcl-slide 3s linear infinite;
}

@keyframes crcl-slide {
  to { background-position: 200% 0; }
}

/* ========================================
   FORMULARIO
   ======================================== */
.crcl-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ========================================
   CAMPOS DE FORMULARIO
   ======================================== */
.crcl-field {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.crcl-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #10b981;
  color: var(--crcl-green-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.crcl-label-text {
  flex: 1 1;
}

.crcl-label-required {
  color: #f44336;
  color: var(--crcl-error);
  font-size: 1.3rem;
}

.crcl-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.crcl-icon-left {
  position: absolute;
  left: 16px;
  color: #10b981;
  color: var(--crcl-green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}

.crcl-icon-right {
  position: absolute;
  right: 16px;
  color: #a0a0a0;
  color: var(--crcl-text-tertiary);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--crcl-transition);
}

.crcl-icon-right:hover {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  color: var(--crcl-green-primary);
  transform: scale(1.1);
}

.crcl-input {
  width: 100%;
  padding: 16px 18px 16px 52px;
  background: #1a1a1a;
  background: var(--crcl-bg-secondary);
  border: 2px solid rgba(16, 185, 129, 0.4);
  border: 2px solid var(--crcl-border-primary);
  border-radius: 10px;
  color: #ffffff;
  color: var(--crcl-text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--crcl-transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.crcl-input:focus {
  outline: none;
  border-color: #10b981;
  border-color: var(--crcl-green-primary);
  background: #2d2d2d;
  background: var(--crcl-bg-tertiary);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15),
              0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.crcl-input::placeholder {
  color: #a0a0a0;
  color: var(--crcl-text-tertiary);
  font-weight: 400;
}

.crcl-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.crcl-hint {
  font-size: 0.9rem;
  color: #a0a0a0;
  color: var(--crcl-text-tertiary);
  font-weight: 500;
  margin-top: 4px;
  padding-left: 4px;
}

/* ========================================
   SELECTOR DE TELÉFONO
   ======================================== */
.crcl-phone-group {
  display: flex;
  gap: 1rem;
}

.crcl-phone-selector {
  position: relative;
  min-width: 140px;
}

.crcl-phone-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  background: #1a1a1a;
  background: var(--crcl-bg-secondary);
  border: 2px solid rgba(16, 185, 129, 0.4);
  border: 2px solid var(--crcl-border-primary);
  border-radius: 10px;
  color: #ffffff;
  color: var(--crcl-text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--crcl-transition);
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.crcl-phone-toggle:hover:not(:disabled) {
  border-color: #10b981;
  border-color: var(--crcl-green-primary);
  background: #2d2d2d;
  background: var(--crcl-bg-tertiary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.crcl-phone-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.crcl-phone-flag {
  font-size: 1.5rem;
}

.crcl-phone-code {
  flex: 1 1;
  text-align: left;
  color: #10b981;
  color: var(--crcl-green-primary);
}

.crcl-phone-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  max-height: 320px;
  overflow-y: auto;
  background: #1a1a1a;
  background: var(--crcl-bg-secondary);
  border: 2px solid #10b981;
  border: 2px solid var(--crcl-green-primary);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  animation: crcl-slideDown 0.2s ease-out;
}

@keyframes crcl-slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.crcl-phone-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: transparent;
  border: none;
  color: #e0e0e0;
  color: var(--crcl-text-secondary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--crcl-transition);
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.crcl-phone-option:last-child {
  border-bottom: none;
}

.crcl-phone-option:hover {
  background: rgba(16, 185, 129, 0.2);
  color: #ffffff;
  color: var(--crcl-text-primary);
}

.crcl-phone-option.active {
  background: rgba(16, 185, 129, 0.3);
  color: #10b981;
  color: var(--crcl-green-primary);
  font-weight: 700;
}

.crcl-phone-option-flag {
  font-size: 1.5rem;
}

.crcl-phone-option-name {
  flex: 1 1;
}

.crcl-phone-option-code {
  color: #a0a0a0;
  color: var(--crcl-text-tertiary);
  font-size: 0.9rem;
}

.crcl-phone-input-wrapper {
  flex: 1 1;
}

/* ========================================
   ALERTAS
   ======================================== */
.crcl-alert {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  animation: crcl-slideIn 0.3s ease-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes crcl-slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.crcl-alert-error {
  background: rgba(244, 67, 54, 0.2);
  border: 2px solid #f44336;
  border: 2px solid var(--crcl-error);
  color: #ff6b6b;
}

.crcl-alert svg {
  flex-shrink: 0;
}

/* ========================================
   BOTÓN SUBMIT
   ======================================== */
.crcl-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  background: linear-gradient(135deg, var(--crcl-green-primary) 0%, var(--crcl-green-secondary) 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  color: var(--crcl-text-primary);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--crcl-transition);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  box-shadow: 0 6px 20px var(--crcl-green-glow);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

.crcl-submit::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: left 0.5s;
}

.crcl-submit:hover:not(:disabled)::before {
  left: 100%;
}

.crcl-submit:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
  box-shadow: 0 10px 30px var(--crcl-green-glow);
}

.crcl-submit:active:not(:disabled) {
  transform: translateY(-1px);
}

.crcl-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.crcl-submit.crcl-loading {
  pointer-events: none;
}

.crcl-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-top-color: var(--crcl-text-primary);
  border-radius: 50%;
  animation: crcl-spin 0.7s linear infinite;
}

@keyframes crcl-spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   MODAL
   ======================================== */
.crcl-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: crcl-fadeIn 0.3s ease-out;
}

@keyframes crcl-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.crcl-modal {
  width: 100%;
  max-width: 650px;
  background: #161616;
  background: var(--crcl-bg-card);
  border-radius: 20px;
  border: 2px solid #10b981;
  border: 2px solid var(--crcl-green-primary);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7),
              0 0 100px rgba(16, 185, 129, 0.3);
  animation: crcl-scaleIn 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes crcl-scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.crcl-modal-header {
  padding: 3rem 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  background: linear-gradient(135deg, var(--crcl-green-primary) 0%, var(--crcl-green-secondary) 100%);
  border-radius: 18px 18px 0 0;
  position: relative;
  overflow: hidden;
}

.crcl-modal-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.crcl-modal-icon-success {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  color: var(--crcl-text-primary);
  animation: crcl-pulse 2s infinite;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

@keyframes crcl-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  }
}

.crcl-modal-header h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 0.8rem 0;
  color: #ffffff;
  color: var(--crcl-text-primary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.crcl-modal-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.crcl-modal-body {
  padding: 2.5rem;
}

.crcl-modal-section {
  margin-bottom: 2rem;
}

.crcl-modal-section h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
  color: var(--crcl-green-primary);
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   BLOQUE DE CREDENCIALES
   ======================================== */
.crcl-credenciales-block {
  background: #1a1a1a;
  background: var(--crcl-bg-secondary);
  border: 2px solid rgba(16, 185, 129, 0.4);
  border: 2px solid var(--crcl-border-primary);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.crcl-credencial-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.crcl-credencial-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.crcl-credencial-line:first-child {
  padding-top: 0;
}

.crcl-credencial-key {
  min-width: 120px;
  font-size: 1rem;
  font-weight: 700;
  color: #10b981;
  color: var(--crcl-green-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.crcl-credencial-val {
  flex: 1 1;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  color: var(--crcl-text-primary);
  background: rgba(16, 185, 129, 0.1);
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid #10b981;
  border: 1px solid var(--crcl-green-primary);
  font-family: 'Courier New', monospace;
  word-break: break-all;
}

/* ========================================
   BOTÓN COPIAR TODO
   ======================================== */
.crcl-btn-copy-all {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  background: linear-gradient(135deg, var(--crcl-green-primary) 0%, var(--crcl-green-secondary) 100%);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  color: var(--crcl-text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--crcl-transition);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.5);
  box-shadow: 0 4px 16px var(--crcl-green-glow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.crcl-btn-copy-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.5);
  box-shadow: 0 6px 24px var(--crcl-green-glow);
}

.crcl-btn-copy-all:active {
  transform: translateY(0);
}

/* ========================================
   MODAL FOOTER
   ======================================== */
.crcl-modal-footer {
  padding: 1.5rem 2.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid var(--crcl-border-secondary);
  display: flex;
  justify-content: center;
}

.crcl-btn-close {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.4);
  border: 2px solid var(--crcl-border-primary);
  border-radius: 10px;
  color: #ffffff;
  color: var(--crcl-text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--crcl-transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.crcl-btn-close:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10b981;
  border-color: var(--crcl-green-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

/* ========================================
   SCROLLBAR
   ======================================== */
.crcl-phone-dropdown::-webkit-scrollbar,
.crcl-modal::-webkit-scrollbar {
  width: 10px;
}

.crcl-phone-dropdown::-webkit-scrollbar-track,
.crcl-modal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}

.crcl-phone-dropdown::-webkit-scrollbar-thumb,
.crcl-modal::-webkit-scrollbar-thumb {
  background: #10b981;
  background: var(--crcl-green-primary);
  border-radius: 5px;
  border: 2px solid #1a1a1a;
  border: 2px solid var(--crcl-bg-secondary);
}

.crcl-phone-dropdown::-webkit-scrollbar-thumb:hover,
.crcl-modal::-webkit-scrollbar-thumb:hover {
  background: #059669;
  background: var(--crcl-green-secondary);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .crcl-container {
    padding: 0 1rem;
  }

  .crcl-header {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .crcl-header-text h2 {
    font-size: 2rem;
  }

  .crcl-card {
    padding: 2rem;
  }

  .crcl-phone-group {
    flex-direction: column;
  }

  .crcl-phone-selector {
    width: 100%;
  }

  .crcl-modal {
    margin: 20px;
  }

  .crcl-modal-body {
    padding: 2rem;
  }

  .crcl-credencial-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .crcl-credencial-key {
    min-width: auto;
  }

  .crcl-credencial-val {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .crcl-header-icon {
    font-size: 3rem;
  }

  .crcl-header-text h2 {
    font-size: 1.8rem;
  }

  .crcl-header-text p {
    font-size: 1rem;
  }

  .crcl-card {
    padding: 1.5rem;
  }

  .crcl-form {
    gap: 1.5rem;
  }

  .crcl-modal-header h3 {
    font-size: 1.8rem;
  }

  .crcl-modal-icon-success {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  .crcl-credenciales-block {
    padding: 1.5rem;
  }

  .crcl-credencial-key {
    font-size: 0.9rem;
  }

  .crcl-credencial-val {
    font-size: 1rem;
  }
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.crcl-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #1a1a1a;
  background: var(--crcl-bg-secondary);
  border: 2px solid #10b981;
  border: 2px solid var(--crcl-green-primary);
  border-radius: 12px;
  color: #ffffff;
  color: var(--crcl-text-primary);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(16, 185, 129, 0.4);
  z-index: 10001;
  animation: crcl-toastSlide 0.4s ease-out;
}

@keyframes crcl-toastSlide {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.crcl-toast-icon {
  width: 32px;
  height: 32px;
  background: #10b981;
  background: var(--crcl-green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .crcl-toast {
    bottom: 20px;
    right: 20px;
    left: 20px;
    font-size: 0.95rem;
  }
}

/* PREFIX: chgpwd- (change password) - DARK MODE */

.chgpwd-container {
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
  background: #0a0e27;
  min-height: 100vh;
}

.chgpwd-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 20px;
  flex-wrap: wrap;
}

.chgpwd-title-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  text-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.chgpwd-title-section p {
  color: #a0a0a0;
  margin: 0;
  font-size: 14px;
}

.chgpwd-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.chgpwd-search {
  position: relative;
}

.chgpwd-search-input {
  padding: 10px 16px;
  border: 2px solid #1e2640;
  border-radius: 8px;
  font-size: 14px;
  width: 280px;
  transition: all 0.3s ease;
  background: #12182e;
  color: #ffffff;
}

.chgpwd-search-input::placeholder {
  color: #666;
}

.chgpwd-search-input:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
  background: #1a2040;
}

.chgpwd-btn-refresh {
  padding: 10px 20px;
  background: #1e2640;
  border: 2px solid #2a3350;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #ffffff;
}

.chgpwd-btn-refresh:hover {
  background: #4caf50;
  color: white;
  border-color: #4caf50;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.chgpwd-btn-refresh:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.chgpwd-mensaje {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  animation: chgpwdSlideDown 0.3s ease;
}

@keyframes chgpwdSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chgpwd-mensaje-success {
  background: #1b4d1f;
  color: #4ade80;
  border: 1px solid #22c55e;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.chgpwd-mensaje-error {
  background: #4d1b1b;
  color: #f87171;
  border: 1px solid #ef4444;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.chgpwd-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 24px;
}

.chgpwd-stat-card {
  background: linear-gradient(135deg, #1e2640 0%, #12182e 100%);
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #2a3350;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.chgpwd-stat-card:hover {
  border-color: #4caf50;
  box-shadow: 0 0 30px rgba(76, 175, 80, 0.2);
  transform: translateY(-2px);
}

.chgpwd-stat-icon {
  font-size: 32px;
  filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.5));
}

.chgpwd-stat-info h3 {
  font-size: 24px;
  margin: 0 0 4px 0;
  color: #4caf50;
  font-weight: 700;
}

.chgpwd-stat-info p {
  margin: 0;
  color: #a0a0a0;
  font-size: 13px;
}

.chgpwd-table-container {
  background: #12182e;
  border-radius: 12px;
  border: 2px solid #1e2640;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.chgpwd-table {
  width: 100%;
  border-collapse: collapse;
}

.chgpwd-table thead {
  background: #1e2640;
}

.chgpwd-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: #4caf50;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #2a3350;
}

.chgpwd-table td {
  padding: 16px;
  border-bottom: 1px solid #1e2640;
  font-size: 14px;
  color: #e0e0e0;
}

.chgpwd-table tbody tr {
  transition: all 0.3s ease;
}

.chgpwd-table tbody tr:hover {
  background: #1a2040;
  box-shadow: inset 0 0 20px rgba(76, 175, 80, 0.1);
}

.chgpwd-user-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chgpwd-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.chgpwd-user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chgpwd-user-info strong {
  color: #ffffff;
  font-size: 14px;
}

.chgpwd-user-id {
  font-size: 12px;
  color: #666;
}

.chgpwd-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.chgpwd-badge-cliente {
  background: #1e3a5f;
  color: #60a5fa;
  border: 1px solid #3b82f6;
}

.chgpwd-badge-vendedor {
  background: #4a1e5f;
  color: #c084fc;
  border: 1px solid #a855f7;
}

.chgpwd-btn-cambiar {
  padding: 8px 16px;
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.chgpwd-btn-cambiar:hover {
  background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

.chgpwd-loading,
.chgpwd-empty {
  padding: 60px 20px;
  text-align: center;
  color: #a0a0a0;
}

.chgpwd-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #1e2640;
  border-top: 4px solid #4caf50;
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: chgpwdSpin 1s linear infinite;
}

@keyframes chgpwdSpin {
  to { transform: rotate(360deg); }
}

/* MODAL */
.chgpwd-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.chgpwd-modal {
  background: linear-gradient(135deg, #1e2640 0%, #12182e 100%);
  border-radius: 16px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 100px rgba(76, 175, 80, 0.2);
  border: 2px solid #2a3350;
  animation: chgpwdModalSlideIn 0.3s ease;
}

@keyframes chgpwdModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chgpwd-modal-header {
  padding: 24px;
  border-bottom: 2px solid #2a3350;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chgpwd-modal-header h3 {
  margin: 0;
  font-size: 20px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.chgpwd-modal-close {
  background: #1e2640;
  border: 2px solid #2a3350;
  font-size: 24px;
  cursor: pointer;
  color: #a0a0a0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.chgpwd-modal-close:hover {
  background: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.chgpwd-modal-body {
  padding: 24px;
}

.chgpwd-usuario-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #0a0e27;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 2px solid #2a3350;
}

.chgpwd-avatar-grande {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(102, 126, 234, 0.6);
}

.chgpwd-usuario-info h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: #ffffff;
}

.chgpwd-usuario-info p {
  margin: 0;
  font-size: 13px;
  color: #a0a0a0;
}

.chgpwd-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chgpwd-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chgpwd-input-group label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.chgpwd-input-group small {
  font-size: 12px;
  color: #a0a0a0;
  font-style: italic;
}

.chgpwd-input {
  padding: 12px 16px;
  border: 2px solid #2a3350;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #0a0e27;
  color: #ffffff;
}

.chgpwd-input::placeholder {
  color: #666;
}

.chgpwd-input:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
  background: #12182e;
}

.chgpwd-toggle-show {
  margin: -8px 0;
}

.chgpwd-toggle-show label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #a0a0a0;
}

.chgpwd-toggle-show input[type="checkbox"] {
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.chgpwd-btn-generar {
  padding: 10px 16px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.3);
}

.chgpwd-btn-generar:hover {
  background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
}

.chgpwd-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #2a3350 50%, transparent 100%);
  margin: 8px 0;
}

.chgpwd-admin-section {
  background: linear-gradient(135deg, #3d2a00 0%, #2a1d00 100%);
  padding: 16px;
  border-radius: 8px;
  border: 2px solid #ffc107;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

.chgpwd-admin-section label {
  color: #ffc107;
}

.chgpwd-admin-section small {
  color: #ffb300;
  font-weight: 500;
}

.chgpwd-modal-footer {
  padding: 20px 24px;
  border-top: 2px solid #2a3350;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.chgpwd-btn-cancelar,
.chgpwd-btn-guardar {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.chgpwd-btn-cancelar {
  background: #1e2640;
  color: #a0a0a0;
  border: 2px solid #2a3350;
}

.chgpwd-btn-cancelar:hover {
  background: #2a3350;
  color: #ffffff;
}

.chgpwd-btn-guardar {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.chgpwd-btn-guardar:hover {
  background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
  transform: translateY(-2px);
}

.chgpwd-btn-guardar:disabled,
.chgpwd-btn-cancelar:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* SCROLLBAR DARK */
.chgpwd-modal::-webkit-scrollbar {
  width: 8px;
}

.chgpwd-modal::-webkit-scrollbar-track {
  background: #0a0e27;
}

.chgpwd-modal::-webkit-scrollbar-thumb {
  background: #2a3350;
  border-radius: 4px;
}

.chgpwd-modal::-webkit-scrollbar-thumb:hover {
  background: #4caf50;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .chgpwd-container {
    padding: 16px;
  }

  .chgpwd-header {
    flex-direction: column;
  }

  .chgpwd-actions {
    width: 100%;
    flex-direction: column;
  }

  .chgpwd-search-input {
    width: 100%;
  }

  .chgpwd-table-container {
    overflow-x: auto;
  }

  .chgpwd-table {
    min-width: 800px;
  }
  
  .chgpwd-modal {
    max-width: 100%;
  }
}

/* MODAL DE AUTENTICACIÓN INICIAL */
.chgpwd-auth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0e27;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.chgpwd-auth-modal {
  background: linear-gradient(135deg, #1e2640 0%, #12182e 100%);
  border-radius: 16px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 100px rgba(76, 175, 80, 0.2);
  border: 2px solid #2a3350;
  animation: chgpwdAuthSlideIn 0.4s ease;
}

@keyframes chgpwdAuthSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.chgpwd-auth-header {
  padding: 32px 32px 24px;
  text-align: center;
  border-bottom: 2px solid #2a3350;
}

.chgpwd-auth-header h2 {
  margin: 0 0 8px 0;
  font-size: 24px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.chgpwd-auth-header p {
  margin: 0;
  color: #a0a0a0;
  font-size: 14px;
}

.chgpwd-auth-body {
  padding: 32px;
}

.chgpwd-auth-user {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #0a0e27;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 2px solid #2a3350;
}

.chgpwd-auth-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.chgpwd-auth-user h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: #ffffff;
}

.chgpwd-auth-user p {
  margin: 0;
  font-size: 13px;
  color: #4caf50;
  font-weight: 500;
}

.chgpwd-btn-auth {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
  margin-top: 8px;
}

.chgpwd-btn-auth:hover {
  background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
  transform: translateY(-2px);
}

.chgpwd-btn-auth:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* INDICADOR DE PASOS */
.chgpwd-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
  padding: 20px;
  background: #0a0e27;
  border-radius: 12px;
  border: 2px solid #2a3350;
}

.chgpwd-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.chgpwd-step.active {
  opacity: 1;
}

.chgpwd-step.completed {
  opacity: 0.7;
}

.chgpwd-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e2640;
  border: 2px solid #2a3350;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
}

.chgpwd-step.active .chgpwd-step-number {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  border-color: #4caf50;
  color: white;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.chgpwd-step.completed .chgpwd-step-number {
  background: #4caf50;
  border-color: #4caf50;
  color: white;
}

.chgpwd-step span {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.chgpwd-step.active span {
  color: #4caf50;
}

.chgpwd-step.completed span {
  color: #a0a0a0;
}

.chgpwd-step-line {
  width: 80px;
  height: 2px;
  background: #2a3350;
  position: relative;
}

:root {
  --admin-black: #000000;
  --admin-black-card: #050505;
  --admin-black-lighter: #0d0d0d;
  --admin-red: #8b0000;
  --admin-red-light: #b71c1c;
  --admin-red-dark: #5f0000;
  --admin-gold: #b8860b;
  --admin-gold-light: #daa520;
  --admin-gold-dark: #8b6914;
  --admin-border: rgba(139, 0, 0, 0.2);
  --admin-border-light: rgba(139, 0, 0, 0.3);
  --admin-glow-red: rgba(139, 0, 0, 0.8);
  --admin-glow-gold: rgba(184, 134, 11, 0.7);
  --admin-text: #ffffff;
  --admin-text-secondary: #a0a0a0;
  --admin-text-muted: #6b6b6b;
  --admin-success: #0d7350;
  --admin-warning: #d97706;
  --admin-error: #b71c1c;
}

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

/* ========================================
   CONTENEDOR PRINCIPAL
   ======================================== */

.eliminar-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  max-width: 100%;
  font-family: 'Rajdhani', sans-serif;
  color: #ffffff;
  color: var(--admin-text);
}

/* ========================================
   NOTIFICACIONES
   ======================================== */

.eliminar-notifications-zone {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

.eliminar-notification {
  background: #050505;
  background: var(--admin-black-card);
  border: 1px solid rgba(139, 0, 0, 0.3);
  border: 1px solid var(--admin-border-light);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.9);
  animation: slideInRight 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

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

.eliminar-notification-success {
  border-left: 4px solid #0d7350;
  border-left: 4px solid var(--admin-success);
  box-shadow: 0 0 20px rgba(13, 115, 80, 0.3);
}

.eliminar-notification-error {
  border-left: 4px solid #b71c1c;
  border-left: 4px solid var(--admin-error);
  box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

.eliminar-notification-warning {
  border-left: 4px solid #d97706;
  border-left: 4px solid var(--admin-warning);
  box-shadow: 0 0 20px rgba(217, 119, 6, 0.3);
}

.eliminar-notification-info {
  border-left: 4px solid #b8860b;
  border-left: 4px solid var(--admin-gold);
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.7);
  box-shadow: 0 0 20px var(--admin-glow-gold);
}

.eliminar-notification-body {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1;
}

.eliminar-notification-emoji {
  font-size: 20px;
  flex-shrink: 0;
}

.eliminar-notification-text {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  color: var(--admin-text);
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.eliminar-notification-dismiss {
  background: transparent;
  border: none;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  cursor: pointer;
  font-size: 18px;
  padding: 4px 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.eliminar-notification-dismiss:hover {
  color: #b71c1c;
  color: var(--admin-red-light);
  transform: scale(1.1);
}

/* ========================================
   HEADER
   ======================================== */

.eliminar-header {
  background: linear-gradient(135deg, #5f0000, #050505);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-black-card));
  border: 1px solid rgba(139, 0, 0, 0.3);
  border: 1px solid var(--admin-border-light);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 0 30px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 30px var(--admin-glow-red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.eliminar-title-section h1 {
  font-family: 'Orbitron', monospace;
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  color: var(--admin-text);
  margin: 0 0 8px 0;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
  text-shadow: 0 0 20px var(--admin-glow-red);
}

.eliminar-title-section p {
  font-size: 14px;
  font-weight: 500;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  margin: 0;
  letter-spacing: 0.3px;
}

.eliminar-stats {
  display: flex;
  gap: 16px;
}

.stat-card {
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 100px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #8b0000;
  border-color: var(--admin-red);
  transform: translateY(-2px);
}

.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 32px;
  font-weight: 900;
  color: #b8860b;
  color: var(--admin-gold);
  filter: drop-shadow(0 0 10px rgba(184, 134, 11, 0.7));
  filter: drop-shadow(0 0 10px var(--admin-glow-gold));
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   FORMULARIO
   ======================================== */

.eliminar-form-zone {
  background: #050505;
  background: var(--admin-black-card);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.eliminar-form-zone h2 {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  color: var(--admin-text);
  margin: 0 0 24px 0;
  letter-spacing: 0.5px;
}

.eliminar-form-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
  margin-bottom: 20px;
}

.eliminar-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eliminar-form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #b8860b;
  color: var(--admin-gold);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.eliminar-correos-group {
  grid-row: span 2;
}

.eliminar-correos-textarea {
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: #ffffff;
  color: var(--admin-text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  resize: vertical;
  min-height: 180px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  line-height: 1.6;
}

.eliminar-correos-textarea::placeholder {
  color: #6b6b6b;
  color: var(--admin-text-muted);
}

.eliminar-correos-textarea:focus {
  outline: none;
  border-color: #8b0000;
  border-color: var(--admin-red);
  box-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 20px var(--admin-glow-red);
  background: #000000;
  background: var(--admin-black);
}

.eliminar-correos-badge {
  background: linear-gradient(135deg, #5f0000, #8b0000);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-red));
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 15px var(--admin-glow-red);
  border: 1px solid #8b0000;
  border: 1px solid var(--admin-red);
}

.eliminar-input-suggestions-wrapper {
  position: relative;
}

.eliminar-input-field {
  width: 100%;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: #ffffff;
  color: var(--admin-text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.eliminar-input-field::placeholder {
  color: #6b6b6b;
  color: var(--admin-text-muted);
}

.eliminar-input-field:focus {
  outline: none;
  border-color: #8b0000;
  border-color: var(--admin-red);
  box-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 20px var(--admin-glow-red);
  background: #000000;
  background: var(--admin-black);
}

.eliminar-suggestions-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #050505;
  background: var(--admin-black-card);
  border: 1px solid rgba(139, 0, 0, 0.3);
  border: 1px solid var(--admin-border-light);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.95);
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  animation: dropdownSlideIn 0.3s ease;
}

@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eliminar-suggestion-item {
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(139, 0, 0, 0.2);
  border-bottom: 1px solid var(--admin-border);
}

.eliminar-suggestion-item:last-child {
  border-bottom: none;
}

.eliminar-suggestion-item:hover {
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border-left: 3px solid #8b0000;
  border-left: 3px solid var(--admin-red);
}

.eliminar-suggestion-primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.eliminar-suggestion-nombre {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  color: var(--admin-text);
  letter-spacing: 0.3px;
}

.eliminar-suggestion-uid {
  font-size: 11px;
  font-weight: 600;
  color: #b8860b;
  color: var(--admin-gold);
  background: rgba(184, 134, 11, 0.15);
  padding: 3px 8px;
  border-radius: 6px;
}

.eliminar-suggestion-secondary {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eliminar-suggestion-mail {
  font-size: 12px;
  font-weight: 500;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
}

.eliminar-plataforma-emoji {
  font-size: 18px;
  margin-right: 10px;
}

.eliminar-plataforma-titulo {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  color: var(--admin-text);
}

.eliminar-selected-badge {
  background: linear-gradient(135deg, #0d7350, #0a5f41);
  background: linear-gradient(135deg, var(--admin-success), #0a5f41);
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(13, 115, 80, 0.5);
  border: 1px solid #0d7350;
  border: 1px solid var(--admin-success);
}

.eliminar-actions-group {
  grid-column: span 3;
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.btn-analizar,
.btn-limpiar {
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-analizar {
  flex: 2 1;
  background: linear-gradient(135deg, #8b6914, #b8860b);
  background: linear-gradient(135deg, var(--admin-gold-dark), var(--admin-gold));
  color: white;
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.7);
  box-shadow: 0 0 20px var(--admin-glow-gold);
  border: 1px solid #b8860b;
  border: 1px solid var(--admin-gold);
}

.btn-analizar:hover:not(:disabled) {
  background: linear-gradient(135deg, #b8860b, #daa520);
  background: linear-gradient(135deg, var(--admin-gold), var(--admin-gold-light));
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(184, 134, 11, 0.7);
  box-shadow: 0 6px 30px var(--admin-glow-gold);
}

.btn-limpiar {
  flex: 1 1;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  color: #ffffff;
  color: var(--admin-text);
}

.btn-limpiar:hover:not(:disabled) {
  background: #5f0000;
  background: var(--admin-red-dark);
  border-color: #8b0000;
  border-color: var(--admin-red);
  transform: translateY(-2px);
}

.btn-analizar:disabled,
.btn-limpiar:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ========================================
   RESULTADO ANÁLISIS
   ======================================== */

.eliminar-resultado-zone {
  background: #050505;
  background: var(--admin-black-card);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.4s ease;
}

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

.eliminar-resultado-zone h2 {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  color: var(--admin-text);
  margin: 0 0 24px 0;
  letter-spacing: 0.5px;
}

.resultado-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 28px;
}

.resultado-stat-card {
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.resultado-stat-card:hover {
  transform: translateY(-4px);
}

.resultado-total {
  border-color: #b8860b;
  border-color: var(--admin-gold);
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.7);
  box-shadow: 0 0 20px var(--admin-glow-gold);
}

.resultado-existentes {
  border-color: #0d7350;
  border-color: var(--admin-success);
  box-shadow: 0 0 20px rgba(13, 115, 80, 0.5);
}

.resultado-no-existentes {
  border-color: #b71c1c;
  border-color: var(--admin-error);
  box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

.resultado-duplicados {
  border-color: #d97706;
  border-color: var(--admin-warning);
  box-shadow: 0 0 20px rgba(217, 119, 6, 0.5);
}

.resultado-stat-icon {
  font-size: 32px;
}

.resultado-stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 36px;
  font-weight: 900;
  color: #b8860b;
  color: var(--admin-gold);
}

.resultado-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.resultado-section {
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.resultado-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  color: var(--admin-text);
  margin: 0 0 16px 0;
  letter-spacing: 0.3px;
}

.resultado-existentes-section {
  border-left: 4px solid #0d7350;
  border-left: 4px solid var(--admin-success);
}

.resultado-no-existentes-section {
  border-left: 4px solid #b71c1c;
  border-left: 4px solid var(--admin-error);
}

.resultado-duplicados-section {
  border-left: 4px solid #d97706;
  border-left: 4px solid var(--admin-warning);
}

.resultado-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 10px;
  gap: 10px;
}

.resultado-item {
  background: #050505;
  background: var(--admin-black-card);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.resultado-item:hover {
  transform: translateX(4px);
}

.resultado-item-existe {
  border-left: 3px solid #0d7350;
  border-left: 3px solid var(--admin-success);
}

.resultado-item-no-existe {
  border-left: 3px solid #b71c1c;
  border-left: 3px solid var(--admin-error);
}

.resultado-item-duplicado {
  border-left: 3px solid #d97706;
  border-left: 3px solid var(--admin-warning);
}

.resultado-item-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.resultado-item-correo {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  color: var(--admin-text);
  word-break: break-all;
  letter-spacing: 0.3px;
}

/* ========================================
   CONFIRMACIÓN ELIMINACIÓN
   ======================================== */

.eliminar-confirmacion-zone {
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, #5f0000, #050505);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-black-card));
  border: 2px solid #8b0000;
  border: 2px solid var(--admin-red);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 0 30px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 30px var(--admin-glow-red);
}

.btn-eliminar-confirmado {
  background: linear-gradient(135deg, #5f0000, #8b0000);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-red));
  color: white;
  padding: 16px 40px;
  border-radius: 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #b71c1c;
  border: 1px solid var(--admin-red-light);
  box-shadow: 0 0 25px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 25px var(--admin-glow-red);
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-eliminar-confirmado:hover:not(:disabled) {
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  background: linear-gradient(135deg, var(--admin-red), var(--admin-red-light));
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(139, 0, 0, 0.8);
  box-shadow: 0 8px 40px var(--admin-glow-red);
}

.btn-eliminar-confirmado:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.eliminar-loading-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.eliminar-advertencia {
  font-size: 13px;
  font-weight: 600;
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.5;
}

.eliminar-advertencia strong {
  color: #b8860b;
  color: var(--admin-gold);
  font-weight: 700;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .eliminar-form-grid {
    grid-template-columns: 1fr;
  }

  .eliminar-correos-group {
    grid-row: auto;
  }

  .eliminar-actions-group {
    grid-column: auto;
  }

  .resultado-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .eliminar-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .eliminar-title-section h1 {
    font-size: 22px;
  }

  .eliminar-stats {
    width: 100%;
    justify-content: space-between;
  }

  .stat-card {
    flex: 1 1;
    min-width: 0;
    padding: 12px 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .eliminar-form-zone,
  .eliminar-resultado-zone {
    padding: 20px;
  }

  .eliminar-actions-group {
    flex-direction: column;
  }

  .resultado-stats-grid {
    grid-template-columns: 1fr;
  }

  .resultado-list {
    grid-template-columns: 1fr;
  }

  .eliminar-notifications-zone {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .eliminar-header {
    padding: 16px;
  }

  .eliminar-title-section h1 {
    font-size: 20px;
  }

  .eliminar-title-section p {
    font-size: 12px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
  }

  .eliminar-form-zone h2,
  .eliminar-resultado-zone h2 {
    font-size: 18px;
  }

  .btn-eliminar-confirmado {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* ========================================
   SCROLLBAR
   ======================================== */

.eliminar-suggestions-dropdown::-webkit-scrollbar,
.resultado-list::-webkit-scrollbar {
  width: 6px;
}

.eliminar-suggestions-dropdown::-webkit-scrollbar-track,
.resultado-list::-webkit-scrollbar-track {
  background: #000000;
  background: var(--admin-black);
  border-radius: 10px;
}

.eliminar-suggestions-dropdown::-webkit-scrollbar-thumb,
.resultado-list::-webkit-scrollbar-thumb {
  background: #8b0000;
  background: var(--admin-red);
  border-radius: 10px;
}

.eliminar-suggestions-dropdown::-webkit-scrollbar-thumb:hover,
.resultado-list::-webkit-scrollbar-thumb:hover {
  background: #b71c1c;
  background: var(--admin-red-light);
}



/* Badge mejorado para mostrar cliente con cuentas */
.eliminar-cliente-info-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #00d68f 0%, #00b377 100%);
  border-radius: 8px;
  margin-top: 8px;
}

.badge-nombre {
  font-weight: 600;
  color: white;
  font-size: 14px;
}

.badge-cuentas {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
/* ===== ELIMINACIÓN RADICAL ===== */
.eliminar-radical-zone {
  background: linear-gradient(135deg, #5f0000, #050505);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-black-card));
  border: 2px solid #8b0000;
  border: 2px solid var(--admin-red);
  box-shadow: 0 8px 32px rgba(139, 0, 0, 0.8);
  box-shadow: 0 8px 32px var(--admin-glow-red);
}

.eliminar-radical-zone h2 {
  font-family: 'Orbitron', monospace;
  color: #b8860b;
  color: var(--admin-gold);
  text-shadow: 0 0 20px rgba(184, 134, 11, 0.7);
  text-shadow: 0 0 20px var(--admin-glow-gold);
  font-weight: 900;
  letter-spacing: 1px;
}

.eliminar-radical-zone label {
  color: #b8860b;
  color: var(--admin-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.eliminar-form-grid-radical {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eliminar-form-group-full {
  width: 100%;
}

.eliminar-correos-textarea-radical {
  width: 100%;
  min-height: 200px;
  padding: 16px;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 2px solid #8b0000;
  border: 2px solid var(--admin-red);
  border-radius: 12px;
  font-family: 'Rajdhani', monospace;
  font-size: 14px;
  line-height: 1.6;
  resize: vertical;
  color: #ffffff;
  color: var(--admin-text);
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.eliminar-correos-textarea-radical::placeholder {
  color: #6b6b6b;
  color: var(--admin-text-muted);
}

.eliminar-correos-textarea-radical:focus {
  outline: none;
  border-color: #b71c1c;
  border-color: var(--admin-red-light);
  box-shadow: 0 0 25px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 25px var(--admin-glow-red);
  background: #000000;
  background: var(--admin-black);
}

.btn-buscar-radical {
  padding: 18px 36px;
  background: linear-gradient(135deg, #8b6914, #b8860b);
  background: linear-gradient(135deg, var(--admin-gold-dark), var(--admin-gold));
  color: white;
  border: 1px solid #b8860b;
  border: 1px solid var(--admin-gold);
  border-radius: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.7);
  box-shadow: 0 6px 20px var(--admin-glow-gold);
}

.btn-buscar-radical:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.7);
  box-shadow: 0 8px 30px var(--admin-glow-gold);
  background: linear-gradient(135deg, #b8860b, #daa520);
  background: linear-gradient(135deg, var(--admin-gold), var(--admin-gold-light));
}

.btn-buscar-radical:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  color: #6b6b6b;
  color: var(--admin-text-muted);
  border-color: rgba(139, 0, 0, 0.2);
  border-color: var(--admin-border);
}

/* RESULTADOS RADICALES */
.eliminar-resultado-radical {
  margin-top: 30px;
  background: #050505;
  background: var(--admin-black-card);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
}

.resultado-radical-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(139, 0, 0, 0.2);
  border-bottom: 2px solid var(--admin-border);
}

.resultado-radical-header h3 {
  font-family: 'Orbitron', monospace;
  color: #b8860b;
  color: var(--admin-gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.resultado-radical-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.resultado-radical-stats span {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  border: 1px solid;
}

.stat-encontrados {
  background: linear-gradient(135deg, #0d7350, #0a5f41);
  background: linear-gradient(135deg, var(--admin-success), #0a5f41);
  color: white;
  border-color: #0d7350;
  border-color: var(--admin-success);
  box-shadow: 0 4px 12px rgba(13, 115, 80, 0.4);
}

.stat-no-encontrados {
  background: linear-gradient(135deg, #b71c1c, #5f0000);
  background: linear-gradient(135deg, var(--admin-error), var(--admin-red-dark));
  color: white;
  border-color: #b71c1c;
  border-color: var(--admin-error);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.8);
  box-shadow: 0 4px 12px var(--admin-glow-red);
}

.stat-seleccionados {
  background: linear-gradient(135deg, #8b6914, #b8860b);
  background: linear-gradient(135deg, var(--admin-gold-dark), var(--admin-gold));
  color: white;
  border-color: #b8860b;
  border-color: var(--admin-gold);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.7);
  box-shadow: 0 4px 12px var(--admin-glow-gold);
}

/* PAGINACIÓN */
.paginacion-controles {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding: 16px;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border-radius: 12px;
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
}

.paginacion-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  color: var(--admin-text);
  font-weight: 600;
}

.paginacion-selector label {
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  text-transform: none;
  font-weight: 600;
}

.paginacion-selector select {
  padding: 8px 16px;
  border: 2px solid rgba(139, 0, 0, 0.2);
  border: 2px solid var(--admin-border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  background: #000000;
  background: var(--admin-black);
  color: #b8860b;
  color: var(--admin-gold);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
}

.paginacion-selector select:focus {
  outline: none;
  border-color: #8b0000;
  border-color: var(--admin-red);
  box-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 15px var(--admin-glow-red);
}

.paginacion-info {
  font-weight: 700;
  color: #b8860b;
  color: var(--admin-gold);
  font-family: 'Orbitron', monospace;
  letter-spacing: 0.5px;
}

/* TABLA RESULTADOS */
.tabla-resultados-radical {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 12px;
}

.tabla-correos-radical {
  width: 100%;
  border-collapse: collapse;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(139, 0, 0, 0.2);
  border: 1px solid var(--admin-border);
}

.tabla-correos-radical thead {
  background: linear-gradient(135deg, #5f0000, #8b0000);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-red));
  color: white;
}

.tabla-correos-radical th {
  padding: 16px;
  text-align: left;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Orbitron', monospace;
}

.th-checkbox {
  width: 50px;
  text-align: center;
}

.tabla-correos-radical thead input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #b8860b;
  accent-color: var(--admin-gold);
}

.tabla-correos-radical tbody tr {
  border-bottom: 1px solid rgba(139, 0, 0, 0.2);
  border-bottom: 1px solid var(--admin-border);
  transition: all 0.2s ease;
}

.tabla-correos-radical tbody tr:hover {
  background: rgba(139, 0, 0, 0.1);
}

.tabla-correos-radical tbody tr.selected {
  background: rgba(184, 134, 11, 0.15);
  border-left: 4px solid #b8860b;
  border-left: 4px solid var(--admin-gold);
}

.tabla-correos-radical td {
  padding: 14px 16px;
  font-size: 14px;
  color: #ffffff;
  color: var(--admin-text);
  font-weight: 600;
}

.tabla-correos-radical tbody input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #8b0000;
  accent-color: var(--admin-red);
}

.td-correo {
  font-family: 'Rajdhani', monospace;
  font-weight: 700;
  color: #b8860b;
  color: var(--admin-gold);
  letter-spacing: 0.3px;
}

.td-clientes {
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  font-size: 13px;
}

.td-plataformas {
  color: #a0a0a0;
  color: var(--admin-text-secondary);
  font-size: 13px;
}

.td-impacto {
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 6px;
  text-align: center;
  font-family: 'Orbitron', monospace;
  letter-spacing: 0.5px;
  border: 1px solid;
}

.td-impacto.safe {
  background: linear-gradient(135deg, #0d7350, #0a5f41);
  background: linear-gradient(135deg, var(--admin-success), #0a5f41);
  color: white;
  border-color: #0d7350;
  border-color: var(--admin-success);
  box-shadow: 0 2px 8px rgba(13, 115, 80, 0.4);
}

.td-impacto.warning {
  background: linear-gradient(135deg, #d97706, #b45309);
  background: linear-gradient(135deg, var(--admin-warning), #b45309);
  color: white;
  border-color: #d97706;
  border-color: var(--admin-warning);
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

.td-impacto.danger {
  background: linear-gradient(135deg, #b71c1c, #5f0000);
  background: linear-gradient(135deg, var(--admin-error), var(--admin-red-dark));
  color: white;
  border-color: #b71c1c;
  border-color: var(--admin-error);
  box-shadow: 0 2px 8px rgba(139, 0, 0, 0.8);
  box-shadow: 0 2px 8px var(--admin-glow-red);
}

/* NAVEGACIÓN DE PÁGINAS */
.paginacion-navegacion {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.btn-paginacion {
  padding: 10px 20px;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 2px solid #8b0000;
  border: 2px solid var(--admin-red);
  border-radius: 8px;
  font-weight: 700;
  color: #b8860b;
  color: var(--admin-gold);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-paginacion:hover:not(:disabled) {
  background: #8b0000;
  background: var(--admin-red);
  color: white;
  border-color: #b71c1c;
  border-color: var(--admin-red-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.8);
  box-shadow: 0 4px 15px var(--admin-glow-red);
}

.btn-paginacion:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: rgba(139, 0, 0, 0.2);
  border-color: var(--admin-border);
  color: #6b6b6b;
  color: var(--admin-text-muted);
}

.paginacion-numeros {
  display: flex;
  gap: 6px;
}

.btn-pagina {
  width: 40px;
  height: 40px;
  padding: 0;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 2px solid rgba(139, 0, 0, 0.2);
  border: 2px solid var(--admin-border);
  border-radius: 8px;
  font-weight: 700;
  color: #ffffff;
  color: var(--admin-text);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Orbitron', monospace;
}

.btn-pagina:hover {
  background: rgba(139, 0, 0, 0.2);
  border-color: #8b0000;
  border-color: var(--admin-red);
  transform: translateY(-2px);
  color: #b8860b;
  color: var(--admin-gold);
}

.btn-pagina.active {
  background: linear-gradient(135deg, #5f0000, #8b0000);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-red));
  color: white;
  border-color: #b71c1c;
  border-color: var(--admin-red-light);
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.8);
  box-shadow: 0 4px 15px var(--admin-glow-red);
  font-weight: 900;
}

/* BOTÓN ELIMINAR RADICAL */
.eliminar-confirmacion-radical {
  margin-top: 30px;
  padding: 24px;
  background: linear-gradient(135deg, #5f0000, rgba(139, 0, 0, 0.2));
  background: linear-gradient(135deg, var(--admin-red-dark), rgba(139, 0, 0, 0.2));
  border: 2px solid #8b0000;
  border: 2px solid var(--admin-red);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 30px rgba(139, 0, 0, 0.8);
  box-shadow: 0 0 30px var(--admin-glow-red);
}

.btn-eliminar-radical {
  padding: 18px 48px;
  background: linear-gradient(135deg, #5f0000, #8b0000);
  background: linear-gradient(135deg, var(--admin-red-dark), var(--admin-red));
  color: white;
  border: 1px solid #b71c1c;
  border: 1px solid var(--admin-red-light);
  border-radius: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.8);
  box-shadow: 0 6px 20px var(--admin-glow-red);
}

.btn-eliminar-radical:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(139, 0, 0, 0.8);
  box-shadow: 0 8px 30px var(--admin-glow-red);
  background: linear-gradient(135deg, #8b0000, #b71c1c);
  background: linear-gradient(135deg, var(--admin-red), var(--admin-red-light));
}

.btn-eliminar-radical:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  color: #6b6b6b;
  color: var(--admin-text-muted);
  border-color: rgba(139, 0, 0, 0.2);
  border-color: var(--admin-border);
}

.eliminar-advertencia-radical {
  margin-top: 16px;
  color: #b8860b;
  color: var(--admin-gold);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-shadow: 0 0 10px rgba(184, 134, 11, 0.7);
  text-shadow: 0 0 10px var(--admin-glow-gold);
}

.eliminar-advertencia-radical strong {
  color: #b71c1c;
  color: var(--admin-red-light);
  font-weight: 900;
}

/* NO ENCONTRADOS */
.no-encontrados-section {
  margin-top: 24px;
  padding: 20px;
  background: rgba(139, 0, 0, 0.1);
  border-left: 4px solid #8b0000;
  border-left: 4px solid var(--admin-red);
  border-radius: 8px;
}

.no-encontrados-section h4 {
  color: #b8860b;
  color: var(--admin-gold);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.no-encontrados-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.no-encontrado-item {
  padding: 6px 12px;
  background: #0d0d0d;
  background: var(--admin-black-lighter);
  border: 1px solid #8b0000;
  border: 1px solid var(--admin-red);
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Rajdhani', monospace;
  color: #ffffff;
  color: var(--admin-text);
  font-weight: 600;
}

/* Badge cliente con cuentas - ACTUALIZADO */
.eliminar-cliente-info-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #0d7350, #0a5f41);
  background: linear-gradient(135deg, var(--admin-success), #0a5f41);
  border-radius: 8px;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(13, 115, 80, 0.4);
  border: 1px solid #0d7350;
  border: 1px solid var(--admin-success);
}

.badge-nombre {
  font-weight: 700;
  color: white;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.badge-cuentas {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: 'Orbitron', monospace;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .resultado-radical-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .paginacion-controles {
    flex-direction: column;
    gap: 12px;
  }
  
  .tabla-correos-radical {
    font-size: 12px;
  }
  
  .tabla-correos-radical th,
  .tabla-correos-radical td {
    padding: 10px 8px;
  }
  
  .paginacion-numeros .btn-pagina {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
  
  .btn-eliminar-radical {
    padding: 14px 28px;
    font-size: 16px;
  }
}

/* SCROLLBAR PERSONALIZADO */
.tabla-resultados-radical::-webkit-scrollbar {
  height: 8px;
}

.tabla-resultados-radical::-webkit-scrollbar-track {
  background: #000000;
  background: var(--admin-black);
  border-radius: 10px;
}

.tabla-resultados-radical::-webkit-scrollbar-thumb {
  background: #8b0000;
  background: var(--admin-red);
  border-radius: 10px;
}

.tabla-resultados-radical::-webkit-scrollbar-thumb:hover {
  background: #b71c1c;
  background: var(--admin-red-light);
}



:root {
  --netflix-primary: #E50914;
  --netflix-primary-dark: #B20710;
  --netflix-primary-light: #F40612;
  --netflix-bg-dark: #000000;
  --netflix-bg-card: #141414;
  --netflix-bg-elevated: #1F1F1F;
  --netflix-text-primary: #ffffff;
  --netflix-text-secondary: #B3B3B3;
  --netflix-text-muted: #808080;
  --netflix-border: rgba(229, 9, 20, 0.15);
  --netflix-border-bright: rgba(229, 9, 20, 0.4);
  --netflix-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --netflix-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
}


.codigo-hogar-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
  font-family: 'Space Grotesk', 'Rajdhani', sans-serif;
  background: #000000;
  background: var(--netflix-bg-dark);
}


.codigo-hogar-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.codigo-hogar-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    #000000 0%, 
    #0a0a0a 25%, 
    #1a0000 50%, 
    #0a0a0a 75%, 
    #000000 100%
  );
}

.codigo-hogar-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
}

.codigo-hogar-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
  animation: float 25s infinite ease-in-out;
}

.codigo-hogar-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #E50914 0%, #B20710 50%, transparent 100%);
  top: -15%;
  left: -10%;
  animation-delay: 0s;
}

.codigo-hogar-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #F40612 0%, #E50914 50%, transparent 100%);
  bottom: -10%;
  right: -10%;
  animation-delay: 8s;
}

.codigo-hogar-orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #E50914 0%, #B20710 50%, transparent 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 16s;
}

@keyframes float {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
    opacity: 0.2;
  }
  25% { 
    transform: translate(40px, -40px) scale(1.15); 
    opacity: 0.3;
  }
  50% { 
    transform: translate(-30px, 30px) scale(0.9); 
    opacity: 0.25;
  }
  75% { 
    transform: translate(30px, 40px) scale(1.1); 
    opacity: 0.28;
  }
}


.codigo-hogar-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 650px;
  animation: contentFadeIn 0.8s ease-out;
}

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


.codigo-hogar-header {
  margin-bottom: 24px;
  animation: headerSlideIn 0.6s ease-out 0.2s backwards;
}

@keyframes headerSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.codigo-hogar-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(229, 9, 20, 0.15);
  border: 1px solid var(--netflix-border);
  border-radius: 10px;
  color: #B3B3B3;
  color: var(--netflix-text-secondary);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.codigo-hogar-back-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(229, 9, 20, 0.4);
  border-color: var(--netflix-border-bright);
  color: #ffffff;
  color: var(--netflix-text-primary);
  transform: translateX(-4px);
}

.codigo-hogar-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #1F1F1F 0%, #141414 100%);
  background: linear-gradient(135deg, var(--netflix-bg-elevated) 0%, var(--netflix-bg-card) 100%);
  border: 1px solid rgba(229, 9, 20, 0.15);
  border: 1px solid var(--netflix-border);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  box-shadow: var(--netflix-shadow);
  position: relative;
  overflow: hidden;
}

.codigo-hogar-brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #E50914, transparent);
  background: linear-gradient(90deg, transparent, var(--netflix-primary), transparent);
  animation: topBarScan 3s ease-in-out infinite;
}

@keyframes topBarScan {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.codigo-hogar-logo-container {
  position: relative;
  flex-shrink: 0;
}

.codigo-hogar-logo {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  border: 2px solid rgba(229, 9, 20, 0.4);
  border: 2px solid var(--netflix-border-bright);
  box-shadow: 0 8px 24px rgba(229, 9, 20, 0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: logoPulse 3s ease-in-out infinite;
  object-fit: cover;
}

.codigo-hogar-logo:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.5);
}

@keyframes logoPulse {
  0%, 100% { 
    box-shadow: 0 8px 24px rgba(229, 9, 20, 0.3); 
  }
  50% { 
    box-shadow: 0 8px 24px rgba(229, 9, 20, 0.5), 0 0 30px rgba(229, 9, 20, 0.3); 
  }
}

.codigo-hogar-logo-fallback {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  background: linear-gradient(135deg, #E50914 0%, #B20710 100%);
  background: linear-gradient(135deg, var(--netflix-primary) 0%, var(--netflix-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.codigo-hogar-brand-text h1 {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #E50914 0%, #F40612 100%);
  background: linear-gradient(135deg, var(--netflix-primary) 0%, var(--netflix-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-shadow: 0 0 30px rgba(229, 9, 20, 0.3);
}

.codigo-hogar-brand-text p {
  margin: 4px 0 0 0;
  font-size: 14px;
  font-family: 'Rajdhani', sans-serif;
  color: #B3B3B3;
  color: var(--netflix-text-secondary);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════
   🎴 CARD PRINCIPAL
   ═══════════════════════════════════════════════════════════ */
.codigo-hogar-card {
  background: linear-gradient(135deg, #1F1F1F 0%, #141414 100%);
  background: linear-gradient(135deg, var(--netflix-bg-elevated) 0%, var(--netflix-bg-card) 100%);
  border: 1px solid rgba(229, 9, 20, 0.4);
  border: 1px solid var(--netflix-border-bright);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  box-shadow: var(--netflix-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  animation: cardEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s backwards;
  position: relative;
  overflow: hidden;
}

.codigo-hogar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #E50914 30%, #F40612 50%, #E50914 70%, transparent 100%);
  background: linear-gradient(90deg, transparent 0%, var(--netflix-primary) 30%, var(--netflix-primary-light) 50%, var(--netflix-primary) 70%, transparent 100%);
  animation: topBarScan 3s ease-in-out infinite;
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.codigo-hogar-card-header {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.codigo-hogar-card-header h2 {
  margin: 0 0 8px 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  color: var(--netflix-text-primary);
  letter-spacing: 0.5px;
}

.codigo-hogar-card-header p {
  margin: 0;
  font-size: 15px;
  font-family: 'Rajdhani', sans-serif;
  color: #B3B3B3;
  color: var(--netflix-text-secondary);
  letter-spacing: 0.3px;
}


.codigo-hogar-form {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.codigo-hogar-field {
  margin-bottom: 20px;
}

.codigo-hogar-label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #B3B3B3;
  color: var(--netflix-text-secondary);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.codigo-hogar-input-wrapper {
  position: relative;
}

.codigo-hogar-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  color: #808080;
  color: var(--netflix-text-muted);
  pointer-events: none;
  z-index: 2;
}

.codigo-hogar-input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  color: var(--netflix-text-primary);
  background: #141414;
  background: var(--netflix-bg-card);
  border: 2px solid rgba(229, 9, 20, 0.15);
  border: 2px solid var(--netflix-border);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}

.codigo-hogar-input::placeholder {
  color: #808080;
  color: var(--netflix-text-muted);
  font-weight: 400;
}

.codigo-hogar-input:focus {
  background: #1F1F1F;
  background: var(--netflix-bg-elevated);
  border-color: #E50914;
  border-color: var(--netflix-primary);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2),
              inset 0 2px 8px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(229, 9, 20, 0.15);
  transform: translateY(-2px);
}

.codigo-hogar-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.codigo-hogar-hint {
  margin: 8px 0 0 0;
  font-size: 0.8rem;
  color: #808080;
  color: var(--netflix-text-muted);
  font-family: 'Rajdhani', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}

.codigo-hogar-alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  animation: alertSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes alertSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.codigo-hogar-alert-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.codigo-hogar-alert svg {
  flex-shrink: 0;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.codigo-hogar-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #E50914 0%, #B20710 100%);
  background: linear-gradient(135deg, var(--netflix-primary) 0%, var(--netflix-primary-dark) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(229, 9, 20, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.codigo-hogar-btn::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: left 0.5s ease;
}

.codigo-hogar-btn:hover:not(:disabled)::before {
  left: 100%;
}

.codigo-hogar-btn:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.6), 0 0 40px rgba(229, 9, 20, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.codigo-hogar-btn:active:not(:disabled) {
  transform: translateY(-1px) scale(0.98);
}

.codigo-hogar-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.codigo-hogar-btn.loading {
  pointer-events: none;
}

.codigo-hogar-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.codigo-hogar-result {
  background: linear-gradient(135deg, #1F1F1F 0%, #141414 100%);
  background: linear-gradient(135deg, var(--netflix-bg-elevated) 0%, var(--netflix-bg-card) 100%);
  border: 1px solid rgba(229, 9, 20, 0.4);
  border: 1px solid var(--netflix-border-bright);
  border-radius: 16px;
  padding: 1.75rem;
  margin-top: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  box-shadow: var(--netflix-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: resultExpand 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.codigo-hogar-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #E50914, transparent);
  background: linear-gradient(90deg, transparent, var(--netflix-primary), transparent);
  animation: resultGlow 2s ease-in-out infinite;
}

@keyframes resultExpand {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes resultGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.codigo-hogar-result-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(229, 9, 20, 0.15);
  border-bottom: 1px solid var(--netflix-border);
}

.codigo-hogar-result-header h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  color: var(--netflix-text-primary);
  letter-spacing: 0.5px;
}

.codigo-hogar-result-header svg {
  flex-shrink: 0;
  animation: iconBounce 2s ease-in-out infinite;
}

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


.codigo-hogar-link-box {
  background: #000000;
  background: var(--netflix-bg-dark);
  border: 1px solid rgba(229, 9, 20, 0.15);
  border: 1px solid var(--netflix-border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.codigo-hogar-link-box:hover {
  border-color: rgba(229, 9, 20, 0.4);
  border-color: var(--netflix-border-bright);
  box-shadow: 0 4px 16px rgba(229, 9, 20, 0.2);
}

.codigo-hogar-link-preview {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 3px solid #E50914;
  border-left: 3px solid var(--netflix-primary);
  max-height: 100px;
  overflow: auto;
}

.codigo-hogar-link-text {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.85rem;
  color: #B3B3B3;
  color: var(--netflix-text-secondary);
  word-break: break-all;
  line-height: 1.6;
}

.codigo-hogar-link-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.codigo-hogar-link-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   🎯 BOTONES DE ACCIÓN
   ═══════════════════════════════════════════════════════════ */
.codigo-hogar-btn-open,
.codigo-hogar-btn-copy {
  flex: 1 1;
  padding: 0.875rem 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.codigo-hogar-btn-open {
  background: linear-gradient(135deg, #E50914 0%, #B20710 100%);
  background: linear-gradient(135deg, var(--netflix-primary) 0%, var(--netflix-primary-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(229, 9, 20, 0.3);
}

.codigo-hogar-btn-open:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(229, 9, 20, 0.5);
}

.codigo-hogar-btn-copy {
  background: linear-gradient(135deg, #1F1F1F 0%, #141414 100%);
  background: linear-gradient(135deg, var(--netflix-bg-elevated) 0%, var(--netflix-bg-card) 100%);
  color: #E50914;
  color: var(--netflix-primary);
  border: 2px solid rgba(229, 9, 20, 0.4);
  border: 2px solid var(--netflix-border-bright);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.codigo-hogar-btn-copy:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #141414 0%, #000000 100%);
  background: linear-gradient(135deg, var(--netflix-bg-card) 0%, var(--netflix-bg-dark) 100%);
  border-color: #E50914;
  border-color: var(--netflix-primary);
  box-shadow: 0 6px 24px rgba(229, 9, 20, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   🏷️ BADGES
   ═══════════════════════════════════════════════════════════ */
.codigo-hogar-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.codigo-hogar-status-valid {
  background: linear-gradient(135deg, rgba(70, 211, 105, 0.25) 0%, rgba(70, 211, 105, 0.1) 100%);
  border: 1px solid rgba(70, 211, 105, 0.5);
  color: #86efac;
  box-shadow: 0 0 20px rgba(70, 211, 105, 0.2);
}

.codigo-hogar-status-expiring {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(251, 191, 36, 0.1) 100%);
  border: 1px solid rgba(251, 191, 36, 0.5);
  color: #fde68a;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.codigo-hogar-status-expired {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(239, 68, 68, 0.1) 100%);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #fca5a5;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.codigo-hogar-status-unknown {
  background: linear-gradient(135deg, rgba(128, 128, 128, 0.25) 0%, rgba(128, 128, 128, 0.1) 100%);
  border: 1px solid rgba(128, 128, 128, 0.5);
  color: #9ca3af;
}

.codigo-hogar-date {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: #808080;
  color: var(--netflix-text-muted);
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   ℹ️ INFO BOX
   ═══════════════════════════════════════════════════════════ */
.codigo-hogar-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  margin-top: 1rem;
}

.codigo-hogar-info svg {
  flex-shrink: 0;
  color: #60a5fa;
}

.codigo-hogar-info p {
  margin: 0;
  font-size: 14px;
  font-family: 'Rajdhani', sans-serif;
  color: #93c5fd;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   🦶 FOOTER
   ═══════════════════════════════════════════════════════════ */
.codigo-hogar-footer {
  text-align: center;
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.codigo-hogar-footer p {
  margin: 0;
  font-size: 14px;
  font-family: 'Rajdhani', sans-serif;
  color: #808080;
  color: var(--netflix-text-muted);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════
   📱 RESPONSIVE - MOBILE OPTIMIZED
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .codigo-hogar-container {
    padding: 15px;
  }

  .codigo-hogar-content {
    max-width: 100%;
  }

  .codigo-hogar-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .codigo-hogar-brand {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 12px;
  }

  .codigo-hogar-logo {
    width: 55px;
    height: 55px;
  }

  .codigo-hogar-logo-fallback {
    width: 55px;
    height: 55px;
  }

  .codigo-hogar-brand-text h1 {
    font-size: 20px;
  }

  .codigo-hogar-brand-text p {
    font-size: 13px;
  }

  .codigo-hogar-card-header h2 {
    font-size: 22px;
  }

  .codigo-hogar-card-header p {
    font-size: 14px;
  }

  .codigo-hogar-input {
    padding: 0.875rem 1rem 0.875rem 48px;
    font-size: 16px; /* Previene zoom en iOS */
  }

  .codigo-hogar-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .codigo-hogar-link-actions {
    flex-direction: column;
  }

  .codigo-hogar-btn-open,
  .codigo-hogar-btn-copy {
    width: 100%;
  }

  .codigo-hogar-back-btn {
    font-size: 13px;
    padding: 8px 14px;
  }

  .codigo-hogar-link-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .codigo-hogar-result {
    padding: 1.25rem;
  }

  .codigo-hogar-result-header h3 {
    font-size: 1.1rem;
  }

  .codigo-hogar-link-text {
    font-size: 0.8rem;
  }

  .codigo-hogar-orb-1 {
    width: 300px;
    height: 300px;
  }

  .codigo-hogar-orb-2 {
    width: 250px;
    height: 250px;
  }

  .codigo-hogar-orb-3 {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 480px) {
  .codigo-hogar-container {
    padding: 10px;
  }

  .codigo-hogar-card {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .codigo-hogar-logo {
    width: 50px;
    height: 50px;
  }

  .codigo-hogar-logo-fallback {
    width: 50px;
    height: 50px;
  }

  .codigo-hogar-brand-text h1 {
    font-size: 18px;
  }

  .codigo-hogar-brand-text p {
    font-size: 12px;
  }

  .codigo-hogar-card-header h2 {
    font-size: 20px;
  }

  .codigo-hogar-btn {
    font-size: 0.95rem;
    padding: 0.875rem 1.25rem;
  }

  .codigo-hogar-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .codigo-hogar-date {
    font-size: 0.75rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   ✨ ANIMACIONES PERSONALIZADAS
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Scrollbar personalizado */
.codigo-hogar-link-preview::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.codigo-hogar-link-preview::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.codigo-hogar-link-preview::-webkit-scrollbar-thumb {
  background: #E50914;
  background: var(--netflix-primary);
  border-radius: 4px;
}

.codigo-hogar-link-preview::-webkit-scrollbar-thumb:hover {
  background: #F40612;
  background: var(--netflix-primary-light);
}


:root {
  --app-bg: #0a0a0a;
  --app-text: #e9ecef;
  --app-muted: #b7bcc4;
  --app-stroke: rgba(255, 255, 255, 0.12);
  --app-gold: #0fff0f;
  --app-gold-2: #f0d574;
  --app-red: #e50914;
  --app-red-2: #ff1a25;
}



.app-loading-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #e9ecef;
  color: var(--app-text);
  overflow: hidden;
  z-index: 9999;
}

.app-loading-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
  z-index: 0;
}

.app-loading-bg-gradient {
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg at 50% 50%, 
    transparent 0deg, 
    rgba(212, 175, 55, 0.08) 90deg, 
    transparent 180deg,
    rgba(229, 9, 20, 0.05) 270deg,
    transparent 360deg
  );
  animation: appLoadingRotate 30s linear infinite;
}

@keyframes appLoadingRotate {
  to { transform: rotate(360deg); }
}

.app-loading-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.app-loading-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #d4af37;
  background: #0fff0f;
  background: var(--app-gold);
  border-radius: 50%;
  opacity: 0;
  animation: appLoadingParticleFloat 5s ease-in-out infinite;
}

@keyframes appLoadingParticleFloat {
  0%, 100% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) scale(1);
  }
}

.app-loading-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.app-loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  animation: appLoadingFadeIn 0.8s ease-out;
}

@keyframes appLoadingFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.app-loading-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.app-loading-logo-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: appLoadingLogoFloat 3s ease-in-out infinite;
}

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

.app-loading-logo-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #d4af37;
  border-top-color: #0fff0f;
  border-top-color: var(--app-gold);
  border-right-color: #f0d574;
  border-right-color: var(--app-gold-2);
  animation: appLoadingLogoSpin 2s linear infinite;
}

@keyframes appLoadingLogoSpin {
  to { transform: rotate(360deg); }
}

.app-loading-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
  position: relative;
  z-index: 1;
}

.app-loading-logo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #f0d574);
  background: linear-gradient(135deg, #0fff0f, #f0d574);
  background: linear-gradient(135deg, var(--app-gold), var(--app-gold-2));
  border-radius: 50%;
  box-shadow: 
    0 0 40px rgba(212, 175, 55, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.app-loading-logo-letter {
  font-size: 3.5rem;
  font-weight: 900;
  color: #0a0a0a;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.app-loading-text {
  text-align: center;
}

.app-loading-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(135deg, #d4af37 0%, #f0d574 50%, #d4af37 100%);
  background: linear-gradient(135deg, #0fff0f 0%, #f0d574 50%, #0fff0f 100%);
  background: linear-gradient(135deg, var(--app-gold) 0%, var(--app-gold-2) 50%, var(--app-gold) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: appLoadingShimmer 3s ease-in-out infinite;
  letter-spacing: -0.02em;
}

@keyframes appLoadingShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.app-loading-subtitle {
  font-size: 1rem;
  color: #b7bcc4;
  color: var(--app-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.app-loading-progress-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  min-width: 320px;
}

.app-loading-spinner {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-loading-spinner-ring {
  position: absolute;
  border: 3px solid transparent;
  border-radius: 50%;
  animation: appLoadingSpinnerRotate 1.5s linear infinite;
}

.app-loading-spinner-ring:nth-child(1) {
  width: 80px;
  height: 80px;
  border-top-color: #d4af37;
  border-top-color: #0fff0f;
  border-top-color: var(--app-gold);
  border-right-color: #d4af37;
  border-right-color: #0fff0f;
  border-right-color: var(--app-gold);
  animation-duration: 1.5s;
}

.app-loading-spinner-ring:nth-child(2) {
  width: 60px;
  height: 60px;
  border-top-color: #f0d574;
  border-top-color: var(--app-gold-2);
  border-right-color: #f0d574;
  border-right-color: var(--app-gold-2);
  animation-duration: 1.2s;
  animation-direction: reverse;
}

.app-loading-spinner-ring:nth-child(3) {
  width: 40px;
  height: 40px;
  border-top-color: #d4af37;
  border-top-color: #0fff0f;
  border-top-color: var(--app-gold);
  border-right-color: #d4af37;
  border-right-color: #0fff0f;
  border-right-color: var(--app-gold);
  animation-duration: 0.9s;
}

@keyframes appLoadingSpinnerRotate {
  to { transform: rotate(360deg); }
}

.app-loading-message {
  font-size: 1rem;
  color: #e9ecef;
  color: var(--app-text);
  margin: 0;
  font-weight: 500;
  text-align: center;
  animation: appLoadingPulse 1.5s ease-in-out infinite;
}

@keyframes appLoadingPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.app-loading-bar-container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-loading-bar {
  flex: 1 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.app-loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #f0d574, #d4af37);
  background: linear-gradient(90deg, #0fff0f, #f0d574, #0fff0f);
  background: linear-gradient(90deg, var(--app-gold), var(--app-gold-2), var(--app-gold));
  background-size: 200% 100%;
  border-radius: 10px;
  transition: width 0.4s ease-out;
  animation: appLoadingBarShimmer 2s linear infinite;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes appLoadingBarShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.app-loading-percentage {
  font-size: 0.9rem;
  color: #d4af37;
  color: #0fff0f;
  color: var(--app-gold);
  font-weight: 700;
  min-width: 45px;
  text-align: right;
  font-family: 'Courier New', monospace;
}

.app-loading-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.app-loading-dot {
  width: 8px;
  height: 8px;
  background: #d4af37;
  background: #0fff0f;
  background: var(--app-gold);
  border-radius: 50%;
  animation: appLoadingDotBounce 1.4s ease-in-out infinite;
}

.app-loading-dot:nth-child(1) {
  animation-delay: 0s;
}

.app-loading-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.app-loading-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes appLoadingDotBounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-15px);
    opacity: 1;
  }
}

/* ============================================
   BANNED SCREEN
   ============================================ */

.app-banned-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #e9ecef;
  color: var(--app-text);
  overflow-y: auto;
  z-index: 9999;
}

.app-banned-background {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
  z-index: 0;
}

.app-banned-bg-gradient {
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg at 50% 50%, 
    transparent 0deg, 
    rgba(229, 9, 20, 0.08) 90deg, 
    transparent 180deg,
    rgba(229, 9, 20, 0.05) 270deg,
    transparent 360deg
  );
  animation: appBannedRotate 40s linear infinite;
}

@keyframes appBannedRotate {
  to { transform: rotate(360deg); }
}

.app-banned-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem 1rem;
}

.app-banned-content {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border: 1px solid var(--app-stroke);
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: appBannedSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.app-banned-header {
  text-align: center;
  margin-bottom: 3rem;
}

.app-banned-icon-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: appBannedIconPulse 2s ease-in-out infinite;
}

@keyframes appBannedIconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.app-banned-icon-ring {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 3px solid #e50914;
  border: 3px solid var(--app-red);
  opacity: 0.3;
  animation: appBannedRingPulse 2s ease-in-out infinite;
}

@keyframes appBannedRingPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

.app-banned-icon {
  font-size: 5rem;
  filter: drop-shadow(0 0 20px rgba(229, 9, 20, 0.6));
}

.app-banned-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(135deg, #e50914 0%, #ff1a25 100%);
  background: linear-gradient(135deg, var(--app-red) 0%, var(--app-red-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-banned-subtitle {
  font-size: 1.1rem;
  color: #b7bcc4;
  color: var(--app-muted);
  margin: 0;
}

.app-banned-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.app-banned-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border: 1px solid var(--app-stroke);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.app-banned-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.app-banned-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.app-banned-card-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.app-banned-card-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #e9ecef;
  color: var(--app-text);
}

.app-banned-user-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.app-banned-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  font-size: 0.95rem;
}

.app-banned-detail-label {
  color: #b7bcc4;
  color: var(--app-muted);
  font-weight: 500;
}

.app-banned-detail-value {
  color: #e9ecef;
  color: var(--app-text);
  font-weight: 600;
  text-align: right;
}

.app-banned-status {
  padding: 0.375rem 0.875rem;
  background: rgba(229, 9, 20, 0.15);
  border: 1px solid rgba(229, 9, 20, 0.4);
  border-radius: 20px;
  color: #ff1a25;
  color: var(--app-red-2);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: appBannedStatusBlink 2s ease-in-out infinite;
}

@keyframes appBannedStatusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.app-banned-reasons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.app-banned-reasons li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e9ecef;
  color: var(--app-text);
}

.app-banned-bullet {
  color: #d4af37;
  color: #0fff0f;
  color: var(--app-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.app-banned-contact-text {
  margin: 0 0 1rem 0;
  color: #b7bcc4;
  color: var(--app-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.app-banned-contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.app-banned-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.app-banned-contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.app-banned-contact-btn:hover::before {
  opacity: 1;
}

.app-banned-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.app-banned-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.app-banned-telegram {
  background: linear-gradient(135deg, #229ED9 0%, #0088cc 100%);
}

.app-banned-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 158, 217, 0.4);
}

.app-banned-actions {
  display: flex;
  justify-content: center;
  padding: 2rem 0 1.5rem;
}

.app-banned-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border: 2px solid var(--app-stroke);
  border-radius: 14px;
  color: #e9ecef;
  color: var(--app-text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.app-banned-logout-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.app-banned-logout-btn:hover {
  border-color: #d4af37;
  border-color: #0fff0f;
  border-color: var(--app-gold);
  color: #d4af37;
  color: #0fff0f;
  color: var(--app-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.app-banned-logout-btn:hover::before {
  opacity: 1;
}

.app-banned-logout-icon {
  font-size: 1.2rem;
}

.app-banned-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid var(--app-stroke);
}

.app-banned-footer-brand {
  margin: 0 0 0.5rem 0;
  color: #b7bcc4;
  color: var(--app-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.app-banned-footer-help {
  margin: 0;
  color: #b7bcc4;
  color: var(--app-muted);
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.5;
}
/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
  .app-loading-title {
    font-size: 2rem;
  }

  .app-loading-subtitle {
    font-size: 0.9rem;
  }

  .app-loading-logo-wrapper {
    width: 100px;
    height: 100px;
  }

  .app-loading-progress-section {
    min-width: 280px;
  }

  .app-banned-container {
    padding: 1rem;
    margin: 1rem auto;
  }

  .app-banned-content {
    padding: 2rem 1.5rem;
  }

  .app-banned-title {
    font-size: 2rem;
  }

  .app-banned-subtitle {
    font-size: 1rem;
  }

  .app-banned-icon-wrapper {
    width: 100px;
    height: 100px;
  }

  .app-banned-icon {
    font-size: 4rem;
  }

  .app-banned-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .app-banned-detail-value {
    text-align: left;
  }
}



@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}



.app-loading-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 20px var(--app-orange-glow));
  position: relative;
  z-index: 1;
  border: 2px solid var(--app-border-primary);
  background: var(--app-bg-secondary);
}

.app-loading-logo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--app-orange-primary), var(--app-orange-secondary));
  border-radius: 50%;
  box-shadow: 
    0 0 40px var(--app-orange-glow),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

