.rocket-page {
  text-align: center;
  padding-top: 20px;
}

.rocket-page h2 {
  color: var(--gold);
  margin-bottom: 24px;
}

.rocket-builder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.rocket-preview-section {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.rocket-preview-card {
  padding: 30px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rocket-svg-container {
  width: 200px;
  height: 320px;
  margin-bottom: 20px;
  position: relative;
}

.rocket-svg-container svg {
  width: 100%;
  height: 100%;
}

.rocket-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cyan);
  margin-bottom: 16px;
}

.launch-btn {
  font-size: 1.3rem;
  padding: 16px 40px;
  font-family: var(--font-display);
  letter-spacing: 2px;
}

.rocket-options-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rocket-option-group {
  padding: 20px;
  text-align: left;
}

.rocket-option-group h3 {
  font-size: 1rem;
  color: var(--cyan);
  margin-bottom: 12px;
}

.rocket-option-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rocket-option-item {
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-med);
  cursor: pointer;
  min-height: var(--touch-min);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rocket-option-item:hover {
  border-color: var(--cyan);
}

.rocket-option-item.selected {
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.15);
  color: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.rocket-launch-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-deep);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.rocket-launch-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.launch-countdown {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--cyan);
  text-shadow: 0 0 40px var(--cyan-glow);
}

.launch-rocket-anim {
  font-size: 6rem;
  position: absolute;
  bottom: 10%;
}

.launch-destination {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.launch-destination .dest-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 12px;
}

.launch-close-btn {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .rocket-builder {
    grid-template-columns: 1fr;
  }

  .rocket-preview-section {
    position: static;
  }

  .rocket-preview-card {
    min-height: 300px;
  }

  .rocket-svg-container {
    height: 240px;
  }
}
