.realname-page {
    min-height: 100vh;
    background: var(--bg-grey, #f5f6fa);
    padding-bottom: 30px;
}

.realname-page .page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary, #6C8FF2));
    color: #fff;
    padding: 30px 20px 25px;
    text-align: center;
}

.realname-page .page-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.realname-page .page-header p {
    margin: 8px 0 0;
    font-size: 13px;
    opacity: 0.85;
}

.realname-content {
    padding: 15px;
}

.step-indicator {
    display: flex;
    margin-bottom: 25px;
    background: #fff;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: #999;
    padding: 10px 0;
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: 500;
}

.step.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary, #6C8FF2));
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(75, 123, 236, 0.3);
}

.step.done {
    color: #2EC4B6;
    font-weight: 600;
}

.upload-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.upload-label {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.upload-label svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
}

.upload-area {
    width: 100%;
    height: 180px;
    border: 2px dashed #d0d5dd;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #999;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s;
    background: #fafbfc;
}

.upload-area:hover {
    border-color: var(--primary);
    background: #f0f4ff;
}

.upload-area.has-image {
    border-style: solid;
    border-color: #2EC4B6;
}

.upload-area svg {
    width: 36px;
    height: 36px;
    stroke: #bbb;
}

.upload-area span {
    font-size: 13px;
}

.upload-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-area input[type="file"] {
    display: none;
}

.btn-next {
    width: 100%;
    height: 50px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--secondary, #6C8FF2));
    color: #fff;
    box-shadow: 0 4px 12px rgba(75, 123, 236, 0.3);
    transition: all 0.2s;
}

.btn-next:active {
    transform: scale(0.97);
}

.btn-next:disabled {
    background: #d0d5dd;
    box-shadow: none;
    cursor: not-allowed;
}

.face-section {
    text-align: center;
    padding: 20px 0;
}

.face-tips {
    margin-bottom: 25px;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.face-tips h4 {
    margin: 0 0 10px;
    font-size: 15px;
    color: #333;
}

.face-tips p {
    color: #666;
    font-size: 13px;
    margin: 6px 0;
    line-height: 1.6;
}

.face-preview {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 4px solid var(--primary);
    box-shadow: 0 0 0 6px rgba(75, 123, 236, 0.15);
}

.face-preview video,
.face-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.face-section .btn-primary {
    width: 80%;
    height: 50px;
    margin: 10px auto;
    display: block;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--secondary, #6C8FF2));
    color: #fff;
    box-shadow: 0 4px 12px rgba(75, 123, 236, 0.3);
}

.result-section {
    text-align: center;
    padding: 60px 20px;
}

.result-icon {
    font-size: 72px;
    margin-bottom: 20px;
    line-height: 1;
}

.result-icon.success {
    color: #2EC4B6;
}

.result-icon.pending {
    color: #FFB800;
}

.result-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.result-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.result-section .btn-primary {
    width: 60%;
    height: 48px;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--secondary, #6C8FF2));
    color: #fff;
}
