@charset "utf-8";
:root {
    --font-color-0: #0070f3;
    --font-color-1: #111827;
    --font-color-2: #374151;
    --font-color-3: #6b7280;
    --bg-color-1: #f9fafb;
    --line-1: #e5e7eb;
    --radius: 12px;
    --shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

body {
    font-family: "Montserrat", "SF UI Text", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    min-height: 100vh;
    background: #fcfcfc url("/img/background/Konachan.com - 401166 animal_ears apple blush cake cherry chibi cy6n food fruit gray_eyes gray_hair hat loli navel nopan original short_hair skirt thighhighs upskirt.png") center center / cover no-repeat fixed;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: -1;
    pointer-events: none;
}

.container {
    background: #fff;
    border-radius: var(--radius);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.icon {
    width: 52px;
    height: 52px;
    border: 2px solid var(--font-color-0);
    border-radius: var(--radius);
    margin: 0 auto 24px;
    position: relative;
}

.icon::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 2px;
    background: var(--font-color-0);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.desc {
    font-size: 18px;
    color: var(--font-color-2);
    font-weight: 500;
}

.go-home {
    display: inline-block;
    margin-top: 28px;
    padding: 10px 20px;
    color: var(--font-color-0);
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--font-color-0);
    transition: all 0.2s ease;
}

.go-home:hover {
    background: var(--font-color-0);
    color: #fff;
}
