html, body {
  overflow-y: auto !important;
}

/* App wrapper */
#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;           /* allow it to grow as feed expands */
  width: 100vw;
}


/* Main content area */
.platform-summary {
  flex: 1;
  padding: 2rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.platform-summary h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #ff66cc; /* subtle branding */
}

.platform-summary h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #ff99dd;
}

.platform-summary p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.platform-summary ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.platform-summary ul li {
  margin-bottom: 0.5rem;
}

/* Links */
.platform-summary a {
  color: #ff99dd;
  text-decoration: underline;
}

.platform-summary a:hover {
  color: #ff66cc;
}