:root {
    --bg-primary: #fff7fb;
    --bg-secondary: #ffeef6;
    --text-primary: #2d1a28;
    --text-secondary: #5c4155;
    --text-muted: #8a6a7b;
    --accent-color: #ff6fae;
    --accent-gradient: linear-gradient(120deg, #ff9bc8 0%, #ff6fae 45%, #ffc7dd 100%);
    --border-color: rgba(45, 26, 40, 0.14);
    --radius-pill: 999px;
    --radius-lg: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: 0 12px 30px rgba(255, 143, 193, 0.28);
}

.btn-outline {
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-secondary);
}

.btn:hover {
    transform: translateY(-1px);
}

.card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 16px;
}

.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 32px 0;
    color: var(--text-muted);
}
