/* ========== 연애.zip Common Design System ========== */

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --bg-primary: #FFF5F7;
  --bg-secondary: #FFF0F3;
  --bg-card: #FFFFFF;
  --text-primary: #2D2D2D;
  --text-secondary: #777777;
  --text-muted: #AAAAAA;
  --accent-pink: #FF6B9D;
  --accent-pink-hover: #FF4785;
  --accent-purple: #C084FC;
  --accent-yellow: #FBBF24;
  --accent-mint: #6EE7B7;
  --accent-blue: #60A5FA;
  --border: #F0E0E5;
  --shadow-pink: 0 2px 12px rgba(255, 107, 157, 0.12);
  --shadow-card: 0 2px 16px rgba(255, 107, 157, 0.08);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Font */
  --font: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100dvh;
  position: relative;
}

/* Common button styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}
