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

:root {
    --bg-1: #edc8d5;
    --bg-2: #f4dbe4;
    --glass-light: rgba(255, 255, 255, 0.46);
    --glass-mid: rgba(255, 255, 255, 0.24);
    --glass-border: rgba(255, 255, 255, 0.62);
    --accent-pink: #edc8d5;
    --accent-rose: #f1adc8;
    --accent-mauve: #dba2b9;
    --text-primary: #5e2d45;
    --text-secondary: rgba(122, 61, 89, 0.82);
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(60% 70% at 15% 15%, rgba(237, 200, 213, 0.58) 0%, rgba(237, 200, 213, 0) 70%),
        radial-gradient(65% 65% at 85% 30%, rgba(241, 173, 200, 0.5) 0%, rgba(241, 173, 200, 0) 75%),
        linear-gradient(140deg, var(--bg-1) 0%, var(--bg-2) 55%, var(--accent-mauve) 100%);
    font-family: -apple-system, "Noto Sans", "Helvetica Neue", Helvetica, "Nimbus Sans L", Arial, "Liberation Sans", "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", "Source Han Sans SC", "Source Han Sans CN", "Microsoft YaHei", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, "WenQuanYi Zen Hei Sharp", sans-serif;
}

a {
    color: #9a5d7d;
    text-decoration: underline;
    text-decoration-color: rgba(154, 93, 125, 0.35);
    text-underline-offset: 2px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:visited {
    color: #8a5572;
    text-decoration-color: rgba(138, 85, 114, 0.34);
}

a:hover,
a:focus-visible {
    color: #7a3d59;
    text-decoration-color: rgba(122, 61, 89, 0.62);
}

.glass-panel {
    background: linear-gradient(140deg, var(--glass-light) 0%, var(--glass-mid) 100%);
    border: 1px solid var(--glass-border);
    box-shadow:
        0 24px 50px rgba(143, 92, 115, 0.28),
        inset 1px 1px 0 rgba(255, 255, 255, 0.4),
        inset -1px -1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 0.8px solid rgba(255, 255, 255, 0.66);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 100%);
    color: #7a3d59;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 7px 16px rgba(146, 94, 117, 0.26),
        inset 1px 1px 0 rgba(255, 255, 255, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
    transform: translateY(-1px);
    box-shadow:
        0 10px 18px rgba(146, 94, 117, 0.3),
        inset 1px 1px 0 rgba(255, 255, 255, 0.55);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.24) 100%);
}

.cta-button:visited {
    color: #7a3d59;
}

.cta-button:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

.cta-button:disabled:hover,
.cta-button:disabled:focus-visible {
    transform: none;
    box-shadow:
        0 7px 16px rgba(146, 94, 117, 0.26),
        inset 1px 1px 0 rgba(255, 255, 255, 0.45);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.cta-button.secondary {
    font-weight: 400;
    color: rgba(122, 61, 89, 0.92);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.16) 100%);
}

.site-footer {
    margin-top: 1.4rem;
    color: rgba(122, 61, 89, 0.86);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    line-height: 1.35;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
}

.site-footer hr {
    border: none;
    border-top: 1px solid rgba(154, 93, 125, 0.2);
    margin: 0 0 0.75rem;
}

.site-footer p {
    margin: 0;
    line-height: inherit;
}

.site-footer a,
.site-footer a:visited {
    color: inherit;
}
