/* Import Cosmic Polish Pack */
@import url("cosmic-polish-pack.css");

/* GalaxyWarden Auth Styles */

.login-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --light-intensity: 0;
  
  background: linear-gradient(160deg, rgba(12, 18, 28, 0.98) 0%, rgba(8, 12, 22, 0.99) 100%);
  border: 1px solid rgba(168,213,229,0.15);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  clip-path: polygon(
    16px 0, calc(100% - 16px) 0,
    100% 16px, 100% calc(100% - 16px),
    calc(100% - 16px) 100%, 16px 100%,
    0 calc(100% - 16px), 0 16px
  );
  box-shadow:
    0 0 0 1px rgba(168, 213, 229, 0.12),
    0 8px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(168, 213, 229, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.login-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 400px at var(--mouse-x) var(--mouse-y),
    rgba(168, 213, 229, calc(0.08 * var(--light-intensity))) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

.login-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(178deg, rgba(168, 213, 229, 0.06) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.login-card > * {
  position: relative;
  z-index: 2;
}

.login-card:hover {
  box-shadow:
    0 0 0 1px rgba(168, 213, 229, 0.25),
    0 0 50px rgba(91, 164, 181, 0.1),
    0 15px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(168, 213, 229, 0.15);
}

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

.login-header h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.login-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.login-form input {
  width: 100%;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(100,116,139,0.3);
  background: rgba(15,23,42,0.8);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.login-form input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(168,213,229,0.1);
}

.login-form input::placeholder {
  color: var(--text-muted);
}

.login-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--accent-cyan), #0891b2);
  color: #0a0e17;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168,213,229,0.3);
}

.login-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(100,116,139,0.3);
}

.login-divider span {
  padding: 0 1rem;
}

.login-links {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(100,116,139,0.2);
}

.login-links a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.2s;
}

.login-links a:hover {
  color: var(--accent-purple);
}

.login-links p {
  color: var(--text-secondary);
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.register-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}

.register-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --light-intensity: 0;

  background: linear-gradient(160deg, rgba(12, 18, 28, 0.98) 0%, rgba(8, 12, 22, 0.99) 100%);
  border: 1px solid rgba(168, 213, 229, 0.15);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  clip-path: polygon(
    16px 0, calc(100% - 16px) 0,
    100% 16px, 100% calc(100% - 16px),
    calc(100% - 16px) 100%, 16px 100%,
    0 calc(100% - 16px), 0 16px
  );
  box-shadow:
    0 0 0 1px rgba(168, 213, 229, 0.12),
    0 8px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(168, 213, 229, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.register-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 400px at var(--mouse-x) var(--mouse-y),
    rgba(168, 213, 229, calc(0.08 * var(--light-intensity))) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

.register-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  pointer-events: none;
  z-index: 3;
}

.register-card > * {
  position: relative;
  z-index: 2;
}

.register-card:hover {
  box-shadow:
    0 0 0 1px rgba(168, 213, 229, 0.25),
    0 0 50px rgba(91, 164, 181, 0.1),
    0 15px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(168, 213, 229, 0.15);
}

.register-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.register-header h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.register-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.benefits-grid {
  background: linear-gradient(135deg, rgba(168, 213, 229, 0.06), rgba(139, 92, 246, 0.04));
  border: 1px solid rgba(168, 213, 229, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.benefits-grid h4 {
  color: var(--accent-cyan);
  margin: 0 0 0.75rem 0;
  font-size: 0.95rem;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  font-size: 0.9rem;
}

.benefits-list div {
  color: var(--text-secondary);
}

.register-form input[type="email"],
.register-form input[type="password"],
.register-form input[type="text"] {
  width: 100%;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(100,116,139,0.3);
  background: rgba(15,23,42,0.8);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.register-form input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(168,213,229,0.1);
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(30,41,59,0.5);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.consent-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent-cyan);
  flex-shrink: 0;
}

.consent-checkbox label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  line-height: 1.5;
}

.consent-checkbox a {
  color: var(--accent-cyan);
}

.register-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16,185,129,0.3);
}

.register-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.register-divider::before,
.register-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(100,116,139,0.3);
}

.register-divider span {
  padding: 0 1rem;
}

.privacy-footer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

.privacy-footer a {
  color: var(--accent-cyan);
}

.register-links {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(100,116,139,0.2);
}

.register-links a {
  color: var(--accent-cyan);
  text-decoration: none;
}

/* Form field wrapper */
.form-field {
  margin-bottom: 1rem;
}

.form-field input {
  margin-bottom: 0;
}

/* Field-level error messages */
.field-error {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.4rem;
  padding: 0.4rem 0.6rem;
  background: rgba(239, 68, 68, 0.1);
  border-left: 3px solid #ef4444;
  border-radius: 0 6px 6px 0;
}

.field-error span {
  display: block;
}

/* Form-level alert messages */
.form-alert {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

.form-alert.success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}

/* Highlight input fields with errors */
.form-field:has(.field-error) input {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.reset-container {
  max-width: 450px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reset-card {
  background: linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(30,41,59,0.9) 100%);
  border: 2px solid rgba(168,213,229,0.2);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.reset-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
}

.reset-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.reset-header h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

.reset-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.reset-form input {
  width: 100%;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(100,116,139,0.3);
  background: rgba(15,23,42,0.8);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.reset-form input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(168,213,229,0.1);
}

.reset-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--accent-cyan), #0891b2);
  color: #0a0e17;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reset-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168,213,229,0.3);
}

.reset-links {
  text-align: center;
  margin-top: 1.5rem;
}

.reset-links a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.reset-container {
  max-width: 450px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reset-card {
  background: linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(30,41,59,0.9) 100%);
  border: 2px solid rgba(16,185,129,0.3);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.reset-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, var(--accent-cyan));
}

.reset-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.reset-header h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.5rem;
  color: #10b981;
  margin-bottom: 0.5rem;
}

.reset-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.reset-form input {
  width: 100%;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(100,116,139,0.3);
  background: rgba(15,23,42,0.8);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.reset-form input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}

.reset-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reset-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16,185,129,0.3);
}

.reset-links {
  text-align: center;
  margin-top: 1.5rem;
}

.reset-links a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.data-notice {
  background: rgba(96,165,250,0.08);
  border: 1px solid rgba(96,165,250,0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.data-notice .notice-icon { font-size: 1rem; }
.data-notice a { color: var(--accent-cyan); }

/* Enhanced Progress Tracker */
.progress-tracker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 2rem;
  max-width: 600px;
  position: relative;
}

.progress-tracker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(100, 116, 139, 0.3);
  transform: translateY(-50%);
  z-index: 1;
}

.progress-tracker-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--success));
  transform: translateY(-50%);
  z-index: 2;
  transition: width 0.5s ease;
}

.progress-step {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid rgba(100, 116, 139, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.step-circle.active {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-cyan-glow);
  animation: stepPulse 2s ease-in-out infinite;
}

.step-circle.completed {
  background: var(--success);
  border-color: var(--success);
  color: white;
}

@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 15px var(--accent-cyan-glow); }
  50% { box-shadow: 0 0 25px rgba(168, 213, 229, 0.4); }
}

.step-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.step-label.active { color: var(--accent-cyan); }
.step-label.completed { color: var(--success); }

/* Form Enhancements */
.onboard-form {
  animation: fadeInUp 0.4s ease-out;
}

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

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

.form-header h2 {
  font-family: 'Exo 2', sans-serif;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-secondary);
}

/* Real-time Validation */
.input-wrapper {
  position: relative;
}

.validation-indicator {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.validation-indicator.valid {
  opacity: 1;
  color: var(--success);
}

.validation-indicator.invalid {
  opacity: 1;
  color: var(--danger);
}

input:valid ~ .validation-indicator.valid { opacity: 1; }

/* Enhanced Button Actions */
.button-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(100, 116, 139, 0.2);
}

.btn-back {
  background: rgba(100, 116, 139, 0.3);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-back:hover {
  background: rgba(100, 116, 139, 0.4);
  color: var(--text-primary);
}

.btn-skip {
  background: transparent;
  border: 1px solid rgba(100, 116, 139, 0.3);
  color: var(--text-muted);
}

.btn-skip:hover {
  background: rgba(100, 116, 139, 0.1);
  border-color: var(--text-muted);
}

/* Step Completion Reward */
.step-reward {
  display: none;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(168, 213, 229, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
  text-align: center;
  animation: rewardPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step-reward.visible { display: block; }

@keyframes rewardPop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 600px) {
  .progress-tracker {
    gap: 0.5rem;
  }
  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .step-label {
    font-size: 0.6rem;
  }
  .button-actions {
    flex-direction: column;
  }
  .button-actions .btn {
    width: 100%;
  }
}

/* Mobile Registration Responsive */
@media (max-width: 600px) {
  .register-container {
    padding: 1rem 0.5rem;
  }
  .register-card {
    padding: 1.25rem 1rem;
    border-radius: 14px;
    clip-path: none;
  }
  .register-header h1 {
    font-size: 1.3rem;
  }
  .register-form input[type="email"],
  .register-form input[type="password"],
  .register-form input[type="text"] {
    padding: 0.85rem 1rem;
    font-size: 16px; /* prevents iOS zoom on focus */
  }
  .register-btn {
    padding: 0.85rem;
    font-size: 1rem;
  }
  .consent-checkbox {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  .consent-checkbox label {
    font-size: 0.8rem;
  }
  .benefits-grid {
    padding: 0.75rem 1rem;
  }
  .benefits-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
  }
}

/* Consolidated Onboard Styles */
.quick-onboard {
  max-width: 800px;
  margin: 0 auto;
}

.quick-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(100, 116, 139, 0.2);
}

.quick-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(100, 116, 139, 0.2);
  color: #64748b;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.quick-step.active .quick-step-num {
  background: linear-gradient(135deg, var(--accent-cyan), #7FC8DC);
  color: #0a0e17;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(168, 213, 229, 0.4);
  animation: stepGlow 2s infinite;
}

.quick-step.completed .quick-step-num {
  background: var(--success);
  color: white;
  border-color: var(--success);
}

@keyframes stepGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(168, 213, 229, 0.4); }
  50% { box-shadow: 0 0 30px rgba(168, 213, 229, 0.6); }
}

.quick-step-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.quick-step.active .quick-step-label { color: var(--accent-cyan); }
.quick-step.completed .quick-step-label { color: var(--success); }

.quick-connector {
  width: 60px;
  height: 3px;
  background: rgba(100, 116, 139, 0.3);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.quick-connector.filled {
  background: linear-gradient(90deg, var(--success), var(--accent-cyan));
}

/* Dynamic Games Panel */
.games-panel {
  display: none;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(100, 116, 139, 0.2);
  animation: panelSlide 0.3s ease-out;
}

.games-panel.active { display: block; }

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

/* Review Summary */
.review-section {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 10px;
  border-left: 4px solid var(--accent-cyan);
}

.review-section h4 {
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-tag {
  background: rgba(168, 213, 229, 0.1);
  color: var(--accent-cyan);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Reward Preview */
.reward-preview {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin: 2rem 0;
  animation: rewardShine 3s infinite;
}

@keyframes rewardShine {
  0%, 100% { box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
  50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.2); }
}

.reward-preview h4 {
  color: #10b981;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.reward-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.reward-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.reward-icon { font-size: 2rem; }
.reward-label { font-size: 0.8rem; color: #94a3b8; }

/* Button Actions */
.quick-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.quick-actions .btn-back {
  background: transparent;
  border: 1px solid #475569;
  color: #94a3b8;
}

.quick-actions .btn-back:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

/* Selection grid enhancements */
.selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
}

@media (max-width: 600px) {
  .quick-progress {
    flex-direction: column;
  }
  .quick-connector {
    width: 3px;
    height: 30px;
  }
  .quick-actions {
    flex-direction: column;
  }
  .selection-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}