:root {
  --purple: #9c27b0;
  --purple-dark: #7b1fa2;
  --cream: #fff7ea;
  --brown: #7a3e00;
  --text: #2f2f2f;
  --muted: #5c3d1e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(160deg, #f3e5f5 0%, #fff8ee 45%, #fce4ec 100%);
  line-height: 1.65;
}

a {
  color: var(--purple-dark);
  font-weight: 600;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: linear-gradient(90deg, var(--purple-dark), var(--purple));
  color: #fff;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(123, 31, 162, 0.25);
}

.site-header img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.site-header h1 {
  margin: 0 0 6px;
  font-size: 28px;
}

.site-header p {
  margin: 0;
  opacity: 0.95;
  font-size: 15px;
}

.header-tagline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 8px;
}

.header-tagline-left {
  /* खाली — logo center align balance के लिए */
}

.header-tagline-text {
  margin: 0;
  opacity: 0.95;
  font-size: 15px;
  text-align: center;
  line-height: 1.4;
  border: none;
  outline: none;
}

.header-tagline-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border: none;
  outline: none;
}

.header-google-login-btn {
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  opacity: 0.95;
  border: 1px solid #001f3f;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  flex: 0 0 auto;
}

.header-google-login-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.header-google-login-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.card {
  background: var(--cream);
  border: 1px solid #d4a574;
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.card h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: 20px;
}

.card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.card p:last-child {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.feature {
  background: #fff;
  border: 1px solid #ead7bc;
  border-radius: 12px;
  padding: 16px;
}

.feature h3 {
  margin: 0 0 8px;
  color: var(--brown);
  font-size: 16px;
}

.feature p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.chip {
  display: inline-block;
  background: #f3e5f5;
  color: var(--purple-dark);
  border: 1px solid #ce93d8;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}

.song-box {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  border: 1px dashed #d4a574;
  font-size: 14px;
  color: var(--muted);
}

.site-footer {
  text-align: center;
  padding: 20px 16px 32px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer .brand {
  font-size: 18px;
  color: var(--purple-dark);
  font-weight: 700;
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .site-header h1 {
    font-size: 24px;
  }

  .header-tagline-text {
    font-size: 12px;
  }

  .header-google-login-btn {
    font-size: 12px;
    padding: 5px 8px;
  }
}
