.snp-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.snp-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 450px;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.snp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f5f5f5;
}

.snp-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.snp-header-icon {
    color: #ff5a5f;
    font-size: 20px;
}

.snp-header-title {
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.snp-badge {
    background: #ede9fe;
    color: #7c3aed;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.snp-badge-icon {
    background: #7c3aed;
    color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.snp-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 600px) {
    .snp-body {
        grid-template-columns: 1fr;
    }
}

.snp-item {
    background: #f3f4f6;
    border-radius: 40px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.snp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.snp-content {
    font-size: 14px;
    color: #555;
    flex-grow: 1;
}

.snp-username {
    font-weight: 700;
    color: #333;
}

.snp-time {
    font-size: 12px;
    color: #999;
    margin-left: 8px;
}

.snp-footer {
    padding: 10px 20px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.snp-progress {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    width: 60px;
}