/* Clean Modern Gradient Theme for theonliv.com */

:root {
  --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #311042 70%, #0f172a 100%);
  --accent-gradient: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #3b82f6 100%);
  --badge-bg: rgba(168, 85, 247, 0.15);
  --badge-border: rgba(236, 72, 153, 0.3);
  --badge-text: #f472b6;
  --text-main: #ffffff;
  --text-sub: #94a3b8;
}

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

html, body {
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans KR", sans-serif;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  overflow-x: hidden;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: justify-between;
  align-items: center;
  padding: 2rem 1.5rem;
}

.content {
  margin: auto 0;
  max-width: 600px;
  text-align: center;
}

/* Badge */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: 50px;
  color: var(--badge-text);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: var(--badge-text);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--badge-text);
}

/* Main Title */
.title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}

/* Subtitle */
.subtitle {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  color: var(--text-sub);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Footer */
.footer {
  color: #64748b;
  font-size: 0.875rem;
  text-align: center;
  padding-top: 2rem;
}
