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

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

body { animation: fadeInUp 0.6s ease-out; }

.container { max-width: 900px; margin: 0 auto; padding: 80px 24px; }

.plan-header { text-align: center; margin-bottom: 60px; animation: fadeInUp 0.8s ease-out 0.2s backwards; }
.plan-icon-big { font-size: 5rem; margin-bottom: 20px; animation: float 3s ease-in-out infinite; }
.page-title { font-size: 3rem; font-weight: 900; background: linear-gradient(90deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 12px; }
.plan-selected { font-size: 1.3rem; color: var(--muted); }
.plan-selected span { color: var(--accent); font-weight: 700; }

.steps-container { margin-bottom: 60px; }
.section-title { font-size: 2rem; font-weight: 800; color: var(--text); text-align: center; margin-bottom: 12px; animation: fadeInUp 0.8s ease-out 0.3s backwards; }
.section-title i { color: var(--accent); margin-right: 10px; }
.section-subtitle { text-align: center; color: var(--muted); font-size: 1.1rem; margin-bottom: 50px; animation: fadeInUp 0.8s ease-out 0.4s backwards; }

.step-card { background: linear-gradient(180deg, rgba(34,230,255,0.04), transparent), var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; margin-bottom: 30px; display: flex; gap: 30px; transition: all 0.4s ease; position: relative; overflow: hidden; }
.step-card[data-step="1"] { animation: fadeInUp 0.8s ease-out 0.5s backwards; }
.step-card[data-step="2"] { animation: fadeInUp 0.8s ease-out 0.6s backwards; }
.step-card[data-step="3"] { animation: fadeInUp 0.8s ease-out 0.7s backwards; }

.step-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(34,230,255,0.08), transparent 70%); opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.step-card:hover::before { opacity: 1; }
.step-card:hover { transform: translateY(-8px); border-color: rgba(34,230,255,0.4); box-shadow: 0 15px 35px rgba(34,230,255,0.2); }

.step-number { flex-shrink: 0; width: 60px; height: 60px; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 900; color: #fff; box-shadow: 0 8px 20px rgba(34,230,255,0.3); }
.step-content { flex: 1; }
.step-title { font-size: 1.5rem; color: var(--text); margin-bottom: 12px; font-weight: 700; }
.step-title i { color: var(--accent); margin-right: 10px; }
.step-description { color: var(--muted); line-height: 1.6; margin-bottom: 20px; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 10px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-discord { background: linear-gradient(90deg, #5865F2, #4752C4); color: #fff; box-shadow: 0 6px 20px rgba(88,101,242,0.3); }
.btn-discord:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(88,101,242,0.5); }
.btn-copy { background: linear-gradient(90deg, var(--accent), var(--accent2)); color: #fff; box-shadow: 0 6px 20px rgba(34,230,255,0.3); width: 100%; }
.btn-copy:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(34,230,255,0.5); }

.info-box, .success-box { display: flex; gap: 15px; padding: 20px; border-radius: 10px; margin-top: 20px; }
.info-box { background: rgba(34,230,255,0.08); border: 1px solid rgba(34,230,255,0.2); }
.info-box i { font-size: 1.5rem; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.success-box { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); }
.success-box i { font-size: 1.5rem; color: #10b981; flex-shrink: 0; margin-top: 2px; }
.info-box strong, .success-box strong { color: var(--text); display: block; margin-bottom: 5px; }
.info-box p, .success-box p { color: var(--muted); margin: 0; line-height: 1.5; }

.message-template { background: var(--bg-deep); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin: 20px 0; position: relative; z-index: 1; }
.template-header { background: linear-gradient(90deg, rgba(34,230,255,0.1), rgba(124,59,255,0.1)); padding: 15px 20px; display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--accent); border-bottom: 1px solid var(--border); position: relative; z-index: 1; }
.template-body { padding: 20px; font-family: 'Courier New', monospace; color: var(--text); line-height: 1.8; position: relative; z-index: 1; }
.template-body p { margin: 8px 0; }
.template-body strong { color: var(--accent); }

.help-section { text-align: center; background: linear-gradient(180deg, rgba(34,230,255,0.04), transparent), var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; animation: fadeInUp 0.8s ease-out 0.8s backwards; }
.help-section h3 { font-size: 1.5rem; color: var(--text); margin-bottom: 15px; }
.help-section h3 i { color: var(--accent); margin-right: 10px; }
.help-section p { color: var(--muted); margin-bottom: 25px; line-height: 1.6; }
.btn-help { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(90deg, #5865F2, #4752C4); color: #fff; padding: 14px 28px; border-radius: 10px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(88,101,242,0.3); }
.btn-help:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(88,101,242,0.5); }

.btn, .btn-help, .btn-copy, .btn-discord, a.btn {
  pointer-events: auto !important;
  cursor: pointer;
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .container { padding: 60px 20px; }
  .page-title { font-size: 2.2rem; }
  .plan-selected { font-size: 1.1rem; }
  .step-card { flex-direction: column; padding: 30px 20px; }
  .step-number { width: 50px; height: 50px; font-size: 1.5rem; margin: 0 auto; }
  .step-content { text-align: center; }
  .section-title { font-size: 1.6rem; }
}
