:root {
  --bg-color: #0a2136;
  --accent: #0eb3c7;
  --accent-soft: rgba(14, 179, 199, 0.15);
  --text-color: #ffffff;
  --bubble-bg: #0f2c46;
  --bubble-border: rgba(255, 255, 255, 0.08);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #123a5f 0, #0a2136 45%, #050e18 100%);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.page {
  width: 100%;
  max-width: 900px;
  background: rgba(5, 15, 30, 0.85);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  padding: 28px 28px 32px;
  backdrop-filter: blur(16px);
}

/* Header */
.header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.header-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffffff, #0eb3c7);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(14, 179, 199, 0.4);
  position: relative;
  overflow: hidden;
}

.header-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom, rgba(0, 0, 0, 0.45), transparent 55%);
  mix-blend-mode: multiply;
}

.header-icon span {
  position: relative;
  font-size: 22px;
}

.header-text h1 {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  display: flex;
  align-items: baseline;
  gap: 0.35em;
}

.header-text h1 .accent {
  color: var(--accent);
}

.header-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Launch list */
.launch-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.launch-row {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.2fr);
  gap: 18px;
}

@media (max-width: 700px) {
  .launch-row {
    grid-template-columns: 1fr;
  }
}

.bubble {
  position: relative;
  background: radial-gradient(circle at top left, #143556, #0f253c);
  border-radius: 999px;
  border: 1px solid var(--bubble-border);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--accent-soft), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.bubble-content {
  position: relative;
  z-index: 1;
}

.bubble-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.bubble-title {
  font-size: 1rem;
  font-weight: 600;
}

.bubble-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.bubble-tag {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(4, 15, 28, 0.7);
}

.bubble-launch {
  justify-content: space-between;
}

/* Launch button */
.launch-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #0eb3c7, #12d7ed);
  color: #041017;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow:
    0 12px 30px rgba(14, 179, 199, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.35);
  transition:
    transform 0.13s ease-out,
    box-shadow 0.13s ease-out,
    background 0.13s ease-out,
    translate 0.13s ease-out;
  cursor: pointer;
  white-space: nowrap;
}

.launch-button .icon {
  font-size: 1rem;
  transition: translate 0.13s ease-out;
}

.launch-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(14, 179, 199, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

.launch-button:hover .icon {
  translate: 2px -1px;
}

.launch-button:active {
  transform: translateY(1px);
}

/* Footer */
.footer-note {
  margin-top: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
}