/* 基础重置，消除默认边距 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 页面背景 */
body {
    background-color: #e0e5ec; /* 淡灰色背景，衬托卡片 */
    min-height: 100vh; /* 至少占满屏幕高度 */
    display: flex; /* 弹性布局 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    font-family: "Microsoft YaHei", sans-serif; /* 中文字体 */
}

/* 卡片样式 */
.card {
    background-color: #ffffff;
    width: 90%;
    max-width: 420px; /* 卡片最大宽度 */
    padding: 35px 30px;
    border-radius: 16px; /* 圆角 */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); /* 阴影，立体感 */
    text-align: center;
}

/* 标题样式 */
.main-title {
    color: #000000; /* 纯黑色 */
    font-size: 2.8em; /* 字号很大 */
    font-weight: 900; /* 极度加粗 */
    margin-bottom: 25px;
}

/* 图片样式 */
.main-image {
    width: 100%; /* 图片撑满卡片宽度 */
    height: auto; /* 高度自适应 */
    border-radius: 8px; /* 图片圆角 */
    margin-bottom: 30px;
}

/* 按钮样式 */
.start-button {
    background-color: #3498db; /* 蓝色背景 */
    color: white;
    border: none;
    padding: 15px 80px; /* 按钮大小 */
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 30px; /* 胶囊形 */
    cursor: pointer; /* 鼠标变手型 */
    transition: all 0.3s ease; /* 动画过渡 */
}

/* 按钮悬停效果 */
.start-button:hover {
    background-color: #2980b9; /* 变深 */
    transform: scale(1.05); /* 轻微放大 */
}
/* ===== 注册导航页专用样式 ===== */

.nav-page {
    background-color: #e0e5ec;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.nav-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 14px 60px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: #34495e;
    transform: scale(1.05);
}