/* ==========================================================================
   90sKids Viral Waitlist Landing Design System
   Award-Winning Dribbble / Behance Retro Aesthetic
   ========================================================================== */

:root {
  --bg-space: #070913;
  --bg-card: rgba(18, 22, 40, 0.75);
  --border-neon-cyan: #00F0FF;
  --border-neon-pink: #FF007F;
  --arcade-gold: #FFE600;
  --aim-yellow: #FFCC00;
  --crt-blue: #0066FF;
  --text-white: #FFFFFF;
  --text-dim: #94A3B8;
  --font-pixel: 'Press Start 2P', cursive;
  --font-vt: 'VT323', monospace;
  --font-sans: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-space);
  color: var(--text-white);
  font-family: var(--font-sans);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* CRT Scanlines Overlay */
.crt-overlay::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  z-index: 999;
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
}

/* Retro Grid Animation Background */
.retro-grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(to right, rgba(0, 240, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 0, 127, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

/* Thank You Confirmation Pop-Up Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-window {
  width: 100%;
  max-width: 480px;
  background: #121628;
  border: 2px solid var(--border-neon-cyan);
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
  overflow: hidden;
  animation: modalPopIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.modal-body {
  padding: 24px;
  text-align: center;
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 8px;
}

.modal-title {
  color: var(--arcade-gold);
  font-family: var(--font-vt);
  font-size: 2rem;
  margin: 0 0 6px 0;
}

.modal-subtitle {
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.modal-ticket-box {
  background: rgba(255, 230, 0, 0.1);
  border: 1px dashed var(--arcade-gold);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.modal-badge {
  display: inline-block;
  background: var(--arcade-gold);
  color: #000;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 10px;
}

.modal-ticket-id {
  color: var(--neon-pink);
  font-family: var(--font-vt);
  font-size: 2.2rem;
  margin: 6px 0;
}

.modal-email-note {
  color: #94A3B8;
  font-size: 0.85rem;
  margin: 0;
}

.modal-roadmap {
  background: rgba(0, 240, 255, 0.08);
  border-left: 3px solid var(--neon-cyan);
  padding: 14px;
  border-radius: 6px;
  text-align: left;
  margin-bottom: 24px;
}

.modal-roadmap h4 {
  color: var(--neon-cyan);
  margin: 0 0 8px 0;
  font-size: 0.85rem;
}

.modal-roadmap ul {
  margin: 0;
  padding-left: 16px;
  color: #CBD5E1;
  font-size: 0.85rem;
  line-height: 1.5;
}

.btn-modal-continue {
  width: 100%;
  padding: 14px 0;
  font-size: 1.05rem;
}

/* Sound FAB Toggle */
.pixel-art-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  shape-rendering: crispEdges;
}

.pixel-art-icon-lg {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  shape-rendering: crispEdges;
}

.pixel-art-icon-sm {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  shape-rendering: crispEdges;
}

.pixel-art-icon-xs {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  shape-rendering: crispEdges;
}

.sound-fab {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
  background: rgba(18, 22, 40, 0.85);
  border: 1px solid var(--border-neon-cyan);
  color: var(--border-neon-cyan);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-vt);
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sound-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

/* Layout Container */
.app-container {
  position: relative;
  z-index: 10;
  max-width: 620px;
  margin: 0 auto;
  padding: 32px 20px 64px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Hero Header */
.next-steps-card {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.12), rgba(255, 0, 127, 0.12));
  border: 1px solid var(--border-neon-cyan);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.next-steps-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  padding-bottom: 10px;
}

.next-steps-header h3 {
  color: var(--arcade-gold);
  font-family: var(--font-vt);
  font-size: 1.25rem;
  margin: 0;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.step-num {
  background: var(--neon-cyan);
  color: #000;
  font-weight: 900;
  font-size: 0.9rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--neon-cyan);
}

.step-text {
  color: var(--text-white);
  font-size: 0.9rem;
  line-height: 1.4;
}

.step-text strong {
  color: var(--arcade-gold);
}

.hero-header {
  text-align: center;
  margin-top: 16px;
  padding: 0 8px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--border-neon-cyan);
  color: var(--border-neon-cyan);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 12px;
  font-family: var(--font-vt);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--border-neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--border-neon-cyan);
  animation: blink 1.2s infinite alternate;
}

@keyframes blink {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

.glitch-title {
  font-family: var(--font-pixel);
  font-size: clamp(2rem, 8vw, 3.2rem);
  color: var(--arcade-gold);
  text-shadow: 
    3px 3px 0px var(--border-neon-pink),
    -2px -2px 0px var(--border-neon-cyan);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.referred-banner {
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.2), rgba(0, 240, 255, 0.2));
  border: 1px dashed var(--border-neon-pink);
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--arcade-gold);
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
}

.referred-banner p {
  font-size: 0.8rem;
  color: var(--text-white);
  font-weight: normal;
  margin-top: 4px;
}

.btn-new-signup {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-dim);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s ease;
}

.btn-new-signup:hover {
  background: rgba(255, 0, 127, 0.3);
  color: #FFF;
  border-color: var(--border-neon-pink);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
}

.hero-tagline {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* Retro OS Window Frame */
.window-frame {
  background: var(--bg-card);
  border: 2px solid var(--border-neon-cyan);
  border-radius: 12px;
  box-shadow: 
    0 0 25px rgba(0, 240, 255, 0.25),
    inset 0 0 15px rgba(0, 240, 255, 0.05);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.window-titlebar {
  background: linear-gradient(90deg, #0044CC, #001155);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 240, 255, 0.3);
}

.titlebar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-vt);
  font-size: 16px;
  color: var(--text-white);
}

.titlebar-controls {
  display: flex;
  gap: 6px;
}

.win-btn {
  width: 20px;
  height: 20px;
  border: 1px solid #7799FF;
  background: #002288;
  color: var(--text-white);
  font-size: 11px;
  font-weight: bold;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.window-body {
  padding: 20px 16px;
}

/* Step Cards */
.hidden {
  display: none !important;
}

.step-card.hidden {
  display: none !important;
}

/* AIM Header */
.mission-hero-card {
  max-width: 600px;
  margin: 16px auto 24px auto;
  background: rgba(18, 22, 40, 0.85);
  border: 1px solid var(--border-neon-cyan);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
  backdrop-filter: blur(10px);
}

.mission-badge {
  display: inline-block;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--border-neon-cyan);
  color: var(--arcade-gold);
  font-family: var(--font-vt);
  font-weight: bold;
  font-size: 1.1rem;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(255, 230, 0, 0.5);
}

.mission-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-white);
  margin: 0;
}

.mission-desc strong {
  color: var(--arcade-gold);
}

.aim-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}

.aim-logo h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--aim-yellow);
}

.yellow-man {
  font-size: 24px;
}

.aim-header p {
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* Forms */
#signOnForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--border-neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input {
  width: 100%;
  background: rgba(8, 11, 22, 0.9);
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: var(--text-white);
  padding: 12px;
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  border-color: var(--border-neon-pink);
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
}

.input-prefix-wrapper {
  display: flex;
  align-items: center;
  background: rgba(8, 11, 22, 0.9);
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: 6px;
  padding: 0 10px;
}

.input-prefix-wrapper input {
  border: none;
  padding: 12px 6px;
}

.prefix, .suffix {
  color: var(--border-neon-pink);
  font-family: var(--font-vt);
  font-size: 18px;
}

/* Buttons */
.live-preview-box {
  margin-top: 24px;
  border-top: 1px dashed rgba(0, 240, 255, 0.4);
  padding-top: 20px;
  text-align: center;
}

.preview-tag {
  font-family: var(--font-vt);
  font-size: 15px;
  font-weight: bold;
  color: var(--arcade-gold);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.preview-subtext {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 10px;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--border-neon-pink), #B00055);
  border: 1px solid var(--border-neon-pink);
  color: var(--text-white);
  font-family: var(--font-pixel);
  font-size: 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.5);
  transition: all 0.2s ease;
  margin-top: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.8);
}

.btn-secondary {
  background: var(--border-neon-cyan);
  border: none;
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.micro-text {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
}

/* Ticket Header */
.ticket-header {
  background: linear-gradient(135deg, rgba(255, 230, 0, 0.1), rgba(255, 0, 127, 0.1));
  border: 1px dashed var(--arcade-gold);
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.holographic-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(110deg, #FFE600 20%, #FFF 40%, #00F0FF 60%, #FF007F 80%);
  background-size: 200% 100%;
  animation: holoShine 3s infinite linear;
  padding: 6px 16px;
  border-radius: 16px;
  color: #000;
  font-family: var(--font-vt);
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 10px;
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.5);
}

@keyframes holoShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.input-prefix-wrapper:focus-within {
  border-color: var(--border-neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
}

.ticket-number-display h2 {
  font-family: var(--font-pixel);
  font-size: 1.5rem;
  color: var(--arcade-gold);
  letter-spacing: 2px;
}

.ticket-number-display .label {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* Queue Status Box */
.queue-status-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.rank-label {
  font-size: 0.75rem;
  color: var(--border-neon-cyan);
  letter-spacing: 1px;
}

.rank-number-wrapper {
  font-family: var(--font-pixel);
  font-size: 2.2rem;
  color: var(--text-white);
  margin: 6px 0;
}

.rank-number-wrapper .hash {
  color: var(--border-neon-pink);
}

.rewind-badge {
  display: inline-block;
  background: var(--border-neon-pink);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  animation: pulse 1s infinite alternate;
}

.rewind-info {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.rewind-info h3 {
  color: var(--border-neon-cyan);
  margin-bottom: 4px;
}

/* Referral Box */
.referral-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.referral-box label {
  font-size: 0.75rem;
  color: var(--arcade-gold);
  font-weight: 700;
}

.copy-input-group {
  display: flex;
  gap: 8px;
}

.copy-input-group input {
  flex: 1;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-dim);
  padding: 10px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.social-share-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}

.btn-social {
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  color: #FFF;
}

.btn-social.wa { background: #25D366; }
.btn-social.tw { background: #1DA1F2; }
.btn-social.sim {
  grid-column: span 2;
  background: linear-gradient(90deg, #7928CA, #FF0080);
}

/* Canvas Story Generator */
.story-generator-card {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.gen-title h3 {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.gen-title p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.canvas-preview-container {
  width: 100%;
  max-width: 240px;
  height: 426px;
  margin: 0 auto 16px auto;
  border: 2px solid var(--border-neon-cyan);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

#storyCanvas {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0A0E17;
}

/* Hype Milestones */
.milestones-section {
  text-align: center;
  margin-top: 16px;
}

.section-title {
  font-family: var(--font-pixel);
  font-size: 1.05rem;
  color: var(--arcade-gold);
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.milestones-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.milestone-card {
  background: rgba(18, 22, 40, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  border-radius: 8px;
  text-align: left;
  position: relative;
}

.milestone-card.completed {
  border-color: #00FF66;
}
.milestone-card.completed .m-status { color: #00FF66; }

.milestone-card.active {
  border-color: var(--border-neon-cyan);
}
.milestone-card.active .m-status { color: var(--border-neon-cyan); }

.m-status {
  font-family: var(--font-vt);
  font-size: 14px;
  font-weight: bold;
}

.m-target {
  font-size: 0.75rem;
  color: var(--text-dim);
  float: right;
}

.milestone-card h4 {
  font-size: 0.95rem;
  margin: 4px 0;
  color: var(--text-white);
}

.milestone-card p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--border-neon-pink), var(--border-neon-cyan));
}

.m-percent {
  font-size: 0.7rem;
  color: var(--text-dim);
  float: right;
  margin-top: 4px;
}

/* Footer */
.app-footer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 12px;
}

.footer-links {
  margin-top: 6px;
}

.footer-links a {
  color: var(--border-neon-cyan);
  text-decoration: none;
}

/* --- VIRAL GROWTH TACTICS: 24H RUSH BANNER & EGO SHARING --- */
.rush-banner-box {
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.2), rgba(255, 230, 0, 0.15));
  border: 2px solid #FF007F;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 24px;
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.35);
  animation: rushPulse 2s infinite alternate;
}

@keyframes rushPulse {
  0% { box-shadow: 0 0 15px rgba(255, 0, 127, 0.3); border-color: #FF007F; }
  100% { box-shadow: 0 0 30px rgba(255, 230, 0, 0.6); border-color: #FFE600; }
}

.rush-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.rush-pulse-dot {
  width: 10px;
  height: 10px;
  background: #FF007F;
  border-radius: 50%;
  box-shadow: 0 0 8px #FF007F;
  display: inline-block;
  animation: blinkFast 0.8s infinite;
}

@keyframes blinkFast {
  0%, 100% { opacity: 1; transform: scale(1.2); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

.rush-title {
  color: #FFE600;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.rush-desc {
  color: #FFFFFF;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.countdown-clock {
  font-family: 'VT323', monospace;
  font-size: 1.4rem;
  font-weight: bold;
  color: #00F0FF;
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 10px;
  border-radius: 6px;
  border: 1px solid #00F0FF;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.ego-share-prompt {
  background: rgba(0, 240, 255, 0.1);
  border-left: 4px solid #00F0FF;
  padding: 12px 16px;
  margin: 16px 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: #CBD5E1;
  text-align: left;
  line-height: 1.4;
}

.ego-share-prompt strong {
  color: #FFE600;
}

/* --- HARMONIZED HYBRID: COMIC BURST APP PREVIEW STYLES --- */
.app-preview-section {
  margin: 36px 0;
}

.comic-preview-card {
  background: #FAF3DE; /* App Cream Paper Token */
  border: 3px solid #17150F; /* App Ink Border Token */
  box-shadow: 6px 6px 0px #17150F; /* App Hard Offset Shadow */
  border-radius: 16px;
  padding: 28px 24px;
  color: #17150F;
  text-align: center;
}

.comic-header {
  margin-bottom: 24px;
}

.comic-eyebrow {
  display: inline-block;
  background: #FFC72C; /* Arcade Yellow */
  color: #17150F;
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 2px solid #17150F;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.comic-title {
  font-family: 'Anton', 'Press Start 2P', sans-serif;
  font-size: 2rem;
  color: #D03A2B; /* Poster Red */
  text-transform: uppercase;
  margin: 8px 0;
  letter-spacing: 1px;
}

.comic-subtitle {
  font-size: 0.95rem;
  color: #4A4535;
  margin: 0 auto;
  max-width: 520px;
}

.comic-vault-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.comic-tile {
  background: #FFFFFF;
  border: 2px solid #17150F;
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  box-shadow: 3px 3px 0px #17150F;
  transition: transform 0.15s ease;
}

.comic-tile:hover {
  transform: translateY(-2px);
}

.tile-tag {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  color: #FFF;
  margin-bottom: 8px;
  border: 1px solid #17150F;
}

.tile-movies .tile-tag { background: #D03A2B; }
.tile-cartoons .tile-tag { background: #7A4FA6; }
.tile-games .tile-tag { background: #2F5FC4; }
.tile-school .tile-tag { background: #57A345; }

.comic-tile h4 {
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  margin: 4px 0;
  color: #17150F;
  letter-spacing: 0.5px;
}

.comic-tile p {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
  line-height: 1.35;
}

.comic-founder-unlock {
  background: rgba(47, 95, 196, 0.1);
  border: 2px dashed #2F5FC4;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #17150F;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.comic-founder-unlock em {
  color: #D03A2B;
  font-style: normal;
  font-weight: bold;
}


