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

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

html, body {
    background-color: #060507;
    min-height: 100%;
    font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
    color: #fbf39c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    padding-bottom: 80px;
}

.guide-page {
    width: 100%;
    min-height: 100vh;
}

.guide-banner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    line-height: 0;
}

.guide-banner img {
    width: 100%;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.guide-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 40px 0;
}

.guide-title {
    font-size: 36px;
    font-weight: 700;
    color: #fbf39c;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}
.guide-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #fbf39c;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(251, 243, 156, 0.3);
    padding-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fbf39c, transparent);
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: #fbf39c;
    margin: 36px 0 20px;
    padding-left: 20px;
    line-height: 1.4;
    position: relative;
}

.step-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0.85em;
    background: #fbf39c;
    border-radius: 2px;
}

.step-title:first-of-type {
    margin-top: 0;
}

.sub-step {
    margin-bottom: 24px;
}

.sub-step-num {
    font-size: 17px;
    font-weight: 600;
    color: #fbf39c;
    display: inline;
    margin-right: 6px;
}

.step-content p {
    font-size: 16px;
    line-height: 2;
    color: #fbf39c;
    margin-bottom: 8px;
}

.step-content p .highlight {
    color: #fff7b8;
    font-weight: 600;
}

.step-content a {
    color: #fff7b8;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-all;
}

.step-content a:hover {
    color: #ffffff;
}

.step-img {
    margin: 24px 0;
    text-align: center;
}

.step-img img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(251, 243, 156, 0.15);
    display: block;
}

.sub-step-img {
    margin: 20px 0 8px;
}

.step-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 243, 156, 0.3), transparent);
    margin: 40px 0;
}

.final-note {
    text-align: center;
    font-size: 18px;
    color: #fbf39c;
    font-weight: 600;
    margin-top: 40px;
    padding: 24px;
    background: rgba(251, 243, 156, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(251, 243, 156, 0.2);
}
