:root {
    --emotiguy-cream: #fffaf0;
    --emotiguy-cream-deep: #fff2c8;
    --emotiguy-yellow: #ffc52f;
    --emotiguy-yellow-soft: #fff0a8;
    --emotiguy-ink: #222222;
    --emotiguy-muted: #676767;
    --emotiguy-line: #e8e4da;
    --emotiguy-paper: #ffffff;
    --emotiguy-page-bg: #f8f7f3;
    --emotiguy-shadow: 0 22px 70px rgba(54, 45, 24, .08);
    --emotiguy-radius-xl: 34px;
    --emotiguy-radius-lg: 26px;
    --emotiguy-radius-md: 18px;
    --emotiguy-content-width: 1500px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--emotiguy-ink);
    background: var(--emotiguy-page-bg);
    font-family: Inter, ui-rounded, "Arial Rounded MT Bold", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.55;
}

button, textarea, input, select, a {
    font: inherit;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

.emotiguy-page {
    min-height: 100vh;
}

.emotiguy-site-width {
    width: min(var(--emotiguy-content-width), calc(100% - 44px));
    margin-inline: auto;
}

.emotiguy-card {
    border: 1px solid var(--emotiguy-line);
    border-radius: var(--emotiguy-radius-lg);
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--emotiguy-shadow);
}

.emotiguy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
}

.emotiguy-button--dark {
    border: 1px solid #191919;
    color: #fff;
    background: #191919;
}

.emotiguy-button--light {
    border: 1px solid #d9d6cd;
    color: #222;
    background: #fff;
}

@media (max-width: 760px) {
    .emotiguy-site-width {
        width: min(100% - 20px, var(--emotiguy-content-width));
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
    }
}
