body {
  background: #0b1220;
  margin: 0;
  padding: 0;
  color: #e5e7eb;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

#ssr-landing .wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.cover {
  flex: 1;
}

.cover-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.info {
  flex: 1;
  padding: 0 20px;
}

.title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
  line-height: 1.1;
}


.tag {
  display: inline-block;
  background: #0f172a;
  color: #e5e7eb;
  border: 1px solid #1f2937;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 22px;
}

.desc {
  font-size: clamp(16px, 2.3vw, 20px);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 70ch;
  color: #cbd5e1;
}

/* Button Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.platform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #1f2937;
  text-decoration: none;
  background: #111827;
  transition: transform 0.08s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.platform svg {
  width: 26px;
  height: 26px;
}

.platform:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

/* Brand colors */
.apple { background: #000; }
.spotify { background: #1DB954; }
.youtube { background: #FF0000; }
.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.tiktok { background: #000; }

.footer {
  margin-top: 60px;
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
  border-top: 1px solid #1f2937;
  padding-top: 20px;
}
