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

html, body {
    background-color: #0b0b12;
    color: #b8b8ca;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
    line-height: 1.8;
}

body {
    padding: 0 18px;
}

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

h1 {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(90deg, #b56cff, #ff71d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

p {
    font-size: 14px;
    margin-bottom: 16px;
    text-align: justify;
}

strong {
    color: #fff;
    font-weight: 600;
}

.highlight {
    color: #c084fc;
    font-weight: 600;
}

.back-link {
    margin-top: 24px;
    display: inline-block;
}

.back-link a {
    color: #ff71d1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.back-link a:hover {
    color: #b56cff;
    text-decoration: underline;
}