/* ===== Variables con colores del logo ZYNIC ===== */
:root {
  --primary: #22E6FF;
  --secondary: #7C3BFF;
  --accent: #22E6FF;
  --accent2: #7C3BFF;
  --success: #10b981;
  --dark-bg: #0B1020;
  --bg-deep: #050A15;
  --card-bg: #111A2E;
  --text: #EAF2FF;
  --text-light: #9AA8C7;
  --border: #22304A;
  --radius: 12px;
}

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

body {
  font-family: 'Segoe UI', Inter, system-ui, -apple-system, Arial, sans-serif;
  background: radial-gradient(circle at top left, var(--dark-bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== NAVBAR ===== */
nav{
  width:100%;
  background: rgba(17,26,46,0.95);
  padding:14px 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  animation: slideDown 0.6s ease-out;
}

nav a{
  color:var(--text);
  text-decoration:none;
  font-size:0.98rem;
  font-weight:600;
  padding:8px 14px;
  border-radius:8px;
  transition: all 0.3s ease;
  position: relative;
}

nav a::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

nav a:hover,
nav a.active{
  color:var(--accent);
  background: rgba(34,230,255,0.08);
}

nav a:hover::before,
nav a.active::before{
  transform: scaleX(1);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ===== PLAN HEADER ===== */
.plan-header {
  text-align: center;
  padding: 40px 20px;
  animation: fadeInDown 0.8s ease-out;
}

.plan-icon-big {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(34,230,255,0.3));
}

.page-title {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 15px rgba(34,230,255,0.3));
}

.plan-selected {
  font-size: 1.2rem;
  color: var(--text-light);
}

.plan-selected span {
  color: var(--accent);
  font-weight: 700;
}

/* ===== STEPS SECTION ===== */
.steps-container {
  margin-top: 50px;
}

.section-title {
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.05rem;
  animation: fadeIn 1.2s ease-out;
}

/* ===== STEP CARDS ===== */
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: all 0.4s ease;
  animation: slideUp 0.8s ease-out backwards;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(34,230,255,0.2);
  border-color: var(--accent);
}

.step-card:hover::before {
  transform: scaleY(1);
}

.step-card[data-step="1"] { animation-delay: 0.2s; }
.step-card[data-step="2"] { animation-delay: 0.4s; }
.step-card[data-step="3"] { animation-delay: 0.6s; }

.step-number {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 6px 20px rgba(34,230,255,0.4);
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-title i {
  margin-right: 10px;
}

.step-description {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.step-description strong {
  color: var(--accent);
}

/* ===== BOTONES ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(34,230,255,0.3);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34,230,255,0.5);
}

.btn i {
  margin-right: 8px;
}

.btn-discord {
  background: linear-gradient(135deg, #5865F2, #7289DA);
  box-shadow: 0 6px 20px rgba(88,101,242,0.3);
}

.btn-discord:hover {
  box-shadow: 0 8px 25px rgba(88,101,242,0.5);
}

.btn-copy {
  width: 100%;
  margin-top: 15px;
}

/* ===== INFO BOX ===== */
.info-box {
  background: rgba(34,230,255,0.05);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 18px;
  margin-top: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-box i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.info-box strong {
  color: var(--accent);
  display: block;
  margin-bottom: 5px;
}

.info-box p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== MESSAGE TEMPLATE ===== */
.message-template {
  background: rgba(5,10,21,0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.template-header {
  background: linear-gradient(90deg, rgba(34,230,255,0.15), rgba(124,59,255,0.15));
  padding: 12px 20px;
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}

.template-header i {
  margin-right: 8px;
}

.template-body {
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  line-height: 1.8;
}

.template-body p {
  margin: 8px 0;
  color: var(--text-light);
}

.template-body strong {
  color: var(--text);
}

.template-body span {
  color: var(--accent);
  font-weight: 700;
}

/* ===== SUCCESS BOX ===== */
.success-box {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.3);
  border-left: 4px solid var(--success);
  border-radius: 8px;
  padding: 18px;
  margin-top: 25px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.success-box i {
  font-size: 1.5rem;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

.success-box strong {
  color: var(--success);
  display: block;
  margin-bottom: 5px;
}

.success-box p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== HELP SECTION ===== */
.help-section {
  background: rgba(34,230,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  margin-top: 50px;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
}

.help-section h3 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.help-section p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.help-section p strong {
  color: var(--accent);
}

.btn-help {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #5865F2, #7289DA);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(88,101,242,0.3);
}

.btn-help:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88,101,242,0.5);
}

.btn-help i {
  margin-right: 8px;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  color: var(--text-light);
  padding: 40px 20px;
  border-top: 1px solid var(--border);
  margin-top: 60px;
  animation: fadeIn 1.8s ease-out;
}

footer strong {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ANIMACIONES ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .plan-icon-big {
    font-size: 4rem;
  }

  .step-card {
    flex-direction: column;
    padding: 25px 20px;
  }

  .step-number {
    margin: 0 auto 20px;
  }

  nav{ 
    gap:14px; 
    padding:12px; 
    flex-wrap: wrap; 
  }

  nav a{ 
    font-size: 0.9rem; 
    padding: 6px 10px; 
  }
}

@media (max-width: 480px) {
  .container {
    padding: 30px 15px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}